зеркало из https://github.com/mozilla/gecko-dev.git
Bug 826439 - use floats instead of doubles for exponential histogram statistic calculations; r=vdjeric
This commit is contained in:
Родитель
dd3ba161c4
Коммит
87d872a38f
|
@ -746,7 +746,7 @@ void Histogram::SampleSet::AccumulateWithExponentialStats(Sample value,
|
|||
size_t index) {
|
||||
Accumulate(value, count, index);
|
||||
DCHECK_GE(value, 0);
|
||||
double value_log = log(static_cast<double>(value) + 1);
|
||||
float value_log = logf(static_cast<float>(value) + 1.0f);
|
||||
log_sum_ += count * value_log;
|
||||
log_sum_squares_ += count * value_log * value_log;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче