-
Notifications
You must be signed in to change notification settings - Fork 116
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
Subject: Help with AutoDock-GPU installation – CUDA Verification Failed #275
Comments
Hi @khandokaryogesh Lines 29 to 34 in 2e658c3
Based on the output you got, you were able to locate nvcc (which indicates version 12.0, not 12.6; this is likely a nvcc in your PATH but not the one you wanted) but the target numbers were not printed. It's very likely that the test executable (test_cuda) were not compiled successfully by: Line 34 in 2e658c3
(which is nvcc -I$GPU_INCLUDE_PATH -L#GPU_LIBRARY_PATH -lcuda -lcudart -o test_cuda test_cuda.cpp )
I have only tested up to CUDA 12.4. I also never tested the driver version or on NVIDIA L40S. Not very sure what went wrong with the compilation of test codes, but it might be helpful to run |
@khandokaryogesh I agree with @rwxayheee, this is likely a case of |
Hello,
I am new to molecular docking and currently trying to install and run AutoDock-GPU on my Ubuntu system. While following the installation instructions for AutoDock-GPU, I encountered an issue when running the make DEVICE=CUDA command. Here is the error I get
Using Cuda 12.0
Compiling for targets: 52 53 60 61 62 70 72 75 80 86 87 89 90
Makefile:34: *** Cuda verification failed. Stop.
have installed CUDA 12.6, and I have verified that the necessary CUDA libraries and header files are present in the system. My GPU is an NVIDIA L40S, and nvidia-smi reports the following:
Driver Version: 560.35.03
CUDA Version: 12.6
I have set the following environment variables:
export GPU_INCLUDE_PATH=/usr/local/cuda/include
export GPU_LIBRARY_PATH=/usr/local/cuda/lib64
Despite this setup, the CUDA verification step fails, preventing the compilation of AutoDock-GPU. Could you please guide me on how to resolve this issue or identify what might be going wrong?
Any help would be greatly appreciated!
The text was updated successfully, but these errors were encountered: