-
I successfully compiled main (llama.cpp-master-54bb60e) with make LLAMA_CUBLAS=1, but running it exits with the error:
Using cuda tools 12.1 and gcc 9.4.0. Are there any minimum GPU requirement to get this to work? |
Beta Was this translation helpful? Give feedback.
Answered by
slaren
Apr 25, 2023
Replies: 1 comment 1 reply
-
It seems that |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
klosax
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It seems that
cublasCreate
is failing withCUBLAS_STATUS_NOT_INITIALIZED
. From what I found, this may happen if the GPU is out of memory or some hardware error. I would check that there aren't any other programs using GPU memory and that CUDA is working properly in your system.