Files
compute-runtime/shared/source/memory_manager/definitions/storage_info.h
Igor Venevtsev 3859e13322 Split large allocations on Windows due to Wddm limitation
Resolves: NEO-4479

Change-Id: Iffb862a93570a60c2126620d9e5106359acba64a
Signed-off-by: Igor Venevtsev <igor.venevtsev@intel.com>
2020-06-17 12:47:54 +02:00

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