Files
compute-runtime/shared/source/memory_manager/usm_pool_params.h
Szymon Morek 6b37243bfa performance: increase USM pool sizes
Related-To: NEO-16045

Also, unify pool config parameters and
reduce pool size for ULTs.

Signed-off-by: Szymon Morek <szymon.morek@intel.com>
2025-09-16 12:10:25 +02:00

21 lines
348 B
C++

/*
* Copyright (C) 2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <cstddef>
namespace NEO {
struct UsmPoolParams {
size_t poolSize{0};
size_t minServicedSize{0};
size_t maxServicedSize{0};
static UsmPoolParams getUsmPoolParams();
static size_t getUsmPoolSize();
};
} // namespace NEO