From 5122c828695708b701f50d5b1e1781b0d14ec727 Mon Sep 17 00:00:00 2001 From: John <78893154+cmp-nct@users.noreply.github.com> Date: Tue, 23 Jan 2024 01:28:02 +0100 Subject: [PATCH] bugfix --- ggml-backend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml-backend.c b/ggml-backend.c index 8180a28c7..3ab7970f4 100644 --- a/ggml-backend.c +++ b/ggml-backend.c @@ -1746,7 +1746,7 @@ void ggml_printTensorSample(const char *prefix, const struct ggml_tensor * tenso } const char *sep = "+-------------------------------------------------------------------------------------------+\n"; - printf("%s| Content of %s \"%s\" (%d dim)\n", sep, prefix, tensor->name, ggml_n_dims(tensor)); + //printf("%s| Content of %s \"%s\" (%d dim)\n", sep, prefix, tensor->name, ggml_n_dims(tensor)); const int MAX_ELEMENTS_ROW = 10; const int MAX_ELEMENTS_COL = 6;