aboutsummaryrefslogtreecommitdiff
path: root/schema/tosa.fbs
diff options
context:
space:
mode:
Diffstat (limited to 'schema/tosa.fbs')
-rw-r--r--schema/tosa.fbs7
1 files changed, 4 insertions, 3 deletions
diff --git a/schema/tosa.fbs b/schema/tosa.fbs
index cad6db7..0686aa7 100644
--- a/schema/tosa.fbs
+++ b/schema/tosa.fbs
@@ -129,6 +129,7 @@ enum Op:uint32 {
DIV_SHAPE,
COS,
SIN,
+ CAST_STOCHASTIC,
}
union Attribute {
@@ -191,9 +192,9 @@ table AxisAttribute {
}
table ResizeAttribute {
- scale: [int16];
- offset: [int16];
- border: [int16];
+ scale: [int16] (deprecated);
+ offset: [int16] (deprecated);
+ border: [int16] (deprecated);
mode: ResizeMode;
}