|
简而言之,我想要机器中有两个可用的GPU,它将返回['/ gpu:0','/ gpu:1']。
可以使用以下代码检查所有设备列表:
- <blockquote>from tensorflow.python.client import device_lib
复制代码- from tensorflow.python.client import device_lib
- def get_available_gpus():
- local_device_protos = device_lib.list_local_devices()
- return [x.name for x in local_device_protos if x.device_type == 'GPU']
复制代码
|
|