File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -131,8 +131,9 @@ jobs:
131
131
include :
132
132
- build : ' x64'
133
133
os : ubuntu-22.04
134
- - build : ' arm64'
135
- os : ubuntu-22.04-arm
134
+ # GGML_BACKEND_DL and GGML_CPU_ALL_VARIANTS are not currently supported on arm
135
+ # - build: 'arm64'
136
+ # os: ubuntu-22.04-arm
136
137
137
138
runs-on : ${{ matrix.os }}
138
139
@@ -159,6 +160,9 @@ jobs:
159
160
id : cmake_build
160
161
run : |
161
162
cmake -B build \
163
+ -DGGML_BACKEND_DL=ON \
164
+ -DGGML_NATIVE=OFF \
165
+ -DGGML_CPU_ALL_VARIANTS=ON \
162
166
-DLLAMA_FATAL_WARNINGS=ON \
163
167
${{ env.CMAKE_ARGS }}
164
168
cmake --build build --config Release -j $(nproc)
@@ -207,6 +211,9 @@ jobs:
207
211
id : cmake_build
208
212
run : |
209
213
cmake -B build \
214
+ -DGGML_BACKEND_DL=ON \
215
+ -DGGML_NATIVE=OFF \
216
+ -DGGML_CPU_ALL_VARIANTS=ON \
210
217
-DGGML_VULKAN=ON \
211
218
${{ env.CMAKE_ARGS }}
212
219
cmake --build build --config Release -j $(nproc)
Original file line number Diff line number Diff line change @@ -8132,8 +8132,8 @@ static void ggml_compute_forward_rwkv_wkv6_f32(
8132
8132
#define WKV_VECTOR_SIZE 4
8133
8133
#endif
8134
8134
8135
- int wkv_vector_size;
8136
8135
#ifdef WKV_VECTOR_SIZE
8136
+ int wkv_vector_size;
8137
8137
#if defined(__ARM_FEATURE_SVE)
8138
8138
wkv_vector_size = svcntw ();
8139
8139
#else
@@ -8348,8 +8348,8 @@ static void ggml_compute_forward_gla_f32(
8348
8348
#define GLA_VECTOR_SIZE 4
8349
8349
#endif
8350
8350
8351
- int gla_vector_size;
8352
8351
#ifdef GLA_VECTOR_SIZE
8352
+ int gla_vector_size;
8353
8353
#if defined(__ARM_FEATURE_SVE)
8354
8354
gla_vector_size = svcntw ();
8355
8355
#else
You can’t perform that action at this time.
0 commit comments