aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/g3doc/api_docs/python/array_ops.md
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2016-11-12 11:21:03 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-11-12 11:25:34 -0800
commitd3d8a01b07b5aa9d1068dd6a0a4b04bc1563795b (patch)
treed911d8be2dfc8a41f20f71ff7dbdcfa437d626b0 /tensorflow/g3doc/api_docs/python/array_ops.md
parent74fc5aa9678fd184e747e9a6e66f1561e868622f (diff)
Update generated Python Op docs.
Change: 138972225
Diffstat (limited to 'tensorflow/g3doc/api_docs/python/array_ops.md')
-rw-r--r--tensorflow/g3doc/api_docs/python/array_ops.md48
1 files changed, 0 insertions, 48 deletions
diff --git a/tensorflow/g3doc/api_docs/python/array_ops.md b/tensorflow/g3doc/api_docs/python/array_ops.md
index 25cd1f6887..a3b8075349 100644
--- a/tensorflow/g3doc/api_docs/python/array_ops.md
+++ b/tensorflow/g3doc/api_docs/python/array_ops.md
@@ -3107,51 +3107,3 @@ Compute gradients for a FakeQuantWithMinMaxVarsPerChannel operation.
`sum_per_d(gradients * (inputs > max))`.
-
-## Other Functions and Classes
-- - -
-
-### `tf.listdiff(*args, **kwargs)` {#listdiff}
-
-Computes the difference between two lists of numbers or strings.
-
- Given a list `x` and a list `y`, this operation returns a list `out` that
- represents all values that are in `x` but not in `y`. The returned list `out`
- is sorted in the same order that the numbers appear in `x` (duplicates are
- preserved). This operation also returns a list `idx` that represents the
- position of each `out` element in `x`. In other words:
-
- `out[i] = x[idx[i]] for i in [0, 1, ..., len(out) - 1]`
-
- For example, given this input:
-
- ```prettyprint
- x = [1, 2, 3, 4, 5, 6]
- y = [1, 3, 5]
- ```
-
- This operation would return:
-
- ```prettyprint
- out ==> [2, 4, 6]
- idx ==> [1, 3, 5]
- ```
-
- Args:
- x: A `Tensor`. 1-D. Values to keep.
- y: A `Tensor`. Must have the same type as `x`. 1-D. Values to remove.
- out_idx: An optional `tf.DType` from: `tf.int32, tf.int64`. Defaults to `tf.int32`.
- name: A name for the operation (optional).
-
- Returns:
- A tuple of `Tensor` objects (out, idx).
- out: A `Tensor`. Has the same type as `x`. 1-D. Values present in `x` but not in `y`.
- idx: A `Tensor` of type `out_idx`. 1-D. Positions of `x` values preserved in `out`.
-
-DEPRECATED FUNCTION
-
-THIS FUNCTION IS DEPRECATED. It will be removed after 2016-11-30.
-Instructions for updating:
-This op will be removed after the deprecation date. Please switch to tf.setdiff1d().
-
-