Skip to content

Commit

Permalink
#32 - fix missing arg in MPI_Abort()
Browse files Browse the repository at this point in the history
  • Loading branch information
steve-crouch committed May 29, 2024
1 parent ca02930 commit a470ddc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _episodes/06-non-blocking-communication.md
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ if (!comm_completed) {
>
> if (num_ranks < 2) {
> printf("This example requires at least two ranks\n");
> MPI_Abort(1);
> MPI_Abort(MPI_COMM_WORLD, 1);
> }
>
> char send_message[MESSAGE_SIZE];
Expand Down

0 comments on commit a470ddc

Please sign in to comment.