We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
PipelineRun
1 parent abbdf70 commit fa7e0f4Copy full SHA for fa7e0f4
modules/core/performance/include/performance.hpp
@@ -38,15 +38,12 @@ class Perf {
38
void PipelineRun(const PerfAttr& perf_attr) {
39
perf_results_.type_of_running = PerfResults::TypeOfRunning::kPipeline;
40
41
- CommonRun(
42
- perf_attr,
43
- [&]() {
44
- task_->Validation();
45
- task_->PreProcessing();
46
- task_->Run();
47
- task_->PostProcessing();
48
- },
49
- perf_results_);
+ CommonRun(perf_attr, [&]() {
+ task_->Validation();
+ task_->PreProcessing();
+ task_->Run();
+ task_->PostProcessing();
+ }, perf_results_);
50
}
51
// Check performance of task's Run() function
52
void TaskRun(const PerfAttr& perf_attr) {
0 commit comments