aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/copy_graph
diff options
context:
space:
mode:
authorGravatar Andrew Selle <aselle@google.com>2016-12-16 07:22:59 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-12-16 07:43:07 -0800
commitb183b6d0c8ff5ddf0cc48f21fc03341bf56c75f7 (patch)
tree0756257bf3bc732cb5e7739dcca62e2c8b0b8727 /tensorflow/contrib/copy_graph
parent709ee95325f0814100e5b6378d4405020cf9d8b8 (diff)
Change remaining tf.mul -> tf.multiply, tf.neg -> tf.negative, and tf.sub -> tf.subtract
tf.negative, tf.multiply, tf.subtract are the new names Change: 142257628
Diffstat (limited to 'tensorflow/contrib/copy_graph')
-rw-r--r--tensorflow/contrib/copy_graph/python/util/copy_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/contrib/copy_graph/python/util/copy_test.py b/tensorflow/contrib/copy_graph/python/util/copy_test.py
index 68865fab49..fd39af6061 100644
--- a/tensorflow/contrib/copy_graph/python/util/copy_test.py
+++ b/tensorflow/contrib/copy_graph/python/util/copy_test.py
@@ -72,7 +72,7 @@ class CopyOpsTest(tf.test.TestCase):
x = tf.placeholder("float")
a = tf.Variable(3.0)
b = tf.constant(4.0)
- ax = tf.mul(x, a)
+ ax = tf.multiply(x, a)
y = tf.add(ax, b)
#Initialize session
sess1 = tf.Session()