Skip to content

Commit 2e7fb96

Browse files
authored
[res/CircleSchema] Update circle_schema.fbs in 0.10 (#16241)
It updates res/CircleSchema/0.10/circle_schema.fbs. It is required to update circle-schema python package. ONE-DCO-1.0-Signed-off-by: Sanggyu Lee <sg5.lee@samsung.com>
1 parent 9381924 commit 2e7fb96

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

res/CircleSchema/0.10/circle_schema.fbs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
// ROPE op is added. MXFP4, MXINT8 types are added.
3838
// MXQuantization is added.
3939
// Version 0.10: Base up to TensorFlow Lite v2.20.0 schema. RUN_MODEL op is added.
40+
// ATTENTION op is added.
4041

4142
namespace circle;
4243

@@ -317,6 +318,7 @@ table Tensor {
317318
// set of acceptable options.
318319
// LINT.IfChange
319320
enum BuiltinOperator : int32 {
321+
ATTENTION = -9,
320322
RUN_MODEL = -8,
321323
ROPE = -7,
322324
RMS_NORM = -6,
@@ -673,6 +675,7 @@ union BuiltinOptions {
673675
BitcastOptions,
674676
BitwiseXorOptions,
675677
RightShiftOptions,
678+
AttentionOptions = 247,
676679
RunModelOptions = 248,
677680
RoPEOptions = 249,
678681
RmsNormOptions = 250,
@@ -1588,6 +1591,9 @@ table RunModelOptions {
15881591
signature:string;
15891592
}
15901593

1594+
table AttentionOptions {
1595+
}
1596+
15911597
// An OperatorCode can be an enum value (BuiltinOperator) if the operator is a
15921598
// builtin, or a string if the operator is custom.
15931599
table OperatorCode {

0 commit comments

Comments
 (0)