Project 4a - TensorFlow with CUDA support
- James Canova
- Sep 12, 2021
- 1 min read
Project start date: 28 December 2021
Project finish date: 28 December 2021
Objective: Installation of TensorFlow with CUDA support in VEnv
I found that TensorFlow is already CUDA enabled:
in VEnv:
python3
>>>import tensorflow as tf
>>>print("TensorFlow version: "tf.__version__)
->TensorFlow version: 2.5.0
>>>count = tf.cuda.getCudaEnabledDeviceCount()
print(count)
->1
In Python3:
>>import tensorflow as tf
>>print("TensorFlow version: "tf.__version__)
→TensorFlow version: 2.5.0
>>print("# GPUs Available: ", len(tf.config.experimental.list_physical_devices('GPU')))
→GPUs Available: 1
If you have any problems or need clarification please contact me: jscanova@gmail.com
Comentarios