Skip to content

Commit

Permalink
Merge pull request #776 from streeve/fixup_mpi_test_type
Browse files Browse the repository at this point in the history
fixup: MPI test type
  • Loading branch information
streeve authored Sep 25, 2024
2 parents b4aadab + eb9c218 commit 25d5a8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/unit_test/tstDistributor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -236,9 +236,9 @@ void test3( const bool use_topology )
int mpi_tag = 1030;
MPI_Request request;
MPI_Irecv( inverse_steering.data(), inverse_steering.size(),
MPI_UNSIGNED_LONG_LONG, inverse_rank, mpi_tag, MPI_COMM_WORLD,
MPI_UNSIGNED_LONG, inverse_rank, mpi_tag, MPI_COMM_WORLD,
&request );
MPI_Send( my_steering.data(), my_steering.size(), MPI_UNSIGNED_LONG_LONG,
MPI_Send( my_steering.data(), my_steering.size(), MPI_UNSIGNED_LONG,
inverse_rank, mpi_tag, MPI_COMM_WORLD );
MPI_Status status;
MPI_Wait( &request, &status );
Expand Down

0 comments on commit 25d5a8d

Please sign in to comment.