From 8919bf9e0a1e388fd4434aa4d643694f7647b833 Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Sun, 10 May 2015 15:26:06 +0100 Subject: [PATCH] Single node default. Should expose this as command line args, but haven't sorted out Grid_initialize to handle this. Should put this on the TODO list. --- tests/Grid_cshift.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Grid_cshift.cc b/tests/Grid_cshift.cc index c0863965..fcee7b70 100644 --- a/tests/Grid_cshift.cc +++ b/tests/Grid_cshift.cc @@ -9,7 +9,7 @@ int main (int argc, char ** argv) Grid_init(&argc,&argv); std::vector simd_layout({1,1,2,2}); - std::vector mpi_layout ({2,2,1,4}); + std::vector mpi_layout ({1,1,1,1}); std::vector latt_size ({8,8,8,16}); GridCartesian Fine(latt_size,simd_layout,mpi_layout);