blob: 9a8658aa28d9e37f2c16fac4242a8e3ede06eb93 [file] [log] [blame]
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/task/thread_pool/initialization_util.h"
#include <algorithm>
#include <cmath>
#include "base/cxx17_backports.h"
#include "base/system/sys_info.h"
namespace base {
size_t RecommendedMaxNumberOfThreadsInThreadGroup(size_t min,
size_t max,
double cores_multiplier,
size_t offset) {
const auto num_of_cores = static_cast<size_t>(SysInfo::NumberOfProcessors());
const size_t threads =
std::ceil<size_t>(num_of_cores * cores_multiplier) + offset;
return clamp(threads, min, max);
}
} // namespace base