File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -27,10 +27,10 @@ struct PerfResults {
27
27
class Perf {
28
28
public:
29
29
// Init performance analysis with initialized task and initialized data
30
- explicit Perf (const std::shared_ptr<Task>& task );
30
+ explicit Perf (const std::shared_ptr<Task>& task_ptr );
31
31
// Set task with initialized task and initialized data for performance
32
32
// analysis c
33
- void SetTask (const std::shared_ptr<Task>& task );
33
+ void SetTask (const std::shared_ptr<Task>& task_ptr );
34
34
// Check performance of full task's pipeline: pre_processing() ->
35
35
// validation() -> run() -> post_processing()
36
36
void PipelineRun (const std::shared_ptr<PerfAttr>& perf_attr,
Original file line number Diff line number Diff line change 7
7
#include < sstream>
8
8
#include < utility>
9
9
10
- ppc::core::Perf::Perf (const std::shared_ptr<Task>& task ) { SetTask (task ); }
10
+ ppc::core::Perf::Perf (const std::shared_ptr<Task>& task_ptr ) { SetTask (task_ptr ); }
11
11
12
- void ppc::core::Perf::SetTask (const std::shared_ptr<Task>& task ) {
13
- task ->get_data ()->state_of_testing = TaskData::StateOfTesting::PERF;
14
- this ->task = task ;
12
+ void ppc::core::Perf::SetTask (const std::shared_ptr<Task>& task_ptr ) {
13
+ task_ptr ->get_data ()->state_of_testing = TaskData::StateOfTesting::PERF;
14
+ this ->task = task_ptr ;
15
15
}
16
16
17
17
void ppc::core::Perf::PipelineRun (const std::shared_ptr<PerfAttr>& perf_attr,
You can’t perform that action at this time.
0 commit comments