1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-14 22:07:05 +01:00

Got command line args working

This commit is contained in:
Peter Boyle
2015-05-11 14:36:48 +01:00
parent 43e71ff28c
commit f5dcca7b1b
17 changed files with 2827 additions and 3407 deletions

View File

@ -73,7 +73,11 @@ namespace Grid {
std::string GridCmdOptionPayload(char ** begin, char ** end, const std::string & option);
bool GridCmdOptionExists(char** begin, char** end, const std::string& option);
void GridParseIntVector(std::string &str,std::vector<int> & vec);
void GridParseLayout(char **argv,int argc,std::vector<int> &mpi,std::vector<int> &simd,std::vector<int> &latt);
void GridParseLayout(char **argv,int argc,
std::vector<int> &simd,
std::vector<int> &latt,
std::vector<int> &mpi);
};