You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import torch
a = torch.tensor([2, 2, 3]).cuda(0)
print(a.prod())
works, and returns tensor(12, device='cuda:0').
And the output of python -c "import torch;print(torch.cuda.get_device_capability(0))" is: (8, 9).
My hardware is a GeForce RTX 4070 with CUDA Version: 12.3.
The text was updated successfully, but these errors were encountered:
When I run
inpainting/tests/run_tests.py
I get the following error:I had to install jaxlib 0.4, as explained in #56.
I found the following issue in py torch pytorch/pytorch#87595, but in my case
works, and returns
tensor(12, device='cuda:0')
.And the output of
python -c "import torch;print(torch.cuda.get_device_capability(0))"
is:(8, 9)
.My hardware is a GeForce RTX 4070 with CUDA Version: 12.3.
The text was updated successfully, but these errors were encountered: