Skip to content

Commit 7c6edf8

Browse files
authored
Fix pipeline duplication (#264)
1 parent 840c023 commit 7c6edf8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tasks/all/example/perf_tests/perf_all.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ TEST(nesterov_a_test_task_all, test_task_run) {
8686

8787
// Create Perf analyzer
8888
auto perf_analyzer = std::make_shared<ppc::core::Perf>(test_task_all);
89-
perf_analyzer->PipelineRun(perf_attr, perf_results);
89+
perf_analyzer->TaskRun(perf_attr, perf_results);
9090
// Create Perf analyzer
9191
boost::mpi::communicator world;
9292
if (world.rank() == 0) {

tasks/mpi/example/perf_tests/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ TEST(nesterov_a_test_task_mpi, test_task_run) {
8686

8787
// Create Perf analyzer
8888
auto perf_analyzer = std::make_shared<ppc::core::Perf>(test_task_mpi);
89-
perf_analyzer->PipelineRun(perf_attr, perf_results);
89+
perf_analyzer->TaskRun(perf_attr, perf_results);
9090
// Create Perf analyzer
9191
boost::mpi::communicator world;
9292
if (world.rank() == 0) {

0 commit comments

Comments
 (0)