From e9b6f58fdc337e82d34b9d496682ae7376895eb8 Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Wed, 7 Nov 2018 23:39:18 +0000 Subject: [PATCH] Allow shrinking machine in orthog direction for extract slice local --- Grid/lattice/Lattice_transfer.h | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Grid/lattice/Lattice_transfer.h b/Grid/lattice/Lattice_transfer.h index f988f310..4eca50d6 100644 --- a/Grid/lattice/Lattice_transfer.h +++ b/Grid/lattice/Lattice_transfer.h @@ -464,8 +464,10 @@ void InsertSliceLocal(const Lattice &lowDim, Lattice & higherDim,int assert(orthog>=0); for(int d=0;d_processors[d] == hg->_processors[d]); - assert(lg->_ldimensions[d] == hg->_ldimensions[d]); + if ( d!=orthog ) { + assert(lg->_processors[d] == hg->_processors[d]); + assert(lg->_ldimensions[d] == hg->_ldimensions[d]); + } } // the above should guarantee that the operations are local @@ -499,8 +501,10 @@ void ExtractSliceLocal(Lattice &lowDim, Lattice & higherDim,int slic assert(orthog>=0); for(int d=0;d_processors[d] == hg->_processors[d]); - assert(lg->_ldimensions[d] == hg->_ldimensions[d]); + if ( d!=orthog ) { + assert(lg->_processors[d] == hg->_processors[d]); + assert(lg->_ldimensions[d] == hg->_ldimensions[d]); + } } // the above should guarantee that the operations are local