Llama-2-13B / system /tensorflow_check.py
jordigonzm's picture
check installation files
8d4d3e5
raw
history blame
No virus
254 Bytes
import tensorflow as tf
gpus = tf.config.list_physical_devices('GPU')
if gpus:
print(f"Detected {len(gpus)} GPU(s):")
for gpu in gpus:
print(f" - {gpu.name}")
else:
print("No GPUs detected by TensorFlow. Check your configuration.")