-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CUBLAS_STATUS_NOT_SUPPORTED when run pytorch==2.5.1+cu118 #53
Comments
|
OK, after replacing the torch to version 2.3.1, it can run normally, but not as fast as expected. The same code is about 12.5% slower than Ubuntu with ROCm installed, and there will be a |
hey :) i see that in these latest releases you are working very hard and are adding hipBLASLt too. thank you really much for your work. Really. |
Now we have cuBLASLt on dev branch. After #61 is merged, I'll upload the nightly build that includes cublasLt.dll. For now, you can download v3.8.5 with cuBLASLt or build from dev branch. However, because AMD hasn't officially released hipBLASLt for Windows yet, you should build it yourself or download unofficial build from the Internet. |
My graphics card is
AMD Radeon RX 6750 GRE 10GB (gfx1031)
, with version24.12.1
AMD graphics card driver installed. The system isWindows 11 LTSC
. I want to run deep learning code on this computer and callpytorch
library, so I did the following:HIP SDK 6.1.2
and addHIP_PATH/bin
to thePATH
path.rocm.gfx1031.for.hip.sdk.6.1.2.7z
and replaced the library folder under%HIP_PATH%/bin/rocblas
with all the files in it (rocblas.dll
was also placed in the same location), and restarted the computer.mamba create - n ai Python=3.10
command. Installed torch usingpip install torch --index-url https://download.pytorch.org/whl/cu118
.PATH
environment variable.cublas64_11.dll
,cusparse64_11.dll
, andnvrtc64_112_0dll
inmicroforge3/env/ai/lib/site packages/torch/lib
withcublas.dll
,cusparsedll
, andnvrtc.dll
fromzluda
, respectively.python -c import torch;print(torch.cuda.is_available())
and output True.BERT
model usingtransformers
and trained it, but found that it cannot run. The error message is as follows:I want to know if I have made a mistake. I have been troubled for many days and have not been able to solve this problem. I am not sure if it is related to the
Windows 11 LTSC
version I am using, and I noticed that when usingDependencies
to view the DLL file, I found thatext-ms-win-oobe-query-l1-1-0.dll
is missing. I don't know if this is the reason why the code cannot run.Sorry to bother you. Any suggestions would be greatly appreciated.
The text was updated successfully, but these errors were encountered: