Files
compute-runtime/shared/source/memory_properties/memory_properties_flags.h
Daniel Chabrowski eaba246464 Test prelim command stream and clos cache
Signed-off-by: Daniel Chabrowski daniel.chabrowski@intel.com
Related-To: NEO-6591
2022-04-05 16:48:00 +02:00

30 lines
704 B
C++

/*
* Copyright (C) 2019-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "shared/source/memory_properties/memory_properties_flags_common.inl"
namespace NEO {
class Device;
struct MemoryProperties {
const Device *pDevice = nullptr;
uint32_t memCacheClos = 0;
union {
MemoryFlags flags;
uint32_t allFlags = 0;
};
union {
MemoryAllocFlags allocFlags;
uint32_t allAllocFlags = 0;
};
uintptr_t hostptr = 0;
static_assert(sizeof(MemoryProperties::flags) == sizeof(MemoryProperties::allFlags) && sizeof(MemoryProperties::allocFlags) == sizeof(MemoryProperties::allAllocFlags), "");
};
} // namespace NEO