Files
LBPM/tests/hello_world.cpp

33 lines
729 B
C++
Raw Normal View History

#include <iostream>
2021-01-05 18:43:44 -05:00
#include "common/MPI.h"
#include "common/Utilities.h"
int main (int argc, char **argv)
{
2020-10-08 11:03:42 -04:00
Utilities::startup( argc, argv );
2020-01-28 08:51:32 -05:00
Utilities::MPI comm( MPI_COMM_WORLD );
int rank = comm.getRank();
int nprocs = comm.getSize();
for (int i=0; i<nprocs; i++) {
if ( rank==i )
printf("%i of %i: Hello world\n",rank,nprocs);
2021-01-05 18:43:44 -05:00
comm.barrier();
}
// Create a memory leak for valgrind to find
if ( nprocs==1 ) {
double *x = new double[1];
ASSERT(x!=NULL);
}
// set the error code
// Note: the error code should be consistent across all processors
int error = 0;
// Finished
2020-10-08 11:03:42 -04:00
Utilities::shutdown();
return error;
}