“prueba de GPU de tensorflow” Código de respuesta

prueba de GPU de tensorflow

# As it's written in Tensorflow documentatoin: 

import tensorflow as tf
print("Num GPUs Available: ", len(tf.config.experimental.list_physical_devices('GPU')))
Ugly Unicorn

TensorFlow Check GPU

tf.config.list_physical_devices('GPU')
Splendid Scarab

Consulte GPU en TensorFlow

# 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))
Lazy Lizard

prueba de GPU de tensorflow

tf.test.is_gpu_available(
  cuda_only=False, min_cuda_compute_capability=None
)
Witty Whale

Respuestas similares a “prueba de GPU de tensorflow”

Preguntas similares a “prueba de GPU de tensorflow”

Más respuestas relacionadas con “prueba de GPU de tensorflow” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código