aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/debug
diff options
context:
space:
mode:
authorGravatar Shanqing Cai <cais@google.com>2018-02-06 12:27:02 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-02-06 12:51:02 -0800
commita9a8dbc3d28c99eccb0cc5bccb32f06594b279db (patch)
treea9c40ad41134cdfe0f87bdfaaa808c47f737e199 /tensorflow/python/debug
parent87b29b7f3768328f02170aeb4338dd232be00248 (diff)
tfdbg: deflake session_debug_file_test
by disabling grappler in the test. PiperOrigin-RevId: 184721353
Diffstat (limited to 'tensorflow/python/debug')
-rw-r--r--tensorflow/python/debug/lib/session_debug_testlib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/python/debug/lib/session_debug_testlib.py b/tensorflow/python/debug/lib/session_debug_testlib.py
index 20a40018bf..f4fac14019 100644
--- a/tensorflow/python/debug/lib/session_debug_testlib.py
+++ b/tensorflow/python/debug/lib/session_debug_testlib.py
@@ -988,7 +988,7 @@ class SessionDebugTestBase(test_util.TensorFlowTestCase):
def testWatchingVariableUpdateOpsSeesUpdatedValues(self):
"""Watch output slots on Variable-updating ops, with no emitted edges."""
- with session.Session() as sess:
+ with session.Session(config=no_rewrite_session_config()) as sess:
u_init = constant_op.constant(10.0)
u = variables.Variable(u_init, name="gdo/u")
v_init = constant_op.constant(20.0)