【发布时间】:2020-10-23 22:53:03
【问题描述】:
我正在尝试根据 TPU 的可用性选择分发策略。
我的代码如下:
import tensorflow as tf
if tf.config.list_physical_devices('tpu'):
resolver = tf.distribute.cluster_resolver.TPUClusterResolver()
tf.config.experimental_connect_to_cluster(resolver)
tf.tpu.experimental.initialize_tpu_system(resolver)
print("All devices: ", tf.config.list_logical_devices('TPU'))
strategy = tf.distribute.experimental.TPUStrategy(resolver)
else: # use default strategy
strategy = tf.distribute.get_strategy()
但它不起作用。
如何识别 TPU?
【问题讨论】:
标签: tensorflow google-colaboratory tensorflow2.0 tpu