diff --git a/perf_tests/test_osu_latency_sendrecv.cpp b/perf_tests/test_osu_latency_sendrecv.cpp index cb5feb28..5c9be783 100644 --- a/perf_tests/test_osu_latency_sendrecv.cpp +++ b/perf_tests/test_osu_latency_sendrecv.cpp @@ -51,7 +51,7 @@ void benchmark_osu_latency_KokkosComm_sendrecv(benchmark::State &state) { auto space = Kokkos::DefaultExecutionSpace(); using view_type = Kokkos::View; - view_type a("", state.range(0)); + view_type a("A", state.range(0)); while (state.KeepRunning()) { do_iteration(state, MPI_COMM_WORLD, osu_latency_Kokkos_Comm_sendrecv, @@ -69,7 +69,7 @@ void benchmark_osu_latency_MPI_sendrecv(benchmark::State &state) { } using view_type = Kokkos::View; - view_type a("", state.range(0)); + view_type a("A", state.range(0)); while (state.KeepRunning()) { do_iteration(state, MPI_COMM_WORLD, osu_latency_MPI_sendrecv, rank, a);