Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ Access this library via Maven (released versions on Maven Central):
<dependency>
<groupId>net.ladenthin</groupId>
<artifactId>llama</artifactId>
<version>5.0.4</version>
<version>5.0.5</version>
</dependency>
```

Expand Down Expand Up @@ -204,134 +204,134 @@ exclusive — and optionally a CPU Windows build.
<dependency>
<groupId>net.ladenthin</groupId>
<artifactId>llama</artifactId>
<version>5.0.4</version>
<version>5.0.5</version>
</dependency>

<!-- CUDA on Linux x86-64 (requires CUDA 13 runtime on the host) -->
<dependency>
<groupId>net.ladenthin</groupId>
<artifactId>llama</artifactId>
<version>5.0.4</version>
<version>5.0.5</version>
<classifier>cuda13-linux-x86-64</classifier>
</dependency>

<!-- OpenCL/Adreno on Android (requires device-provided OpenCL ICD) -->
<dependency>
<groupId>net.ladenthin</groupId>
<artifactId>llama</artifactId>
<version>5.0.4</version>
<version>5.0.5</version>
<classifier>opencl-android-aarch64</classifier>
</dependency>

<!-- CUDA on Windows x86-64 (requires CUDA 13 Toolkit on the host) -->
<dependency>
<groupId>net.ladenthin</groupId>
<artifactId>llama</artifactId>
<version>5.0.4</version>
<version>5.0.5</version>
<classifier>cuda13-windows-x86-64</classifier>
</dependency>

<!-- Vulkan on Windows x86-64 (NVIDIA/AMD/Intel; vulkan-1.dll from the driver) -->
<dependency>
<groupId>net.ladenthin</groupId>
<artifactId>llama</artifactId>
<version>5.0.4</version>
<version>5.0.5</version>
<classifier>vulkan-windows-x86-64</classifier>
</dependency>

<!-- Vulkan on Linux x86-64 (NVIDIA/AMD/Intel; libvulkan.so.1 from the driver) -->
<dependency>
<groupId>net.ladenthin</groupId>
<artifactId>llama</artifactId>
<version>5.0.4</version>
<version>5.0.5</version>
<classifier>vulkan-linux-x86-64</classifier>
</dependency>

<!-- Vulkan on Linux aarch64 (libvulkan.so.1 from the device/driver) -->
<dependency>
<groupId>net.ladenthin</groupId>
<artifactId>llama</artifactId>
<version>5.0.4</version>
<version>5.0.5</version>
<classifier>vulkan-linux-aarch64</classifier>
</dependency>

<!-- OpenCL on Windows x86-64 (requires a driver-provided OpenCL ICD) -->
<dependency>
<groupId>net.ladenthin</groupId>
<artifactId>llama</artifactId>
<version>5.0.4</version>
<version>5.0.5</version>
<classifier>opencl-windows-x86-64</classifier>
</dependency>

<!-- Windows CPU natives built with the MSVC / Visual Studio generator -->
<dependency>
<groupId>net.ladenthin</groupId>
<artifactId>llama</artifactId>
<version>5.0.4</version>
<version>5.0.5</version>
<classifier>msvc-windows</classifier>
</dependency>

<!-- ROCm/HIP on Linux x86-64 (requires an AMD ROCm runtime on the host) -->
<dependency>
<groupId>net.ladenthin</groupId>
<artifactId>llama</artifactId>
<version>5.0.4</version>
<version>5.0.5</version>
<classifier>rocm-linux-x86-64</classifier>
</dependency>

<!-- ROCm/HIP on Windows x86-64 (requires the AMD HIP SDK runtime on the host) -->
<dependency>
<groupId>net.ladenthin</groupId>
<artifactId>llama</artifactId>
<version>5.0.4</version>
<version>5.0.5</version>
<classifier>rocm-windows-x86-64</classifier>
</dependency>

<!-- SYCL (Intel oneAPI, fp16) on Linux x86-64 (requires the oneAPI/Level-Zero runtime) -->
<dependency>
<groupId>net.ladenthin</groupId>
<artifactId>llama</artifactId>
<version>5.0.4</version>
<version>5.0.5</version>
<classifier>sycl-fp16-linux-x86-64</classifier>
</dependency>

<!-- SYCL (Intel oneAPI, fp32) on Linux x86-64 (requires the oneAPI/Level-Zero runtime) -->
<dependency>
<groupId>net.ladenthin</groupId>
<artifactId>llama</artifactId>
<version>5.0.4</version>
<version>5.0.5</version>
<classifier>sycl-fp32-linux-x86-64</classifier>
</dependency>

<!-- SYCL (Intel oneAPI) on Windows x86-64 (requires the oneAPI/Level-Zero runtime) -->
<dependency>
<groupId>net.ladenthin</groupId>
<artifactId>llama</artifactId>
<version>5.0.4</version>
<version>5.0.5</version>
<classifier>sycl-windows-x86-64</classifier>
</dependency>

<!-- OpenCL/Adreno on Windows-on-ARM aarch64 (Snapdragon X; device-provided OpenCL ICD) -->
<dependency>
<groupId>net.ladenthin</groupId>
<artifactId>llama</artifactId>
<version>5.0.4</version>
<version>5.0.5</version>
<classifier>opencl-windows-aarch64</classifier>
</dependency>

<!-- OpenVINO on Linux x86-64 (requires the Intel OpenVINO runtime on the host) -->
<dependency>
<groupId>net.ladenthin</groupId>
<artifactId>llama</artifactId>
<version>5.0.4</version>
<version>5.0.5</version>
<classifier>openvino-linux-x86-64</classifier>
</dependency>

<!-- OpenVINO on Windows x86-64 (requires the Intel OpenVINO runtime on the host) -->
<dependency>
<groupId>net.ladenthin</groupId>
<artifactId>llama</artifactId>
<version>5.0.4</version>
<version>5.0.5</version>
<classifier>openvino-windows-x86-64</classifier>
</dependency>
```
Expand Down Expand Up @@ -864,7 +864,7 @@ forcing that floor on every core consumer. It ships and versions in lockstep wit
<dependency>
<groupId>net.ladenthin</groupId>
<artifactId>llama-langchain4j</artifactId>
<version>5.0.4</version>
<version>5.0.5</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion llama-langchain4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ SPDX-License-Identifier: MIT
<parent>
<groupId>net.ladenthin</groupId>
<artifactId>llama-parent</artifactId>
<version>5.0.5-SNAPSHOT</version>
<version>5.0.5</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions llama/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ SPDX-License-Identifier: MIT
<parent>
<groupId>net.ladenthin</groupId>
<artifactId>llama-parent</artifactId>
<version>5.0.5-SNAPSHOT</version>
<version>5.0.5</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down Expand Up @@ -88,7 +88,7 @@ SPDX-License-Identifier: MIT
<spotless.version>3.8.0</spotless.version>
<palantir-java-format.version>2.94.0</palantir-java-format.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.outputTimestamp>${git.commit.time}</project.build.outputTimestamp>
<project.build.outputTimestamp>2026-07-04T19:41:11Z</project.build.outputTimestamp>
</properties>

<!--
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ SPDX-License-Identifier: MIT
-->
<groupId>net.ladenthin</groupId>
<artifactId>llama-parent</artifactId>
<version>5.0.5-SNAPSHOT</version>
<version>5.0.5</version>
<packaging>pom</packaging>

<name>${project.groupId}:${project.artifactId}</name>
Expand Down
Loading