2019-02-20 21:03:04 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2019 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2019-05-06 16:35:49 +08:00
|
|
|
#include "runtime/memory_manager/memory_manager.h"
|
2019-02-20 21:03:04 +08:00
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2019-05-06 16:35:49 +08:00
|
|
|
StorageInfo MemoryManager::createStorageInfoFromProperties(const AllocationProperties &properties) {
|
2019-02-20 21:03:04 +08:00
|
|
|
return {};
|
|
|
|
}
|
2019-03-07 22:14:11 +08:00
|
|
|
uint32_t StorageInfo::getNumHandles() const { return 1u; }
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|