aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/platform/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/platform/test.py')
-rw-r--r--tensorflow/python/platform/test.py10
1 files changed, 1 insertions, 9 deletions
diff --git a/tensorflow/python/platform/test.py b/tensorflow/python/platform/test.py
index 0001eb65e1..452b8f5d3b 100644
--- a/tensorflow/python/platform/test.py
+++ b/tensorflow/python/platform/test.py
@@ -42,6 +42,7 @@ from tensorflow.python.util.all_util import remove_undocumented
# pylint: disable=unused-import
from tensorflow.python.framework.test_util import assert_equal_graph_def
from tensorflow.python.framework.test_util import TensorFlowTestCase as TestCase
+from tensorflow.python.framework.test_util import gpu_device_name
from tensorflow.python.ops.gradient_checker import compute_gradient_error
from tensorflow.python.ops.gradient_checker import compute_gradient
@@ -107,15 +108,6 @@ def is_gpu_available(cuda_only=False):
return any((x.device_type == 'GPU' or x.device_type == 'SYCL')
for x in _device_lib.list_local_devices())
-
-def gpu_device_name():
- """Returns the name of a GPU device if available or the empty string."""
- for x in _device_lib.list_local_devices():
- if x.device_type == 'GPU' or x.device_type == 'SYCL':
- return x.name
- return ''
-
-
_allowed_symbols = [
# We piggy-back googletest documentation.
'Benchmark',