Amesos Package Browser (Single Doxygen Collection) Development
Loading...
Searching...
No Matches
a_trivial_mpi_test.cpp
Go to the documentation of this file.
1#include <iostream>
2#include <mpi.h>
3
4int
5main(int argc, char *argv[])
6{
7 MPI_Init(&argc, &argv); // MPI_Init(argc,argv) won't compile on IRIX64 - see bug #1885
8
9 std::cout << "Hello World! MPI works" << std::endl ;
10
11 MPI_Finalize();
12 return 0;
13}
int main(int argc, char *argv[])