aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/schema/schema.fbs
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-05-08 22:49:20 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-05-09 10:41:25 -0700
commiteac758802e66934a6fde4e23fd92023780a5c075 (patch)
treebdef3d3c378bafae1f1908d8e3b89523046cd87e /tensorflow/contrib/lite/schema/schema.fbs
parent7bd992b02c0a19ce7aa9c085ab5caa0e00fe2516 (diff)
Implementation of Slice.
PiperOrigin-RevId: 195926057
Diffstat (limited to 'tensorflow/contrib/lite/schema/schema.fbs')
-rw-r--r--tensorflow/contrib/lite/schema/schema.fbs5
1 files changed, 5 insertions, 0 deletions
diff --git a/tensorflow/contrib/lite/schema/schema.fbs b/tensorflow/contrib/lite/schema/schema.fbs
index 9de6180874..5eeea7a8fc 100644
--- a/tensorflow/contrib/lite/schema/schema.fbs
+++ b/tensorflow/contrib/lite/schema/schema.fbs
@@ -142,6 +142,7 @@ enum BuiltinOperator : byte {
GREATER_EQUAL = 62,
LESS_EQUAL = 63,
SELECT = 64,
+ SLICE = 65,
}
// Options for the builtin operators.
@@ -193,6 +194,7 @@ union BuiltinOptions {
GreaterEqualOptions,
LessEqualOptions,
SelectOptions,
+ SliceOptions,
}
enum Padding : byte { SAME, VALID }
@@ -436,6 +438,9 @@ table NegOptions {
table SelectOptions {
}
+table SliceOptions {
+}
+
// An OperatorCode can be an enum value (BuiltinOperator) if the operator is a
// builtin, or a string if the operator is custom.
table OperatorCode {