/* * Copyright (C) 2020-2021 Intel Corporation * * SPDX-License-Identifier: MIT * */ #pragma once #include "shared/source/helpers/bit_helpers.h" #include "shared/source/memory_manager/allocation_properties.h" #include "opencl/extensions/public/cl_ext_private.h" #include "memory_properties_flags.h" namespace NEO { class Context; class MemoryPropertiesHelper { public: enum class ObjType { UNKNOWN, BUFFER, IMAGE, }; static void addExtraMemoryProperties(MemoryProperties &properties, cl_mem_flags flags, cl_mem_flags_intel flagsIntel, const Device *pDevice); static MemoryProperties createMemoryProperties(cl_mem_flags flags, cl_mem_flags_intel flagsIntel, cl_mem_alloc_flags_intel allocflags, const Device *pDevice); static bool parseMemoryProperties(const cl_mem_properties_intel *properties, MemoryProperties &memoryProperties, cl_mem_flags &flags, cl_mem_flags_intel &flagsIntel, cl_mem_alloc_flags_intel &allocflags, ObjType objectType, Context &context); static AllocationProperties getAllocationProperties( uint32_t rootDeviceIndex, MemoryProperties memoryProperties, bool allocateMemory, size_t size, GraphicsAllocation::AllocationType type, bool multiStorageResource, const HardwareInfo &hwInfo, DeviceBitfield subDevicesBitfieldParam, bool deviceOnlyVisibilty); static DeviceBitfield adjustDeviceBitfield(uint32_t rootDeviceIndex, const MemoryProperties &memoryProperties, DeviceBitfield subDevicesBitfieldParam); static void fillPoliciesInProperties(AllocationProperties &allocationProperties, const MemoryProperties &memoryProperties, const HardwareInfo &hwInfo, bool deviceOnlyVisibilty); static void fillCachePolicyInProperties(AllocationProperties &allocationProperties, bool uncached, bool readOnly, bool deviceOnlyVisibilty, uint32_t cacheRegion); static uint32_t getCacheRegion(const MemoryProperties &memoryProperties); }; } // namespace NEO