ci: run the x64 and arm ci on the github machines instead (#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
This commit is contained in:
Eve
2025-09-25 05:06:06 +00:00
committed by GitHub
parent 5fb557653b
commit bee378e098
3 changed files with 98 additions and 29 deletions

View File

@@ -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;
}