标签:mem log 申请 dev igp option ref 资源 ace
(1)动态申请显存
config = tf.ConfigProto()
config.gpu_options.allow_growth = True
session = tf.Session(config=config)
(2)限制GPU的使用率
config = tf.ConfigProto()
config.gpu_options.per_process_gpu_memory_fraction = 0.4 #占用40%显存
session = tf.Session(config=config)
CUDA_VISIBLE_DEVICES=0,1 python yourcode.py
https://blog.csdn.net/dcrmg/article/details/79091941
tensorflow中使用tf.ConfigProto()配置Session运行参数&&GPU设备指定
标签:mem log 申请 dev igp option ref 资源 ace
原文地址:https://www.cnblogs.com/laokanblog/p/11120472.html