sib.dey
November 11, 2025, 7:09pm
1
Hi,
Which container do you use?
Our latest PyTorch container for Thor is nvcr.io/nvidia/pytorch:25.10-py3.
Thanks.
sib.dey
November 20, 2025, 5:13pm
5
Hi,
The error shows an insufficient CUDA driver so this might relate to the setup.
How do you set up your system? Do you use JetPack 7.0?
Could you run nvidia-smi outside of the container and share the output with us?
Thanks.
sib.dey
November 24, 2025, 11:25pm
7
Yes, I used Jetpack 7.0.
nvidia-smi and nvidia-smi -q output are attached.
output.txt (10.8 KB)
Hi,
We test the command/container mentioned in the doc and it can work as expected in our environment.
$ docker run --rm -it \
-v "$PWD":/workspace \
-w /workspace \
nvcr.io/nvidia/pytorch:25.08-py3
# python3 <<'EOF'
import torch
print("PyTorch version:", torch.__version__)
print("CUDA available:", torch.cuda.is_available())
if torch.cuda.is_available():
print("GPU name:", torch.cuda.get_device_name(0))
x = torch.rand(10000, 10000, device="cuda")
print("Tensor sum:", x.sum().item())
EOF
PyTorch version: 2.8.0a0+34c6371d24.nv25.08
CUDA available: True
GPU name: NVIDIA Thor
Tensor sum: 49997884.0
Could you try it again?
Or could you try to setup the environment with below steps again?
Thanks.