Replies: 1 comment 2 replies
-
You can install PyTorch 1.9.0 from NVIDIA-built wheels - see https://forums.developer.nvidia.com/t/pytorch-for-jetson-version-1-10-now-available/72048/500 |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've been having some issues trying to get this to work on the Jetson Nano. It seems like it would be a great candidate for this since it has 128 GPU cores.
Firstly I had to tweak some of the versions in the requirements.txt as some of those versions don't seem to be available or compatible on the Nano. For instance I had to downgrade to numpy1.19.4 cause that works on the Nano.
So I finally got he script to run...
But the big issue I seem to be running into now is that the software doesn't see the GPU.
I got it to see the GPU once. I think with torch 1.8.0 and CUDA 11.0 or 10.2 but it failed because I think the script needs torch 1.9.0 to function. But everytime I install torch 1.9.0 I loose CUDA support.
torch.cuda.is_available() keeps coming up false.
maybe this just won't work on the Jetson Nano?
I've tried running it with just the CPU, but it gets as far as:
Restored from checkpoints/vqgan_imagenet_f16_16384.ckpt
waits for a little while then I get:
Illegal instruction (core dumped)
and I'm not advanced enough to be able to troubleshoot that.
any thoughts / insights / ideas appreciated.
Beta Was this translation helpful? Give feedback.
All reactions