aboutsummaryrefslogtreecommitdiff
path: root/schema/tosa.fbs
diff options
context:
space:
mode:
Diffstat (limited to 'schema/tosa.fbs')
-rw-r--r--schema/tosa.fbs9
1 files changed, 3 insertions, 6 deletions
diff --git a/schema/tosa.fbs b/schema/tosa.fbs
index 7b5948b..1a2d952 100644
--- a/schema/tosa.fbs
+++ b/schema/tosa.fbs
@@ -176,7 +176,6 @@ table ConvAttribute {
table TransposeConvAttribute {
out_pad: [int32];
stride: [int32];
- output_shape: [int32];
input_zp: int32;
weight_zp: int32;
local_bound: bool;
@@ -185,7 +184,6 @@ table TransposeConvAttribute {
table PadAttribute {
pad_const: [ubyte] (force_align: 8);
- type: DType;
}
table AxisAttribute {
@@ -193,16 +191,15 @@ table AxisAttribute {
}
table ResizeAttribute {
- scale: [int16];
- offset: [int16];
- border: [int16];
+ scale: [int16] (deprecated);
+ offset: [int16] (deprecated);
+ border: [int16] (deprecated);
mode: ResizeMode;
}
table ClampAttribute {
min_val: [ubyte] (force_align: 8);
max_val: [ubyte] (force_align: 8);
- type: DType;
}
table RescaleAttribute {