top of page
Search

Project 4a - TensorFlow with CUDA support

  • Writer: James Canova
    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





 
 
 

Recent Posts

See All
Introduction

I became interested in artificial intelligence in mid 2021 after watching a documentary on this subject. In particular, I'm interested in...

 
 
 
References

1.Rashid, Tariq, Make Your Own Neural Network , Amazon , 2016 2.Portilla, Jose, "Python for Computer Vision with OpenCV and Deep...

 
 
 
Status of Projects

Last updated: 30 March 2024 Project 0: Read this to get a very basic understating on machine learning and neural networks. Project 1:...

 
 
 

Comentarios


Post: Blog posts

©2021 by My Machine Learning Blog. Proudly created with Wix.com

bottom of page