mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-28 16:48:45 +08:00
[2/n] - OsAgnosticMemoryManager Related-To: NEO-2877 Change-Id: I887126362381ac960608a2150fae211631d3cd5b Signed-off-by: Venevtsev, Igor <igor.venevtsev@intel.com>
24 lines
420 B
C++
24 lines
420 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/os_interface/linux/allocator_helper.h"
|
|
|
|
#include "core/helpers/basic_math.h"
|
|
#include "runtime/helpers/aligned_memory.h"
|
|
|
|
namespace NEO {
|
|
|
|
size_t getSizeToMap() {
|
|
return static_cast<size_t>(alignUp(4 * GB - 8096, 4096));
|
|
}
|
|
|
|
size_t getSizeToReserve() {
|
|
return maxNBitValue<47> / 4;
|
|
}
|
|
|
|
} // namespace NEO
|