compute-runtime/runtime/memory_manager/definitions/storage_info.h

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