You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Currently kernel names are passed directly to NVRTC. This means that C++ mangled names are not supported and kernels must have extern "C" linkage. However, this means templated kernels are not supported.
Describe the solution you'd like
Support mangled names in the cudawrappers NVRTC module.
Is your feature request related to a problem? Please describe.
Currently kernel names are passed directly to NVRTC. This means that C++ mangled names are not supported and kernels must have
extern "C"
linkage. However, this means templated kernels are not supported.Describe the solution you'd like
Support mangled names in the cudawrappers NVRTC module.
Describe alternatives you've considered
Additional context
We can implement this with a combination of nvrtcAddNameExpression and nvrtcGetLoweredName
The text was updated successfully, but these errors were encountered: