What is the command to install pytorch with cuda 12. 8? 1 as of now, pytorch which supports cuda 12 8 is not released yet but unofficial support released nightly version of it here are the commands to install it so with this pytorch version you can use it on rtx 50XX I've got 5080 and it works just fine
pytorch - CUDA error: no kernel image is available for execution on the . . . LibTorch version: 2 7 0 CUDA is available GPU will be used CUDA device count: 1 Current device name: NVIDIA GeForce RTX 5060 Ti Training Exception occurred: CUDA error: no kernel image is available for execution on the device CUDA kernel errors might be asynchronously reported at some other API call, so the stacktrace below might be incorrect For debugging consider passing CUDA_LAUNCH
What does `-1` of `view()` mean in PyTorch? - Stack Overflow 0 -1 is a PyTorch alias for "infer this dimension given the others have all been specified" (i e the quotient of the original product by the new product) It is a convention taken from numpy reshape() Hence t view(1,17) in the example would be equivalent to t view(1,-1) or t view(-1,17)