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
Ideally, the user wouldn't have to do this. There's work underway within Numba CUDA that would avoid this, instead letting us declare device code beforehand, and Numba would link it whenever it's used (example). When that functionality is available, we should switch to using it.
The text was updated successfully, but these errors were encountered:
Currently,
cuda.cooperative
relies on passing any additional code we wish to link with the user-defined kernel via thelink=
argument to@cuda.jit
:Ideally, the user wouldn't have to do this. There's work underway within Numba CUDA that would avoid this, instead letting us declare device code beforehand, and Numba would link it whenever it's used (example). When that functionality is available, we should switch to using it.
The text was updated successfully, but these errors were encountered: