mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 04:12:57 +08:00
Related-To: NEO-16045 Also, unify pool config parameters and reduce pool size for ULTs. Signed-off-by: Szymon Morek <szymon.morek@intel.com>
21 lines
348 B
C++
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
|