aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-09-05 20:22:34 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-09-05 20:27:03 -0700
commitf4ae136265d3d3116a008b98ccf21d0791b878fd (patch)
treeb8621be229f46bff4c8e51b291a573603df81e02
parent19ac7a58287b90e1cd73c8e34438a8db915f481b (diff)
Fix ordering of tf.GraphKeys.VARIABLES line in renames_v2.py
PiperOrigin-RevId: 211744058
-rw-r--r--tensorflow/tools/compatibility/renames_v2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/tools/compatibility/renames_v2.py b/tensorflow/tools/compatibility/renames_v2.py
index 29c62763b0..7e66ad816a 100644
--- a/tensorflow/tools/compatibility/renames_v2.py
+++ b/tensorflow/tools/compatibility/renames_v2.py
@@ -65,9 +65,9 @@ renames = {
'tf.fft': 'tf.spectral.fft',
'tf.floor': 'tf.math.floor',
'tf.gather_nd': 'tf.manip.gather_nd',
+ 'tf.GraphKeys.VARIABLES': 'tf.GraphKeys.GLOBAL_VARIABLES',
'tf.greater': 'tf.math.greater',
'tf.greater_equal': 'tf.math.greater_equal',
- 'tf.GraphKeys.VARIABLES': 'tf.GraphKeys.GLOBAL_VARIABLES',
'tf.ifft': 'tf.spectral.ifft',
'tf.igamma': 'tf.math.igamma',
'tf.igammac': 'tf.math.igammac',