aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/g3doc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-06-07 02:05:06 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-06-07 02:07:45 -0700
commitc70b7128bfb9f0283c60bbec8fd7b0c12f741d95 (patch)
tree49a75161cb036b87817436d2bad9b79bfbb61425 /tensorflow/contrib/lite/g3doc
parentc2368f875b53e9144a1803a3e67c5a61aa9c5862 (diff)
Implementation of TensorFlowEqual and TensorFlowNotEqual.
PiperOrigin-RevId: 199602232
Diffstat (limited to 'tensorflow/contrib/lite/g3doc')
-rw-r--r--tensorflow/contrib/lite/g3doc/tf_ops_compatibility.md30
1 files changed, 26 insertions, 4 deletions
diff --git a/tensorflow/contrib/lite/g3doc/tf_ops_compatibility.md b/tensorflow/contrib/lite/g3doc/tf_ops_compatibility.md
index 27e7d25bf1..19145281fa 100644
--- a/tensorflow/contrib/lite/g3doc/tf_ops_compatibility.md
+++ b/tensorflow/contrib/lite/g3doc/tf_ops_compatibility.md
@@ -95,11 +95,7 @@ Here is a list of TensorFlow operations that are usually removed from the graph:
* [tf.divide](https://www.tensorflow.org/api_docs/python/tf/divide)
* [tf.fake_quant_with_min_max_args](https://www.tensorflow.org/api_docs/python/tf/fake_quant_with_min_max_args)
* [tf.fake_quant_with_min_max_vars](https://www.tensorflow.org/api_docs/python/tf/fake_quant_with_min_max_vars)
-* [tf.greater](https://www.tensorflow.org/api_docs/python/tf/greater)
-* [tf.greater_equal](https://www.tensorflow.org/api_docs/python/tf/greater_equal)
* [tf.identity](https://www.tensorflow.org/api_docs/python/tf/identity)
-* [tf.less](https://www.tensorflow.org/api_docs/python/tf/less)
-* [tf.less_equal](https://www.tensorflow.org/api_docs/python/tf/less_equal)
* [tf.maximum](https://www.tensorflow.org/api_docs/python/tf/maximum)
* [tf.minimum](https://www.tensorflow.org/api_docs/python/tf/minimum)
* [tf.multiply](https://www.tensorflow.org/api_docs/python/tf/multiply)
@@ -258,6 +254,19 @@ Options {
}
```
+**EQUAL**
+
+```
+Inputs {
+ 0: a tensor
+ 1: a tensor
+}
+Outputs {
+ 0: a tensor of type bool, true whenever an element of the first tensor is
+ equal to the corresponding element of the second tensor.
+}
+```
+
**EXP**
```
@@ -491,6 +500,19 @@ Options {
}
```
+**NOT_EQUAL**
+
+```
+Inputs {
+ 0: a tensor
+ 1: a tensor
+}
+Outputs {
+ 0: a tensor of type bool, true whenever an element of the first tensor is not
+ equal to the corresponding element of the second tensor.
+}
+```
+
**RELU**
```