Is cuda version >= 11.8 mandatory? #624
Zhaoyilunnn
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
Since I do not have root access to our server, I cannot upgrade the nvidia driver and corresponding cuda, which is cuda-11.7.
However, I changed this rule in build script to make it work for cuda-11.7 and the compilation finished successfully and I tested some example codes, it also runs correctly.
elif [ "$cuda_version" = "" ] || [ "$cuda_major" -lt "11" ] || ([ "$cuda_minor" -lt "7" ] && [ "$cuda_major" -eq "11" ]); then
Thus I am curious about what is the actual dependeny of cuda-quantum to cuda version and what is the impact.
Appreciate if any one has some insights on that...
Beta Was this translation helpful? Give feedback.
All reactions