Skip to content
Snippets Groups Projects
Commit 8b350bcd authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Omit unnecessary check.

* This test does not change the MPI error handling behaviour.
* Hence the default behaviour of abort on exit applies.
parent ee9cc61a
No related branches found
No related tags found
No related merge requests found
Pipeline #72388 passed with warnings
......@@ -943,8 +943,7 @@ int main(int argc, char **argv) {
MPI_Datatype dup_mpi_int;
MPI_Type_dup(MPI_INT, &dup_mpi_int);
enum {COUNT = minimal_cont_count};
xt_mpi_call(MPI_Type_contiguous(COUNT, dup_mpi_int, &i_mpi_ddt),
MPI_COMM_WORLD);
MPI_Type_contiguous(COUNT, dup_mpi_int, &i_mpi_ddt);
MPI_Type_free(&dup_mpi_int);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment