Zoltan is added as thirdParty package

This commit is contained in:
Hamidreza
2025-05-15 21:58:43 +03:30
parent 83a6e4baa1
commit d7479cf1bd
3392 changed files with 318142 additions and 1 deletions

View File

@ -0,0 +1,17 @@
/*TEST
CCFLAGS=""
OUTPUT="""siMPI running on rank 0
"""
STATUS=0
TEST*/
#include "mpi.h"
int main(int argc, char** argv) {
int rank;
MPI_Init(&argc,&argv);
MPI_Comm_rank(MPI_COMM_WORLD,&rank);
printf("siMPI running on rank %d\n",rank);
MPI_Finalize();
return 0;
}