Skip to content

Commit d1d7fdd

Browse files
committed
fix in truly_passive_put show field t_ovrl
1 parent b8910a5 commit d1d7fdd

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src_cpp/RMA/RMA_benchmark.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,7 @@ BENCHMARK(IMB_rma_passive_put, Truly_passive_put)
288288
descr->flags.insert(N_MODES_1);
289289
descr->flags.insert(NON_AGGREGATE);
290290
descr->flags.insert(NONBLOCKING);
291+
descr->flags.insert(NTIMES_2);
291292
descr->flags.insert(PUT);
292293
descr->comments.push_back("The benchmark measures execution time of MPI_Put for 2 cases:");
293294
descr->comments.push_back("1) The target is waiting in MPI_Barrier call (t_pure value)");

src_cpp/helpers/helper_IMB_functions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,11 +199,11 @@ struct Bmark_descr {
199199
found = true;
200200
}
201201
}
202+
#endif /*MPIIO*/
202203
if (flags.count(NTIMES_2) > 0) {
203204
Bmark->Ntimes = 2;
204205
}
205206

206-
#endif /*MPIIO*/
207207
if (flags.count(NON_AGGREGATE)) {
208208
Bmark->RUN_MODES[0].AGGREGATE = -1;
209209
}

0 commit comments

Comments
 (0)