mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 09:09:04 +08:00
Related-To: NEO-2906 Change-Id: I3172e9551b8d06437c273b122dc6e9d529155b5c Signed-off-by: Pawel Wilma <pawel.wilma@intel.com>
16 lines
264 B
C++
16 lines
264 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <cstdint>
|
|
namespace NEO {
|
|
struct StorageInfo {
|
|
uint32_t getNumHandles() const;
|
|
uint32_t getMemoryBanks() const { return 0u; }
|
|
};
|
|
} // namespace NEO
|