I have a tensor
t = torch.zeros((4, 5, 6))
How to check if it is on gpu or not, and send it to gpu and back?
From the pytorch forum
use t.is_cuda
, t.cuda()
, t.cpu()
t = torch.randn(2,2)
t.is_cuda # returns False
t = torch.randn(2,2).cuda()
t.is_cuda # returns True
t = t.cpu()
t.is_cuda # returns False
When passing to and from gpu and cpu, new arrays are allocated on the relevant device.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With