make tabulator quit if there is only one process
This commit is contained in:
parent
ecbb062709
commit
0d44b60612
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ int main(int argc, char **argv) {
|
||||||
MPI_Comm_size(MPI_COMM_WORLD, &size);
|
MPI_Comm_size(MPI_COMM_WORLD, &size);
|
||||||
|
|
||||||
if (size < 2)
|
if (size < 2)
|
||||||
error("this must be run under mpi with at least two processes.", rank);
|
return error("this must be run under mpi with at least two processes.", rank);
|
||||||
|
|
||||||
std::vector<std::string> filenames = {};
|
std::vector<std::string> filenames = {};
|
||||||
int rounds_per_chunk = default_rounds_per_chunk;
|
int rounds_per_chunk = default_rounds_per_chunk;
|
||||||
|
|
Loading…
Add table
Reference in a new issue