Disable remote eager benchmarks
PiperOrigin-RevId: 268599883
diff --git a/tensorflow/python/eager/benchmarks_test.py b/tensorflow/python/eager/benchmarks_test.py
index 87ce601..3b65d12 100644
--- a/tensorflow/python/eager/benchmarks_test.py
+++ b/tensorflow/python/eager/benchmarks_test.py
@@ -1115,7 +1115,8 @@
wall_time=mean_us,
extras={"examples_per_sec": num_iters / total_time})
- def benchmark_send_mirroring_off(self):
+ # TODO(b/136184459): Re-enabled once crash is fixed
+ def _DISABLED_benchmark_send_mirroring_off(self):
remote.connect_to_remote_host(self._cached_server_target1)
x = random_ops.random_uniform((2, 2)).cpu()
@@ -1135,7 +1136,8 @@
# executed when their corresponding device and manager are still available.
gc.collect()
- def benchmark_send_mirroring_on(self):
+ # TODO(b/136184459): Re-enabled once crash is fixed
+ def _DISABLED_benchmark_send_mirroring_on(self):
remote.connect_to_remote_host(self._cached_server_target1)
x = random_ops.random_uniform((2, 2)).cpu()
@@ -1155,7 +1157,8 @@
# executed when their corresponding device and manager are still available.
gc.collect()
- def benchmark_worker_mirroring_off(self):
+ # TODO(b/136184459): Re-enabled once crash is fixed
+ def _DISABLED_benchmark_worker_mirroring_off(self):
remote.connect_to_remote_host(
[self._cached_server_target1, self._cached_server_target2])
@@ -1177,7 +1180,8 @@
# executed when their corresponding device and manager are still available.
gc.collect()
- def benchmark_worker_mirroring_on(self):
+ # TODO(b/136184459): Re-enabled once crash is fixed
+ def _DISABLED_benchmark_worker_mirroring_on(self):
remote.connect_to_remote_host(
[self._cached_server_target1, self._cached_server_target2])