mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 00:24:58 +08:00
18 lines
223 B
C++
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
|
|
};
|
|
};
|