From e12c8d413c2d5dc984655bc83735bd7b1031f330 Mon Sep 17 00:00:00 2001 From: maddyscientist Date: Fri, 27 Oct 2023 09:33:00 -0700 Subject: [PATCH] Set default dilution block size to 8x8x8x8 --- tests/utils/command_line_params.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/utils/command_line_params.cpp b/tests/utils/command_line_params.cpp index 6fc1452241..d842349f1d 100644 --- a/tests/utils/command_line_params.cpp +++ b/tests/utils/command_line_params.cpp @@ -121,7 +121,7 @@ QudaMatPCType matpc_type = QUDA_MATPC_EVEN_EVEN; QudaSolveType solve_type = QUDA_NORMOP_PC_SOLVE; QudaSolutionType solution_type = QUDA_MAT_SOLUTION; QudaTboundary fermion_t_boundary = QUDA_ANTI_PERIODIC_T; -std::array dilution_block_size = {1, 1, 1, 1}; +std::array dilution_block_size = {8, 8, 8, 8}; int mg_levels = 2;