@@ -451,7 +451,7 @@ static void ggml_metal_log(enum ggml_log_level level, const char * format, ...){
451
451
}
452
452
453
453
/*
454
- GGML_METAL_LOG_INFO("%s: loaded %-32s %16p | th_max = %4d | th_width = %4d\n", __func__, "kernel_"#name, (void *) kernel->pipeline, \
454
+ GGML_METAL_LOG_INFO("%s: loaded %-40s %16p | th_max = %4d | th_width = %4d\n", __func__, "kernel_"#name, (void *) kernel->pipeline, \
455
455
(int) kernel->pipeline.maxTotalThreadsPerThreadgroup, \
456
456
(int) kernel->pipeline.threadExecutionWidth); \
457
457
*/
@@ -461,7 +461,7 @@ static void ggml_metal_log(enum ggml_log_level level, const char * format, ...){
461
461
id <MTLFunction > metal_function = [metal_library newFunctionWithName: @" kernel_" #name]; \
462
462
kernel->pipeline = [ctx->device newComputePipelineStateWithFunction: metal_function error: &error]; \
463
463
[metal_function release ]; \
464
- GGML_METAL_LOG_INFO (" %s : loaded %-32s %16p | th_max = %4d | th_width = %4d \n " , __func__, " kernel_" #name, (void *) kernel->pipeline , \
464
+ GGML_METAL_LOG_INFO (" %s : loaded %-40s %16p | th_max = %4d | th_width = %4d \n " , __func__, " kernel_" #name, (void *) kernel->pipeline , \
465
465
(int ) kernel->pipeline .maxTotalThreadsPerThreadgroup , \
466
466
(int ) kernel->pipeline .threadExecutionWidth ); \
467
467
if (error) { \
@@ -470,7 +470,7 @@ static void ggml_metal_log(enum ggml_log_level level, const char * format, ...){
470
470
return NULL ; \
471
471
} \
472
472
} else { \
473
- GGML_METAL_LOG_WARN (" %s : skipping %-32s (not supported)\n " , __func__, " kernel_" #name); \
473
+ GGML_METAL_LOG_WARN (" %s : skipping %-40s (not supported)\n " , __func__, " kernel_" #name); \
474
474
}
475
475
476
476
// simd_sum and simd_max requires MTLGPUFamilyApple7
0 commit comments