File tree Expand file tree Collapse file tree 4 files changed +1
-255
lines changed
manual_test/shared_threads Expand file tree Collapse file tree 4 files changed +1
-255
lines changed Original file line number Diff line number Diff line change @@ -497,8 +497,6 @@ THarmonizerStats THarmonizer::GetStats() const {
497
497
.MinElapsedCpu = MinElapsedCpu.load (std::memory_order_relaxed),
498
498
.AvgAwakeningTimeUs = WaitingInfo.AvgAwakeningTimeUs .load (std::memory_order_relaxed),
499
499
.AvgWakingUpTimeUs = WaitingInfo.AvgWakingUpTimeUs .load (std::memory_order_relaxed),
500
- .Budget = CpuConsumption.Budget ,
501
- .SharedFreeCpu = SharedInfo.FreeCpu ,
502
500
};
503
501
}
504
502
@@ -540,8 +538,7 @@ TString THarmonizerStats::ToString() const {
540
538
<< " MinElapsedCpu: " << MinElapsedCpu << " , "
541
539
<< " AvgAwakeningTimeUs: " << AvgAwakeningTimeUs << " , "
542
540
<< " AvgWakingUpTimeUs: " << AvgWakingUpTimeUs << " , "
543
- << " Budget: " << Budget << " , "
544
- << " SharedFreeCpu: " << SharedFreeCpu << ' }' ;
541
+ << ' }' ;
545
542
}
546
543
547
544
}
Original file line number Diff line number Diff line change @@ -49,9 +49,6 @@ namespace NActors {
49
49
float AvgAwakeningTimeUs = 0 ;
50
50
float AvgWakingUpTimeUs = 0 ;
51
51
52
- float Budget = 0.0 ;
53
- float SharedFreeCpu = 0.0 ;
54
-
55
52
TString ToString () const ;
56
53
};
57
54
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments