import tensorflow as tf import os os.environ["CUDA_VISIBLE_DEVICES"] = ‘0‘ #use GPU with ID=0 config = tf.ConfigProto() config.gpu_options.per_process_gpu_memory_fraction = 0.5 # maximun alloc gpu50% of MEM config.gpu_options.allow_growth = True #allocate dynamically sess = tf.Session(config = config)
原文地址:https://www.cnblogs.com/ywheunji/p/12148434.html
时间: 2024-11-10 21:34:32