“Tensorflow GPU Тест” Ответ

Tensorflow GPU Тест

# 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 Проверьте графический процессор

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

Проверьте GPU в 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 Тест

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

Ответы похожие на “Tensorflow GPU Тест”

Вопросы похожие на “Tensorflow GPU Тест”

Больше похожих ответов на “Tensorflow GPU Тест” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования