Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion onnxruntime/core/providers/shared_library/provider_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ enum TensorProto_DataType : int {
TensorProto_DataType_UINT4 = 21,
TensorProto_DataType_INT4 = 22,
TensorProto_DataType_FLOAT4E2M1 = 23,
TensorProto_DataType_FLOAT8E8M0 = 24,
};

enum TensorProto_DataLocation : int {
Expand All @@ -98,7 +99,8 @@ enum Version : int {
IR_VERSION_2021_7_31 = 8,
IR_VERSION_2023_5_5 = 9,
IR_VERSION_2024_3_25 = 10,
IR_VERSION = 11
IR_VERSION_2025_05_12 = 11,
IR_VERSION = 12
};

enum OperatorStatus : int {
Expand Down
Loading