Files
compute-runtime/shared/source/helpers/device_hierarchy_mode.h
Mateusz Jablonski a59ca3d5e8 build: add missing includes
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2025-10-24 08:41:42 +02:00

18 lines
223 B
C++

/*
* Copyright (C) 2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <cstdint>
namespace NEO {
enum class DeviceHierarchyMode : uint32_t {
composite,
flat,
combined
};
};