tensorflow2中如何设置GPU的使用
程序员文章站
2024-03-11 17:02:43
...
import tensorflow as tf
gpus = tf.config.list_physical_devices("GPU")
print(gpus)
if gpus:
gpu0 = gpus[0] #如果有多个GPU,仅使用第0个GPU
tf.config.experimental.set_memory_growth(gpu0, True) #设置GPU显存用量按需使用
tf.config.set_visible_devices([gpu0],"GPU")
推荐阅读
-
tensorflow2中如何设置GPU的使用
-
在Java的JDBC使用中设置事务回滚的保存点的方法
-
使用Eclipse开发工具如何解决Java Compiler中Annotation Processin不出现的问题
-
在Java的JDBC使用中设置事务回滚的保存点的方法
-
使用Eclipse开发工具如何解决Java Compiler中Annotation Processin不出现的问题
-
如何更快乐的使用Java 8中的Lambda特性
-
如何使用Spring Boot ApplicationRunner解析命令行中的参数
-
在Python的一段程序中如何使用多次事件循环详解
-
python中如何使用正则表达式的非贪婪模式示例
-
python中如何使用正则表达式的集合字符示例