29 lines
676 B
C
29 lines
676 B
C
// SPDX-FileCopyrightText: 2022-2026 Arm Ltd.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#ifndef SPIRV_UNIFIED1_NonSemanticGraphDebugInfo_H_
|
|
#define SPIRV_UNIFIED1_NonSemanticGraphDebugInfo_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
enum {
|
|
NonSemanticGraphDebugInfoRevision = 1,
|
|
NonSemanticGraphDebugInfoRevision_BitWidthPadding = 0x7fffffff
|
|
};
|
|
|
|
enum NonSemanticGraphDebugInfoInstructions {
|
|
NonSemanticGraphDebugInfoDebugGraph = 1,
|
|
NonSemanticGraphDebugInfoDebugOperation = 2,
|
|
NonSemanticGraphDebugInfoDebugTensor = 3,
|
|
NonSemanticGraphDebugInfoInstructionsMax = 0x7fffffff
|
|
};
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // SPIRV_UNIFIED1_NonSemanticGraphDebugInfo_H_
|