返回 TensorFlow 是否使用 XLA 支持構建。
用法
tf.test.is_built_with_xla()
此方法應僅用於使用 tf.test.TestCase
編寫的測試。一個典型的用法是跳過應該隻使用 XLA 運行的測試。
class MyTest(tf.test.TestCase):
def test_add_on_xla(self):
if not tf.test.is_built_with_xla():
self.skipTest("test is only applicable on XLA")
... @tf.function(jit_compile=True) ... def add(x, y): ... return tf.math.add(x, y) ... ... self.assertEqual(add (tf.ones(()), tf.ones(())), 2.0)
TensorFlow 官方二進製文件是使用 XLA 構建的。
相關用法
- Python tf.test.is_built_with_rocm用法及代碼示例
- Python tf.test.is_built_with_cuda用法及代碼示例
- Python tf.test.is_built_with_gpu_support用法及代碼示例
- Python tf.test.is_gpu_available用法及代碼示例
- Python tf.test.TestCase.assertLogs用法及代碼示例
- 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.compute_gradient用法及代碼示例
- Python tf.test.gpu_device_name用法及代碼示例
- Python tf.test.TestCase.session用法及代碼示例
- Python tf.test.TestCase.create_tempdir用法及代碼示例
- Python tf.tensor_scatter_nd_max用法及代碼示例
- Python tf.tensor_scatter_nd_sub用法及代碼示例
- Python tf.tensor_scatter_nd_update用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.test.is_built_with_xla。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。