HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
graph_transformer_level.h
Go to the documentation of this file.
1 // Copyright (c) Microsoft Corporation. All rights reserved.
2 // Licensed under the MIT License.
3 
4 #pragma once
5 
6 namespace onnxruntime {
7 
8 // Graph transformer level
9 // refer to docs/ONNX_Runtime_Graph_Optimizations.md for details
10 enum class TransformerLevel : int {
11  Default = 0, // required transformers only
12  Level1, // basic optimizations
13  Level2, // extended optimizations
14  Level3, // layout optimizations
15  // The max level should always be same as the last level.
17 };
18 
19 } // namespace onnxruntime
typedef int(APIENTRYP RE_PFNGLXSWAPINTERVALSGIPROC)(int)