make tabulator quit if there is only one process

This commit is contained in:
Benji Dial 2024-01-30 23:28:07 -05:00
parent ecbb062709
commit 0d44b60612

View file

@ -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;