Published
- 1 min read
check gpu in tensorflow
The solution for this is noted below
check gpu in tensorflow
Solution
# For tensorflow 2:
print("Num GPUs Available: ", len(tf.config.list_physical_devices('GPU')))
# For tensorflow 1:
sess = tf.Session(config=tf.ConfigProto(log_device_placement=True))
Try other methods by searching on the site. That is if this doesn’t work