chore: updated some of the use cases docs

This commit is contained in:
David Allen 2025-07-22 12:41:08 -06:00
parent 6908f9bdd1
commit fe08ffa0dd
Signed by: towk
GPG key ID: 793B2924A49B3A3F
3 changed files with 131 additions and 4 deletions

View file

@ -157,11 +157,11 @@ main(int argc, char **argv)
{
int node;
MPI_Init(&argc,&argv);
MPI_Init(&argc, &argv);
MPI_Comm_rank(MPI_COMM_WORLD, &node);
printf("Hello World from Node %d\n",node);
MPI_Finalize();
}
```