mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 18:25:05 +08:00
Resolves: NEO-4479 Change-Id: Iffb862a93570a60c2126620d9e5106359acba64a Signed-off-by: Igor Venevtsev <igor.venevtsev@intel.com>
17 lines
298 B
C++
17 lines
298 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <cstdint>
|
|
namespace NEO {
|
|
struct StorageInfo {
|
|
uint32_t getNumBanks() const;
|
|
uint32_t getMemoryBanks() const { return 0u; }
|
|
bool multiStorage = false;
|
|
};
|
|
} // namespace NEO
|