summarylogtreecommitdiffstats
path: root/test.py
blob: ad85762881ac3f571cc537e2cb3936d606367b50 (plain)
1
2
3
4
5
6
7
#!/usr/bin/env python

import torch

d = torch.device('cuda')
a = torch.rand(1, 2).to(d)
print(a + 0)