“Tensorflow GPU -Test” Code-Antworten

Tensorflow GPU -Test

# 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

Überprüfen Sie die GPU in 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

Tensorflow GPU -Test

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

Ähnliche Antworten wie “Tensorflow GPU -Test”

Fragen ähnlich wie “Tensorflow GPU -Test”

Weitere verwandte Antworten zu “Tensorflow GPU -Test” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen