-
Notifications
You must be signed in to change notification settings - Fork 949
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
Error: DriverError(CUDA_ERROR_NOT_FOUND, "named symbol not found") when loading cast_f32_bf16 #2041
Comments
|
Hi @evgenyigumnov, upgrading cuda driver to >= 545 should work: #1761. |
Got the same issue today while running the gemma ("codegemma-7b-it") example on my legacy RTX2070 gpu 😞
nvidia-smi --query-gpu=name,compute_cap,driver_version --format=csv
~ NVIDIA GeForce RTX 2070 with Max-Q Design, 7.5, 552.12 The issue is our Gpu's don't support those capabilitiesAs seen from Kernel code HERE: Only supports Architectures with Capabilities >= 800 (8.0) while my gpu and @evgenyigumnov 's 2080 fall under unsupported Architectures And it's set to >=800 for a reason Docs: https://docs.nvidia.com/cuda/cuda-c-programming-guide/index.html#compute-capabilities
Gpu capabilities: Related Issue : #1911 So unfortunately both me and @evgenyigumnov can't run code including dependency on that kernel matrix function on current Gpu architectures :( . Some relevant docs if you want to know more. Docs:Compute capabilities: Bfloat16 virtual-architecture-macros using-cuda-arch __nv_bfloat16 samples Candle bfloat16 added: Hope it helps : ) |
The text was updated successfully, but these errors were encountered: