From 4083800c1842ed7ef5c14f2df682d4f9c204b619 Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Wed, 29 May 2019 00:54:56 -0400 Subject: [PATCH] Use the correct counter name in the example. Signed-off-by: George Bosilca --- test/spc/spc_test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/spc/spc_test.c b/test/spc/spc_test.c index a15d87dc95..65dc744435 100644 --- a/test/spc/spc_test.c +++ b/test/spc/spc_test.c @@ -44,8 +44,8 @@ int main(int argc, char **argv) char name[256], description[256]; /* Counter names to be read by ranks 0 and 1 */ - char *counter_names[] = { "runtime_spc_OMPI_BYTES_SENT_USER", - "runtime_spc_OMPI_BYTES_RECEIVED_USER" }; + char *counter_names[] = { "runtime_spc_OMPI_SPC_BYTES_SENT_USER", + "runtime_spc_OMPI_SPC_BYTES_RECEIVED_USER" }; MPI_Init(NULL, NULL); MPI_result = MPI_T_init_thread(MPI_THREAD_SINGLE, &provided);