compute-runtime/shared/source/helpers/device_hierarchy_mode.h

17 lines
204 B
C++

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