Skip to content
This repository has been archived by the owner on May 12, 2024. It is now read-only.

Commit

Permalink
schema.fbs update
Browse files Browse the repository at this point in the history
  • Loading branch information
PINTO0309 committed Mar 28, 2022
1 parent f401deb commit 915ef5f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions schema/schema.fbs
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ enum TensorType : byte {
RESOURCE = 13,
VARIANT = 14,
UINT32 = 15,
UINT16 = 16
}

// Custom quantization parameters for experimenting with new quantization
Expand Down Expand Up @@ -384,6 +385,7 @@ enum BuiltinOperator : int32 {
RANDOM_UNIFORM = 148,
MULTINOMIAL = 149,
GELU = 150,
DYNAMIC_UPDATE_SLICE = 151,
}
// LINT.ThenChange(nnapi_linter/linter.proto)

Expand Down Expand Up @@ -505,6 +507,7 @@ union BuiltinOptions {
RandomOptions,
BucketizeOptions,
GeluOptions,
DynamicUpdateSliceOptions,
}

enum Padding : byte { SAME, VALID }
Expand Down Expand Up @@ -1103,6 +1106,9 @@ table GeluOptions {
approximate: bool;
}

table DynamicUpdateSliceOptions {
}

// An OperatorCode can be an enum value (BuiltinOperator) if the operator is a
// builtin, or a string if the operator is custom.
table OperatorCode {
Expand Down

0 comments on commit 915ef5f

Please sign in to comment.