2019-02-20 14:03:04 +01:00
|
|
|
/*
|
2020-01-21 11:00:03 +01:00
|
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
2019-02-20 14:03:04 +01:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/memory_manager/memory_manager.h"
|
2019-02-20 14:03:04 +01:00
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2019-05-06 10:35:49 +02:00
|
|
|
StorageInfo MemoryManager::createStorageInfoFromProperties(const AllocationProperties &properties) {
|
2019-02-20 14:03:04 +01:00
|
|
|
return {};
|
|
|
|
|
}
|
2020-04-21 13:16:45 +02:00
|
|
|
uint32_t StorageInfo::getNumBanks() const { return 1u; }
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|