We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://docs.rs/cudarc/0.12.1/cudarc/nvrtc/result/fn.create_program.html#
I found that in Nsight Compute if I try to correlate a kernel's SASS/PTX with actual source code, the file must be named "default_program".
The reason for this is because when using the create_program API the underlying nvrtc call is given a null ptr as the name, which then sets it to "default_program": https://docs.nvidia.com/cuda/nvrtc/#_CPPv418nvrtcCreateProgramP12nvrtcProgramPKcPKciPPCKcPPCKc
create_program
It would be nice to be able to set the name via the mid level APIs instead of using the lowest level APIs.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://docs.rs/cudarc/0.12.1/cudarc/nvrtc/result/fn.create_program.html#
I found that in Nsight Compute if I try to correlate a kernel's SASS/PTX with actual source code, the file must be named "default_program".
The reason for this is because when using the
create_program
API the underlying nvrtc call is given a null ptr as the name, which then sets it to "default_program": https://docs.nvidia.com/cuda/nvrtc/#_CPPv418nvrtcCreateProgramP12nvrtcProgramPKcPKciPPCKcPPCKcIt would be nice to be able to set the name via the mid level APIs instead of using the lowest level APIs.
The text was updated successfully, but these errors were encountered: