diff --git a/tests/perf/collection_local_send.cc b/tests/perf/collection_local_send.cc index 713f4d12e5..dae368209a 100644 --- a/tests/perf/collection_local_send.cc +++ b/tests/perf/collection_local_send.cc @@ -112,12 +112,9 @@ struct NodeObj { private: std::vector> msgs; - HandlerType han; MyTest* test_obj_ = nullptr; vt::objgroup::proxy::Proxy proxy_ = {}; vt::CollectionProxy col_proxy; - int reduce_counter_ = -1; - int i = 0; bool preallocate_ = false; }; diff --git a/tests/perf/make_runnable_micro.cc b/tests/perf/make_runnable_micro.cc index 551b1a10c5..3571dc1f49 100644 --- a/tests/perf/make_runnable_micro.cc +++ b/tests/perf/make_runnable_micro.cc @@ -102,8 +102,6 @@ struct NodeObj { HandlerType han; MyTest* test_obj_ = nullptr; vt::objgroup::proxy::Proxy proxy_ = {}; - int reduce_counter_ = -1; - int i = 0; }; VT_PERF_TEST(MyTest, test_make_runnable_micro) { diff --git a/tests/perf/objgroup_local_send.cc b/tests/perf/objgroup_local_send.cc index 27d484bc8f..21daf48867 100644 --- a/tests/perf/objgroup_local_send.cc +++ b/tests/perf/objgroup_local_send.cc @@ -101,12 +101,9 @@ struct NodeObj { private: std::vector> msgs; - HandlerType han; MyTest* test_obj_ = nullptr; vt::objgroup::proxy::Proxy proxy_ = {}; vt::objgroup::proxy::Proxy obj_proxy; - int reduce_counter_ = -1; - int i = 0; }; VT_PERF_TEST(MyTest, test_objgroup_local_send) { diff --git a/tests/perf/ping_pong_am.cc b/tests/perf/ping_pong_am.cc index 9330529ece..a47e6a0d95 100644 --- a/tests/perf/ping_pong_am.cc +++ b/tests/perf/ping_pong_am.cc @@ -96,8 +96,6 @@ struct NodeObj { private: MyTest* test_obj_ = nullptr; vt::objgroup::proxy::Proxy proxy_ = {}; - int reduce_counter_ = -1; - int i = 0; }; void handlerFinished(MyMsg* msg) { diff --git a/tests/perf/send_cost.cc b/tests/perf/send_cost.cc index 34692eaaa8..3156d1a057 100644 --- a/tests/perf/send_cost.cc +++ b/tests/perf/send_cost.cc @@ -76,7 +76,6 @@ struct SendTest : PerfTestHarness { VT_PERF_TEST(SendTest, test_send) { auto const thisNode = vt::theContext()->getNode(); - auto const lastNode = theContext()->getNumNodes() - 1; auto const prevNode = (thisNode - 1 + num_nodes_) % num_nodes_; auto const nextNode = (thisNode + 1) % num_nodes_; @@ -164,9 +163,6 @@ VT_PERF_TEST(SendTest, test_objgroup_send) { grp_proxy[my_node_].invoke<&NodeObj::initialize>(); auto const thisNode = vt::theContext()->getNode(); - auto const lastNode = theContext()->getNumNodes() - 1; - - auto const prevNode = (thisNode - 1 + num_nodes_) % num_nodes_; auto const nextNode = (thisNode + 1) % num_nodes_; for (auto size : payloadSizes) {