From: Eve Date: Thu, 25 Sep 2025 05:06:06 +0000 (+0000) Subject: ci: run the x64 and arm ci on the github machines instead (llama/16183) X-Git-Tag: v0.9.3~9 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=a549c86de4f4d52d1a42b255685f1c6dc3281e4b;p=pkg%2Fggml%2Fsources%2Fggml ci: run the x64 and arm ci on the github machines instead (llama/16183) * run the x64 ci on regular machines * set up the same thing for arm fix test-quantize-perf just like #12306 * try to disable sve * add another sve run --- diff --git a/tests/test-quantize-perf.cpp b/tests/test-quantize-perf.cpp index 28828849..cac0782d 100644 --- a/tests/test-quantize-perf.cpp +++ b/tests/test-quantize-perf.cpp @@ -260,14 +260,7 @@ int main(int argc, char * argv[]) { int64_t iterations = params.iterations; - - // Initialize GGML, ensures float conversion tables are initialized - struct ggml_init_params ggml_params = { - /* .mem_size = */ 1*1024, - /* .mem_buffer = */ NULL, - /* .no_alloc = */ true, - }; - struct ggml_context * ctx = ggml_init(ggml_params); + ggml_cpu_init(); for (int i = 0; i < GGML_TYPE_COUNT; i++) { ggml_type type = (ggml_type) i; @@ -359,7 +352,5 @@ int main(int argc, char * argv[]) { } } - ggml_free(ctx); - return 0; }