返回 GPU 设备的名称(如果可用)或空字符串。
用法
tf.test.gpu_device_name()
此方法应仅用于使用 tf.test.TestCase
编写的测试。
class MyTest(tf.test.TestCase):
def test_add_on_gpu(self):
if not tf.test.is_built_with_gpu_support():
self.skipTest("test is only applicable on GPU")
with tf.device(tf.test.gpu_device_name()):
self.assertEqual(tf.math.add(1.0, 2.0), 3.0)
相关用法
- Python tf.test.is_built_with_rocm用法及代码示例
- Python tf.test.TestCase.assertLogs用法及代码示例
- Python tf.test.is_gpu_available用法及代码示例
- Python tf.test.TestCase.assertItemsEqual用法及代码示例
- Python tf.test.TestCase.assertWarns用法及代码示例
- Python tf.test.TestCase.create_tempfile用法及代码示例
- Python tf.test.TestCase.cached_session用法及代码示例
- Python tf.test.TestCase.captureWritesToStream用法及代码示例
- Python tf.test.create_local_cluster用法及代码示例
- Python tf.test.TestCase.assertCountEqual用法及代码示例
- Python tf.test.TestCase.assertRaises用法及代码示例
- Python tf.test.is_built_with_cuda用法及代码示例
- Python tf.test.compute_gradient用法及代码示例
- Python tf.test.TestCase.session用法及代码示例
- Python tf.test.TestCase.create_tempdir用法及代码示例
- Python tf.test.is_built_with_gpu_support用法及代码示例
- Python tf.test.is_built_with_xla用法及代码示例
- Python tf.tensor_scatter_nd_max用法及代码示例
- Python tf.tensor_scatter_nd_sub用法及代码示例
- Python tf.tensor_scatter_nd_update用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.test.gpu_device_name。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。