aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/g3doc/tf_ops_compatibility.md
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-05-07 15:41:22 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-05-07 17:27:20 -0700
commitfc7f0b296dd53d1b72af21d36d36b6bcc5291ea7 (patch)
tree46e76ead2391a3fb1232459189ad0b8d0d8066ac /tensorflow/contrib/lite/g3doc/tf_ops_compatibility.md
parent3a2f1cfb73fa6a21eba077485bdc08aa05646ad1 (diff)
Add support for select (via tf.where) support to tflite.
PiperOrigin-RevId: 195734246
Diffstat (limited to 'tensorflow/contrib/lite/g3doc/tf_ops_compatibility.md')
-rw-r--r--tensorflow/contrib/lite/g3doc/tf_ops_compatibility.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/tensorflow/contrib/lite/g3doc/tf_ops_compatibility.md b/tensorflow/contrib/lite/g3doc/tf_ops_compatibility.md
index fc57b8f28b..f45fcceb2e 100644
--- a/tensorflow/contrib/lite/g3doc/tf_ops_compatibility.md
+++ b/tensorflow/contrib/lite/g3doc/tf_ops_compatibility.md
@@ -639,6 +639,20 @@ Outputs {
}
```
+**SELECT**
+
+```
+Inputs {
+ 0: tensor
+ 1: tensor
+ 2: tensor
+}
+Outputs {
+ 0: tensor that contains the elementwise values of 'tensor 1' if the
+ corresponding value of 'tensor 0' is true or the value of 'tensor 2' if false.
+}
+```
+
And these are TensorFlow Lite operations that are present but not ready for
custom models yet: