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