aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/image
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-01-10 18:21:29 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-01-10 18:46:37 -0800
commit0e226af7eed5e2764aa8acb825af4cd3e06d2452 (patch)
tree895fd53e8292ef7aff8832a9d8e601977d662526 /tensorflow/contrib/image
parent1255a177c9bdfc073563f5baa39bd3f77577276b (diff)
Switch tf.concat_v2 references in third_party/tensorflow to tf.concat.
Change: 144153795
Diffstat (limited to 'tensorflow/contrib/image')
-rw-r--r--tensorflow/contrib/image/python/ops/image_ops.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/contrib/image/python/ops/image_ops.py b/tensorflow/contrib/image/python/ops/image_ops.py
index 23e43e964e..6db3f61a9e 100644
--- a/tensorflow/contrib/image/python/ops/image_ops.py
+++ b/tensorflow/contrib/image/python/ops/image_ops.py
@@ -80,7 +80,7 @@ def rotate(images, angles):
(image_width - 1) + math_ops.cos(angles) *
(image_height - 1))) / 2.0
num_angles = array_ops.shape(angles)[0]
- transforms = array_ops.concat_v2(
+ transforms = array_ops.concat(
values=[
math_ops.cos(angles)[:, None],
-math_ops.sin(angles)[:, None],