From 9f51209527a8c69d981df99f65db278a72d9c57d Mon Sep 17 00:00:00 2001 From: nicoleavans Date: Wed, 26 Jun 2024 13:30:24 -0600 Subject: [PATCH] add view labels --- perf_tests/test_osu_latency_sendrecv.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);