Fixing compile errors without MPI

This commit is contained in:
Mark Berrill
2020-10-08 11:03:42 -04:00
parent 34b75e2ccf
commit 523f96abdd
70 changed files with 140 additions and 193 deletions

View File

@@ -150,7 +150,7 @@ void readRankData( int proc, int nx, int ny, int nz, DoubleArray& Phase, DoubleA
int main(int argc, char **argv)
{
// Initialize MPI
MPI_Init(&argc,&argv);
Utilities::startup( argc, argv );
printf("-----------------------------------------------------------\n");
printf("Labeling Blobs from Two-Phase Lattice Boltzmann Simulation \n");
@@ -318,7 +318,7 @@ int main(int argc, char **argv)
FILE *BLOBS = fopen("Blobs.dat","wb");
fwrite(GlobalBlobID.data(),4,Nx*Ny*Nz,BLOBS);
fclose(BLOBS);
MPI_Finalize();
Utilities::shutdown();
return 0;
}