Files
compute-runtime/shared/source/memory_manager/definitions/storage_info.h
Mateusz Jablonski ed31aaedb8 Make BUFFER allocation lockable on DG1
Related-To: NEO-5733
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2021-05-21 17:05:51 +02:00

18 lines
327 B
C++

/*
* Copyright (C) 2020-2021 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;
bool isLockable = false;
};
} // namespace NEO