在配置TensorFlow使用GPU之前,需要確保您的系統符合以下要求:
以下是配置TensorFlow使用GPU的步驟:
import tensorflow as tf
if tf.test.is_gpu_available():
print('GPU is available')
else:
print('GPU is not available')
config = tf.ConfigProto()
config.gpu_options.allow_growth = True
with tf.Session(config=config) as sess:
# Your TensorFlow code here
通過以上步驟,您就可以配置TensorFlow使用GPU來加速計算。