2019-02-15 11:31:47 +01:00
|
|
|
/*
|
2021-05-16 20:51:16 +02:00
|
|
|
* Copyright (C) 2020-2021 Intel Corporation
|
2019-02-15 11:31:47 +01:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
2019-03-07 15:14:11 +01:00
|
|
|
#include <cstdint>
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2019-02-28 16:12:23 +01:00
|
|
|
struct StorageInfo {
|
2020-04-21 13:16:45 +02:00
|
|
|
uint32_t getNumBanks() const;
|
2019-05-10 11:30:07 +02:00
|
|
|
uint32_t getMemoryBanks() const { return 0u; }
|
2020-04-21 13:16:45 +02:00
|
|
|
bool multiStorage = false;
|
2021-05-13 19:42:16 +00:00
|
|
|
bool isLockable = false;
|
2019-02-15 11:31:47 +01:00
|
|
|
};
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|