-
Notifications
You must be signed in to change notification settings - Fork 0
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
Support for setting the PTX version #1
Comments
Worked around by #1, but lets keep this open until there's an officially supported solution. |
It's been suggested that a better solution is to ship EDIT: I'm not actually sure this is going to work; is GPU machine code generated by |
Turns out this incompatibility is real, and we won't be able to use |
We currently can't realistically use NVVM, because it always sets the PTX version to the latest one available. For example, current libNVVM_jll comes from CUDA 12.1, so the PTX version is set to 8.1, only supporting the very latest drivers. I've filed a feature request with NVIDIA to make the PTX version configurable, which should just be a matter of setting a TargetMachine option.
The alternative, using the libNVVM from the user's toolkit, is unwanted because we'd then need to support multiple versions of the NVVM IR.
The text was updated successfully, but these errors were encountered: