From 9d6fc28f18f269d2fefbadb147b535df90a12010 Mon Sep 17 00:00:00 2001 From: xaedes Date: Tue, 25 Apr 2023 22:05:22 +0200 Subject: [PATCH] disable graph dot export as it floods console --- tests/test-grad0.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test-grad0.c b/tests/test-grad0.c index cfc2c94ad..33af3ea63 100644 --- a/tests/test-grad0.c +++ b/tests/test-grad0.c @@ -124,8 +124,8 @@ bool check_gradient( ggml_set_f32 (f->grad, 1.0f); ggml_graph_compute(ctx0, &gb); - ggml_graph_dump_dot(&gf, NULL, "test-grad0-forward.dot"); - ggml_graph_dump_dot(&gb, &gf, "test-grad0-backward.dot"); + // ggml_graph_dump_dot(&gf, NULL, "test-grad0-forward.dot"); + // ggml_graph_dump_dot(&gb, &gf, "test-grad0-backward.dot"); for (int i = 0; i < nargs; ++i) { const int nelements = ggml_nelements(x[i]);