From 755a6021ab9cb373c9eacf3e056171e8fa077d2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mos=C3=A8=20Giordano?= Date: Mon, 18 May 2020 16:09:31 +0100 Subject: [PATCH] Use `params.verbose` to check verbosity setting --- src/TDAC.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TDAC.jl b/src/TDAC.jl index e265593c..605562f8 100644 --- a/src/TDAC.jl +++ b/src/TDAC.jl @@ -530,7 +530,7 @@ function tdac(params::tdac_params) if params.enable_timers print_timer(timer) - if verbose + if params.verbose h5write(params.output_filename, "timer/rank0", string(timer)) end end