mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 20:39:56 +08:00
16 lines
269 B
C++
16 lines
269 B
C++
/*
|
|
* Copyright (C) 2019-2020 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
|