File tree Expand file tree Collapse file tree 2 files changed +13
-9
lines changed Expand file tree Collapse file tree 2 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ ColumnLimit: 120
5
5
UseTab : Never
6
6
QualifierAlignment : Left
7
7
PointerAlignment : Right
8
+ ReferenceAlignment : Right
9
+ SortUsingDeclarations : LexicographicNumeric
8
10
InsertNewlineAtEOF : true
11
+ LambdaBodyIndentation : OuterScope
12
+ MaxEmptyLinesToKeep : 1
9
13
KeepEmptyLines :
14
+ AtStartOfFile : false
15
+ AtStartOfBlock : false
10
16
AtEndOfFile : false
17
+ LineEnding : LF
Original file line number Diff line number Diff line change @@ -20,15 +20,12 @@ ppc::core::Perf::Perf(const std::shared_ptr<Task>& task_ptr) : task_(task_ptr) {
20
20
void ppc::core::Perf::PipelineRun (const PerfAttr& perf_attr) {
21
21
perf_results_.type_of_running = PerfResults::TypeOfRunning::kPipeline ;
22
22
23
- CommonRun (
24
- perf_attr,
25
- [&]() {
26
- task_->Validation ();
27
- task_->PreProcessing ();
28
- task_->Run ();
29
- task_->PostProcessing ();
30
- },
31
- perf_results_);
23
+ CommonRun (perf_attr, [&]() {
24
+ task_->Validation ();
25
+ task_->PreProcessing ();
26
+ task_->Run ();
27
+ task_->PostProcessing ();
28
+ }, perf_results_);
32
29
}
33
30
34
31
void ppc::core::Perf::TaskRun (const PerfAttr& perf_attr) {
You can’t perform that action at this time.
0 commit comments