mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 18:25:05 +08:00
17 lines
187 B
C++
17 lines
187 B
C++
/*
|
|
* Copyright (C) 2025 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace NEO {
|
|
enum DeviceHierarchyMode {
|
|
COMPOSITE,
|
|
FLAT,
|
|
COMBINED
|
|
};
|
|
};
|