aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/specs
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/specs
parent1255a177c9bdfc073563f5baa39bd3f77577276b (diff)
Switch tf.concat_v2 references in third_party/tensorflow to tf.concat.
Change: 144153795
Diffstat (limited to 'tensorflow/contrib/specs')
-rw-r--r--tensorflow/contrib/specs/python/specs_ops.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/contrib/specs/python/specs_ops.py b/tensorflow/contrib/specs/python/specs_ops.py
index 3cbd87ff5e..a6bd4d16c2 100644
--- a/tensorflow/contrib/specs/python/specs_ops.py
+++ b/tensorflow/contrib/specs/python/specs_ops.py
@@ -62,7 +62,7 @@ class Conc(specs_lib.Composable):
def funcall(self, x):
outputs = [f.funcall(x) for f in self.funs]
- return array_ops.concat_v2(outputs, self.dim)
+ return array_ops.concat(outputs, self.dim)
External = specs_lib.External