From 30f9eb540e39b04b5a76b80ec0dbca0489d8bc43 Mon Sep 17 00:00:00 2001 From: Eduard Valeyev Date: Wed, 1 Nov 2023 14:20:05 -0400 Subject: [PATCH] disable trace output in TTG Cholesky --- src/TiledArray/math/linalg/ttg/cholesky.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/TiledArray/math/linalg/ttg/cholesky.h b/src/TiledArray/math/linalg/ttg/cholesky.h index 66a67a8034..0017d1ae1e 100644 --- a/src/TiledArray/math/linalg/ttg/cholesky.h +++ b/src/TiledArray/math/linalg/ttg/cholesky.h @@ -86,7 +86,7 @@ auto cholesky(const Array& A, TiledRange l_trange = {}, [[maybe_unused]] auto connected = make_graph_executable(potrf_ttg.get()); // uncomment to trace - ::ttg::trace_on(); + //::ttg::trace_on(); // start ::ttg::execute(); @@ -175,7 +175,7 @@ auto cholesky_linv(const Array& A, TiledRange l_trange = {}, [[maybe_unused]] auto connected = make_graph_executable(trtri_ttg.get()); // uncomment to trace - ::ttg::trace_on(); + //::ttg::trace_on(); // start ::ttg::execute();