File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class TestTaskALL : public ppc::core::Task {
1414 bool PreProcessingImpl () override ;
1515 bool RunImpl () override ;
1616 bool PostProcessingImpl () override ;
17- std::vector<int > Get () { return output_; }
17+ std::vector<int > Get ();
1818
1919 private:
2020 std::vector<int > input_, output_;
Original file line number Diff line number Diff line change @@ -69,3 +69,5 @@ bool nesterov_a_test_task_all::TestTaskALL::RunImpl() {
6969}
7070
7171bool nesterov_a_test_task_all::TestTaskALL::PostProcessingImpl () { return true ; }
72+
73+ std::vector<int > nesterov_a_test_task_all::TestTaskALL::Get () { return output_; }
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class TestTaskMPI : public ppc::core::Task {
1414 bool PreProcessingImpl () override ;
1515 bool RunImpl () override ;
1616 bool PostProcessingImpl () override ;
17- std::vector<int > Get () { return output_; }
17+ std::vector<int > Get ();
1818
1919 private:
2020 std::vector<int > input_, output_;
Original file line number Diff line number Diff line change @@ -56,3 +56,5 @@ void nesterov_a_test_task_mpi::TestTaskMPI::MultiplyColumnMajor() {
5656}
5757
5858bool nesterov_a_test_task_mpi::TestTaskMPI::PostProcessingImpl () { return true ; }
59+
60+ std::vector<int > nesterov_a_test_task_mpi::TestTaskMPI::Get () { return output_; }
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class TestTaskOpenMP : public ppc::core::Task {
1414 bool PreProcessingImpl () override ;
1515 bool RunImpl () override ;
1616 bool PostProcessingImpl () override ;
17- std::vector<int > Get () { return output_; }
17+ std::vector<int > Get ();
1818
1919 private:
2020 std::vector<int > input_, output_;
Original file line number Diff line number Diff line change @@ -35,3 +35,5 @@ bool nesterov_a_test_task_omp::TestTaskOpenMP::RunImpl() {
3535}
3636
3737bool nesterov_a_test_task_omp::TestTaskOpenMP::PostProcessingImpl () { return true ; }
38+
39+ std::vector<int > nesterov_a_test_task_omp::TestTaskOpenMP::Get () { return output_; }
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class TestTaskSequential : public ppc::core::Task {
1414 bool PreProcessingImpl () override ;
1515 bool RunImpl () override ;
1616 bool PostProcessingImpl () override ;
17- std::vector<int > Get () { return output_; }
17+ std::vector<int > Get ();
1818
1919 private:
2020 std::vector<int > input_, output_;
Original file line number Diff line number Diff line change @@ -28,3 +28,5 @@ bool nesterov_a_test_task_seq::TestTaskSequential::RunImpl() {
2828}
2929
3030bool nesterov_a_test_task_seq::TestTaskSequential::PostProcessingImpl () { return true ; }
31+
32+ std::vector<int > nesterov_a_test_task_seq::TestTaskSequential::Get () { return output_; }
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class TestTaskSTL : public ppc::core::Task {
1414 bool PreProcessingImpl () override ;
1515 bool RunImpl () override ;
1616 bool PostProcessingImpl () override ;
17- std::vector<int > Get () { return output_; }
17+ std::vector<int > Get ();
1818
1919 private:
2020 std::vector<int > input_, output_;
Original file line number Diff line number Diff line change @@ -43,3 +43,5 @@ bool nesterov_a_test_task_stl::TestTaskSTL::RunImpl() {
4343}
4444
4545bool nesterov_a_test_task_stl::TestTaskSTL::PostProcessingImpl () { return true ; }
46+
47+ std::vector<int > nesterov_a_test_task_stl::TestTaskSTL::Get () { return output_; }
You can’t perform that action at this time.
0 commit comments