aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/schema/schema.fbs
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/lite/schema/schema.fbs')
-rw-r--r--tensorflow/contrib/lite/schema/schema.fbs10
1 files changed, 10 insertions, 0 deletions
diff --git a/tensorflow/contrib/lite/schema/schema.fbs b/tensorflow/contrib/lite/schema/schema.fbs
index 6fcd3e51a4..8ddad4d251 100644
--- a/tensorflow/contrib/lite/schema/schema.fbs
+++ b/tensorflow/contrib/lite/schema/schema.fbs
@@ -118,6 +118,7 @@ enum BuiltinOperator : byte {
DIV = 42,
SQUEEZE = 43,
UNIDIRECTIONAL_SEQUENCE_LSTM = 44,
+ STRIDED_SLICE = 45,
}
// Options for the builtin operators.
@@ -153,6 +154,7 @@ union BuiltinOptions {
DivOptions,
SqueezeOptions,
SequenceRNNOptions,
+ StridedSliceOptions,
}
enum Padding : byte { SAME, VALID }
@@ -340,6 +342,14 @@ table SqueezeOptions {
squeeze_dims:[int];
}
+table StridedSliceOptions {
+ begin_mask: int;
+ end_mask: int;
+ ellipsis_mask: int;
+ new_axis_mask: int;
+ shrink_axis_mask: int;
+}
+
// An OperatorCode can be an enum value (BuiltinOperator) if the operator is a
// builtin, or a string if the operator is custom.
table OperatorCode {