Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 0 additions & 42 deletions tensorboard/plugins/debugger_v2/debugger_v2_plugin_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -793,12 +793,6 @@ def testServeExecutionDataObjectsOutOfBoundsError(self):
)

def testServeGraphExecutionDigestsPartialRange(self):
self.skipTest(
"Temporarily disabled while internal Tensorflow "
"changes are made. Googlers see b/264288347. This "
"should be reenabled after the changes make it into "
"tf-nightly"
)
_generate_tfdbg_v2_data(self.logdir)
run = self._getExactlyOneRun()
response = self.server.get(
Expand Down Expand Up @@ -848,12 +842,6 @@ def testServeGraphExecutionDigestsPartialRange(self):
self.assertTrue(digests[3]["graph_id"])

def testServeGraphExecutionDigestsImplicitFullRange(self):
self.skipTest(
"Temporarily disabled while internal Tensorflow "
"changes are made. Googlers see b/264288347. This "
"should be reenabled after the changes make it into "
"tf-nightly"
)
_generate_tfdbg_v2_data(self.logdir)
run = self._getExactlyOneRun()
response = self.server.get(
Expand All @@ -878,12 +866,6 @@ def testServeGraphExecutionDigestsImplicitFullRange(self):
self.assertTrue(digests[-1]["graph_id"])

def testServeGraphExecutionDigestOutOfBoundsError(self):
self.skipTest(
"Temporarily disabled while internal Tensorflow "
"changes are made. Googlers see b/264288347. This "
"should be reenabled after the changes make it into "
"tf-nightly"
)
_generate_tfdbg_v2_data(self.logdir)
run = self._getExactlyOneRun()

Expand Down Expand Up @@ -933,12 +915,6 @@ def testServeGraphExecutionDigestOutOfBoundsError(self):
)

def testServeASingleGraphExecutionDataObject(self):
self.skipTest(
"Temporarily disabled while internal Tensorflow "
"changes are made. Googlers see b/264288347. This "
"should be reenabled after the changes make it into "
"tf-nightly"
)
_generate_tfdbg_v2_data(self.logdir, tensor_debug_mode="CONCISE_HEALTH")
run = self._getExactlyOneRun()
response = self.server.get(
Expand All @@ -965,12 +941,6 @@ def testServeASingleGraphExecutionDataObject(self):
self.assertEndsWith(graph_exec["device_name"], _DEFAULT_DEVICE_SUFFIX)

def testServeMultipleGraphExecutionDataObjects(self):
self.skipTest(
"Temporarily disabled while internal Tensorflow "
"changes are made. Googlers see b/264288347. This "
"should be reenabled after the changes make it into "
"tf-nightly"
)
_generate_tfdbg_v2_data(self.logdir, tensor_debug_mode="CONCISE_HEALTH")
run = self._getExactlyOneRun()
response = self.server.get(
Expand Down Expand Up @@ -1022,12 +992,6 @@ def testServeMultipleGraphExecutionDataObjects(self):
self.assertEndsWith(graph_exec["device_name"], _DEFAULT_DEVICE_SUFFIX)

def testServeGraphExecutionDataObjectsOutOfBoundsError(self):
self.skipTest(
"Temporarily disabled while internal Tensorflow "
"changes are made. Googlers see b/264288347. This "
"should be reenabled after the changes make it into "
"tf-nightly"
)
_generate_tfdbg_v2_data(self.logdir)
run = self._getExactlyOneRun()

Expand Down Expand Up @@ -1314,12 +1278,6 @@ def testServeGraphOpInfoForOpWithNoConsumers(self):

def testServeGraphOpInfoForOpWithNoInputs(self):
"""Get the op info of an op with no inputs."""
self.skipTest(
"Temporarily disabled while internal Tensorflow "
"changes are made. Googlers see b/264288347. This "
"should be reenabled after the changes make it into "
"tf-nightly"
)
_generate_tfdbg_v2_data(self.logdir)
run = self._getExactlyOneRun()
response = self.server.get(
Expand Down