Skip to content

Commit a4bf8d1

Browse files
committed
fix wording
1 parent e6590c6 commit a4bf8d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src_cpp/MPI1/MPI1_suite.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -427,10 +427,10 @@ MPI_Op get_op(MPI_Datatype type) {
427427
else if (!memcmp(&type, &mpi_float, type_size)) { MPI_Op_create(&(contig_sum<float>), 1, &op); }
428428
else if (!memcmp(&type, &mpi_double, type_size)) { MPI_Op_create(&(contig_sum<double>), 1, &op); }
429429
#ifdef MPIX_C_FLOAT16
430-
else if (!memcmp(&type, &mpi_float16, type_size)) { op = MPI_OP_NULL; fprintf(stdout, "\nWarning: contig_type doesn't supported\n"); }
430+
else if (!memcmp(&type, &mpi_float16, type_size)) { op = MPI_OP_NULL; fprintf(stdout, "\nWarning: contig_type isn't supported\n"); }
431431
#endif
432432
#ifdef MPIX_C_BF16
433-
else if (!memcmp(&type, &mpi_bfloat16, type_size)) { op = MPI_OP_NULL; fprintf(stdout, "\nWarning: contig_type doesn't supported \n"); }
433+
else if (!memcmp(&type, &mpi_bfloat16, type_size)) { op = MPI_OP_NULL; fprintf(stdout, "\nWarning: contig_type isn't supported \n"); }
434434
#endif
435435

436436
return op;

0 commit comments

Comments
 (0)