“pytorch verifique se o tensor está na GPU” Respostas de código

Tensorflow Check GPU

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

Pytorch Verifique a GPU

In [1]: import torch

In [2]: torch.cuda.current_device()
Out[2]: 0

In [3]: torch.cuda.device(0)
Out[3]: <torch.cuda.device at 0x7efce0b03be0>

In [4]: torch.cuda.device_count()
Out[4]: 1

In [5]: torch.cuda.get_device_name(0)
Out[5]: 'GeForce GTX 950M'

In [6]: torch.cuda.is_available()
Out[6]: True
Worrisome Weasel

Verifique a GPU no 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

pytorch verifique se o tensor está na GPU

tensor.is_cuda 
Jolly Jellyfish

Respostas semelhantes a “pytorch verifique se o tensor está na GPU”

Perguntas semelhantes a “pytorch verifique se o tensor está na GPU”

Mais respostas relacionadas para “pytorch verifique se o tensor está na GPU” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código