mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 10:17:01 +08:00
Change-Id: I09bbc19aeb377d8fabfe144920c6377cf68066d2 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
16 lines
350 B
C++
16 lines
350 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/memory_manager/memory_manager.h"
|
|
|
|
namespace NEO {
|
|
StorageInfo MemoryManager::createStorageInfoFromProperties(const AllocationProperties &properties) {
|
|
return {};
|
|
}
|
|
uint32_t StorageInfo::getNumHandles() const { return 1u; }
|
|
} // namespace NEO
|