-
Notifications
You must be signed in to change notification settings - Fork 18
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
Use cuda.bindings
and cuda.core
for Linker
#133
base: main
Are you sure you want to change the base?
Conversation
Thanks, @brandon-b-miller. Remember our goal is to drop every Linker subclasses inside Numba, in favor of |
cuda.bindings
and cuda.core
for nvjitlink
cuda.bindings
and cuda.core
for Linker
|
||
# Load | ||
cufunc = module.get_function(self._entry_name) | ||
#cufunc = module.get_function(self._entry_name) | ||
cufunc = cubin.get_kernel(self._entry_name) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since we switched to context independent loading API, the CUDADispatcher.bind
method should probably be renamed since it no longer binds context via calling the get_cufunc
function.
WIP
xref #129