aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/schema/schema.fbs
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-08-01 19:12:02 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-01 19:15:48 -0700
commit3379bae787d73d6db67d66a284bd1a076b2cbdba (patch)
treeb225b7dd4ba91aff03621d722324680b630f671f /tensorflow/contrib/lite/schema/schema.fbs
parent07ef0a28a9ddb5b661c38f383fecd2b3c239468d (diff)
Add logical_and and logical_not to schema.
PiperOrigin-RevId: 207034363
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 8ed98ddaf4..14f88b4c00 100644
--- a/tensorflow/contrib/lite/schema/schema.fbs
+++ b/tensorflow/contrib/lite/schema/schema.fbs
@@ -167,6 +167,8 @@ enum BuiltinOperator : byte {
PACK = 83,
LOGICAL_OR = 84,
ONE_HOT = 85,
+ LOGICAL_AND = 86,
+ LOGICAL_NOT = 87,
}
// Options for the builtin operators.
@@ -232,6 +234,8 @@ union BuiltinOptions {
PackOptions,
LogicalOrOptions,
OneHotOptions,
+ LogicalAndOptions,
+ LogicalNotOptions,
}
enum Padding : byte { SAME, VALID }
@@ -555,6 +559,12 @@ table OneHotOptions {
axis:int;
}
+table LogicalAndOptions {
+}
+
+table LogicalNotOptions {
+}
+
// An OperatorCode can be an enum value (BuiltinOperator) if the operator is a
// builtin, or a string if the operator is custom.
table OperatorCode {