mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-27 07:44:16 +08:00
50 lines
1.4 KiB
C++
50 lines
1.4 KiB
C++
/*
|
|
* Copyright (C) 2025 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/memory_manager/pool_info.h"
|
|
|
|
#include "shared/source/helpers/constants.h"
|
|
#include "shared/source/helpers/gfx_core_helper.h"
|
|
|
|
namespace NEO {
|
|
static constexpr uint64_t KB = MemoryConstants::kiloByte; // NOLINT(readability-identifier-naming)
|
|
static constexpr uint64_t MB = MemoryConstants::megaByte; // NOLINT(readability-identifier-naming)
|
|
// clang-format off
|
|
const std::array<const PoolInfo, 3> PoolInfo::poolInfos = {
|
|
PoolInfo{ 0, 4 * KB, 2 * MB},
|
|
PoolInfo{ 4 * KB + 1, 64 * KB, 2 * MB},
|
|
PoolInfo{64 * KB + 1, 1 * MB, 2 * MB}};
|
|
|
|
const std::array<const PoolInfo, 3> PoolInfo::extendedPoolInfos = {
|
|
PoolInfo{ 0, 4 * KB, 2 * MB},
|
|
PoolInfo{ 4 * KB + 1, 64 * KB, 2 * MB},
|
|
PoolInfo{64 * KB + 1, 2 * MB, 16 * MB}};
|
|
// clang-format on
|
|
|
|
const std::array<const PoolInfo, 3> PoolInfo::getPoolInfos(const GfxCoreHelper &gfxCoreHelper) {
|
|
if (gfxCoreHelper.isExtendedUsmPoolSizeEnabled()) {
|
|
return extendedPoolInfos;
|
|
}
|
|
return poolInfos;
|
|
}
|
|
|
|
const std::array<const PoolInfo, 3> PoolInfo::getHostPoolInfos() {
|
|
return extendedPoolInfos;
|
|
}
|
|
|
|
size_t PoolInfo::getMaxPoolableSize(const GfxCoreHelper &gfxCoreHelper) {
|
|
if (gfxCoreHelper.isExtendedUsmPoolSizeEnabled()) {
|
|
return 2 * MB;
|
|
}
|
|
return 1 * MB;
|
|
}
|
|
|
|
size_t PoolInfo::getHostMaxPoolableSize() {
|
|
return 2 * MB;
|
|
}
|
|
} // namespace NEO
|