User Tools

Site Tools


tutoriais:conda

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
tutoriais:conda [2024-04-16 18:54] – [Tensorflow] gnanntutoriais:conda [2024-04-16 19:32] gnann
Line 25: Line 25:
 ===== Tensorflow ===== ===== Tensorflow =====
 <code bash> <code bash>
-python=3.9 +DISCLAIMER: versão 2.4 ! 
-conda install tensorflow-gpu numpy=1.23.4+conda install tensorflow-gpu numpy=1.23
 </code> </code>
  
 <code python> <code python>
 import tensorflow as tf import tensorflow as tf
-sys_details = tf.sysconfig.get_build_info() +cuda_version = tf.sysconfig.get_build_info()["cuda_version"
-cuda_version = sys_details["cuda_version"+gpu = tf.test.gpu_device_name()
-gpu = tf.config.list_physical_devices('GPU')+
  
-print("GPU: "+print("GPU: "+gpu)
-print(gpu)+
 print("cuda: "+cuda_version) print("cuda: "+cuda_version)
 </code> </code>
Line 44: Line 42:
 # python do sistema # python do sistema
 conda install pytorch-gpu conda install pytorch-gpu
 +</code>
 +
 +<code python>
 +import torch
 +
 +print("gpu: "+torch.cuda.get_device_name(0))
 +print("cuda: "+torch.version.cuda)
 </code> </code>
tutoriais/conda.txt · Last modified: 2024-04-16 19:33 by gnann

Except where otherwise noted, content on this wiki is licensed under the following license: Public Domain
Public Domain Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki