Skip to content

Commit a9a6809

Browse files
committed
try to disable sve
1 parent 51d0b49 commit a9a6809

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1348,7 +1348,7 @@ jobs:
13481348
- name: Test
13491349
id: ggml-ci
13501350
run: |
1351-
LLAMA_ARG_THREADS=$(nproc) GG_BUILD_NO_BF16=1 GG_BUILD_EXTRA_TESTS_0=1 bash ./ci/run.sh ./tmp/results ./tmp/mnt
1351+
LLAMA_ARG_THREADS=$(nproc) GG_BUILD_NO_SVE=1 GG_BUILD_NO_BF16=1 GG_BUILD_EXTRA_TESTS_0=1 bash ./ci/run.sh ./tmp/results ./tmp/mnt
13521352
13531353
ggml-ci-x64-nvidia-v100-cuda:
13541354
runs-on: [self-hosted, Linux, X64, NVIDIA, V100]

ci/run.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,10 @@ if [ ! -z ${GG_BUILD_MUSA} ]; then
103103
MUSA_ARCH=${MUSA_ARCH:-21}
104104
CMAKE_EXTRA="${CMAKE_EXTRA} -DGGML_MUSA=ON -DMUSA_ARCHITECTURES=${MUSA_ARCH}"
105105
fi
106+
107+
if [ ! -z ${GG_BUILD_NO_SVE} ]; then
108+
CMAKE_EXTRA="${CMAKE_EXTRA} -DGGML_NATIVE=OFF -DGGML_CPU_ARM_ARCH=armv8.5-a+fp16+i8mm"
109+
fi
106110
## helpers
107111

108112
# download a file if it does not exist or if it is outdated

0 commit comments

Comments
 (0)