@@ -1276,17 +1276,29 @@ jobs:
1276
1276
LLAMA_ARG_THREADS=$(nproc) GG_BUILD_LOW_PERF=1 bash ./ci/run.sh ./tmp/results ./tmp/mnt
1277
1277
1278
1278
ggml-ci-arm64-cpu-low-perf :
1279
- runs-on : [self-hosted, Linux, ARM64, CPU, low-perf]
1279
+ runs-on : ubuntu-22.04-arm
1280
1280
1281
1281
steps :
1282
1282
- name : Clone
1283
1283
id : checkout
1284
1284
uses : actions/checkout@v4
1285
1285
1286
+ - name : ccache
1287
+
1288
+ with :
1289
+ key : ggml-ci-arm64-cpu-low-perf
1290
+ evict-old-files : 1d
1291
+
1292
+ - name : Dependencies
1293
+ id : depends
1294
+ run : |
1295
+ sudo apt-get update
1296
+ sudo apt-get install build-essential libcurl4-openssl-dev
1297
+
1286
1298
- name : Test
1287
1299
id : ggml-ci
1288
1300
run : |
1289
- bash ./ci/run.sh ~/results/llama.cpp /mnt/llama.cpp
1301
+ LLAMA_ARG_THREADS=$(nproc) GG_BUILD_LOW_PERF=1 bash ./ci/run.sh ./tmp/results ./tmp/mnt
1290
1302
1291
1303
ggml-ci-x64-cpu-high-perf :
1292
1304
runs-on : ubuntu-22.04
@@ -1314,17 +1326,29 @@ jobs:
1314
1326
LLAMA_ARG_THREADS=$(nproc) bash ./ci/run.sh ./tmp/results ./tmp/mnt
1315
1327
1316
1328
ggml-ci-arm64-cpu-high-perf :
1317
- runs-on : [self-hosted, Linux, ARM64, CPU, high-perf]
1329
+ runs-on : ubuntu-22.04-arm
1318
1330
1319
1331
steps :
1320
1332
- name : Clone
1321
1333
id : checkout
1322
1334
uses : actions/checkout@v4
1323
1335
1336
+ - name : ccache
1337
+
1338
+ with :
1339
+ key : ggml-ci-arm64-cpu-high-perf
1340
+ evict-old-files : 1d
1341
+
1342
+ - name : Dependencies
1343
+ id : depends
1344
+ run : |
1345
+ sudo apt-get update
1346
+ sudo apt-get install build-essential libcurl4-openssl-dev
1347
+
1324
1348
- name : Test
1325
1349
id : ggml-ci
1326
1350
run : |
1327
- GG_BUILD_NO_BF16=1 GG_BUILD_EXTRA_TESTS_0=1 bash ./ci/run.sh ~/results/llama.cpp /mnt/llama.cpp
1351
+ LLAMA_ARG_THREADS=$(nproc) GG_BUILD_NO_BF16=1 GG_BUILD_EXTRA_TESTS_0=1 bash ./ci/run.sh ./tmp/results ./tmp/mnt
1328
1352
1329
1353
ggml-ci-x64-nvidia-v100-cuda :
1330
1354
runs-on : [self-hosted, Linux, X64, NVIDIA, V100]
0 commit comments