1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-10-13 12:44:42 +01:00

Default dimensions fixed

This commit is contained in:
Peter Boyle
2025-10-09 14:57:22 -04:00
parent 0ce201efbe
commit c7b74db317
2 changed files with 7 additions and 5 deletions

View File

@@ -187,9 +187,10 @@ void GridParseLayout(char **argv,int argc,
Coordinate &latt_c,
Coordinate &mpi_c)
{
auto mpi =std::vector<int>(1,Nd);
auto latt=std::vector<int>(8,Nd);
auto mpi =std::vector<int>(Nd,1);
auto latt=std::vector<int>(Nd,8);
std::cout << "Default mpi "<<mpi<<std::endl;
std::cout << "Default latt"<<latt<<std::endl;
GridThread::SetMaxThreads();
std::string arg;
@@ -228,6 +229,9 @@ void GridParseLayout(char **argv,int argc,
}
// Copy back into coordinate format
int nd = mpi.size();
std::cout << "mpi.size() "<<nd<<std::endl;
std::cout << "latt.size() "<<latt.size()<<std::endl;
std::cout << "Nd "<<Nd<<std::endl;
assert(latt.size()==nd);
latt_c.resize(nd);
mpi_c.resize(nd);

View File

@@ -7,7 +7,5 @@ MPICXX=mpicxx CXXFLAGS=-I/opt/local/include LDFLAGS=-L/opt/local/lib/ CXX=clang+
--with-openssl=$BREW \
--disable-fermion-reps \
--disable-gparity \
--enable-Nd=3 \
--enable-Nc=1 \
--enable-debug