Skip to content

Commit

Permalink
fix: update vulkan build args and use manylinux2_28 for vulkan
Browse files Browse the repository at this point in the history
  • Loading branch information
zwpaper committed Nov 24, 2024
1 parent 7fbb37f commit 066570a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- x86_64-manylinux2014
- x86_64-manylinux2014-cuda117
- x86_64-manylinux2014-cuda122
- x86_64-manylinux2014-vulkan
- x86_64-manylinux_2_28-vulkan
- x86_64-windows-msvc
- x86_64-windows-msvc-vulkan
# - x86_64-windows-msvc-cuda117
Expand All @@ -61,8 +61,8 @@ jobs:
build_args: --features binary,cuda
- os: buildjet-2vcpu-ubuntu-2204
target: x86_64-unknown-linux-gnu
binary: x86_64-manylinux2014-vulkan
container: quay.io/pypa/manylinux2014_x86_64
binary: x86_64-manylinux_2_28-vulkan
container: quay.io/pypa/manylinux_2_28_x86_64
build_args: --features binary,vulkan
vulkan_sdk: '1.3.239.0'
- os: windows-latest
Expand Down
2 changes: 1 addition & 1 deletion crates/llama-cpp-server/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ fn main() {
config.define("AMDGPU_TARGETS", amd_gpu_targets.join(";"));
}
if cfg!(feature = "vulkan") {
config.define("LLAMA_VULKAN", "ON");
config.define("GGML_VULKAN", "ON");
}

let out = config.build();
Expand Down

0 comments on commit 066570a

Please sign in to comment.