summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorgi Gerganov <ggerganov@gmail.com>2024-01-13 18:46:37 +0200
committerGeorgi Gerganov <ggerganov@gmail.com>2024-01-13 18:46:37 +0200
commit2d57de525541247132e354f561ff48775fba5d85 (patch)
treee42f918faea3d60cfa33ebcf95d8fd5d0c90782d
parentdf845cc982e7e2ea7b9900e29d55b15338faa78d (diff)
metal : disable log for loaded kernels (#4794)
-rw-r--r--ggml-metal.m3
1 files changed, 0 insertions, 3 deletions
diff --git a/ggml-metal.m b/ggml-metal.m
index 6c28a7ee..57e44482 100644
--- a/ggml-metal.m
+++ b/ggml-metal.m
@@ -398,9 +398,6 @@ struct ggml_metal_context * ggml_metal_init(int n_cb) {
struct ggml_metal_kernel * kernel = &ctx->kernels[e]; \
kernel->function = [ctx->library newFunctionWithName:@"kernel_"#name]; \
kernel->pipeline = [ctx->device newComputePipelineStateWithFunction:kernel->function error:&error]; \
- GGML_METAL_LOG_INFO("%s: loaded %-32s %16p | th_max = %4d | th_width = %4d\n", __func__, "kernel_"#name, (void *) kernel->pipeline, \
- (int) kernel->pipeline.maxTotalThreadsPerThreadgroup, \
- (int) kernel->pipeline.threadExecutionWidth); \
if (error) { \
GGML_METAL_LOG_ERROR("%s: error: load pipeline error: %s\n", __func__, [[error description] UTF8String]); \
return NULL; \