Files
compute-runtime/runtime/memory_manager/definitions/storage_info.cpp
Mateusz Jablonski 6abc3f7d9b Add logic to create wddm allocation with many handles
Change-Id: I1eeffddf7108183ad867d2b05d313f0cf6941c01
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2019-03-21 11:28:55 +01:00

16 lines
364 B
C++

/*
* Copyright (C) 2019 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "runtime/memory_manager/graphics_allocation.h"
namespace OCLRT {
StorageInfo GraphicsAllocation::createStorageInfoFromProperties(const AllocationProperties &properties) {
return {};
}
uint32_t StorageInfo::getNumHandles() const { return 1u; }
} // namespace OCLRT