tensorflow select gpu to use code example
Example 1: gpu training tensorflow
import tensorflow as tf
print("Num GPUs Available: ", len(tf.config.experimental.list_physical_devices('GPU')))
Example 2: config allow growth tensorflow
config = tf.ConfigProto()
config.gpu_options.allow_growth=True
sess = tf.Session(config=config)