Skip to content

Commit 63a1d7c

Browse files
author
Joan Martinez
committed
fix: clean prints
1 parent cf1c144 commit 63a1d7c

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

ggml.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16107,7 +16107,6 @@ static void ggml_compute_forward(struct ggml_compute_params * params, struct ggm
1610716107
return;
1610816108
}
1610916109

16110-
fprintf(stdout, "Computing forward (%s) for tensor %s\n", GGML_OP_NAME[tensor->op], tensor->name);
1611116110
switch (tensor->op) {
1611216111
case GGML_OP_DUP:
1611316112
{
@@ -16444,7 +16443,6 @@ static void ggml_compute_forward(struct ggml_compute_params * params, struct ggm
1644416443
GGML_ASSERT(false);
1644516444
} break;
1644616445
}
16447-
fprintf(stdout, "After FORWARD %s (%p): Shape:%li, %li, %li, %li tensor: %9.6f, %9.6f, %9.6f, %9.6f \n", tensor->name, tensor, tensor->ne[0], tensor->ne[1], tensor->ne[2], tensor->ne[3], ((float *)(tensor->data))[0], ((float *)(tensor->data))[1], ((float *)(tensor->data))[2], ((float *)(tensor->data))[3]);
1644816446
}
1644916447

1645016448
////////////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)