-
-
Notifications
You must be signed in to change notification settings - Fork 80
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 CUlibrary's and CUkernel's - CUDA driver low-level "library management" #565
Labels
Milestone
Comments
eyalroz
added a commit
that referenced
this issue
Jan 8, 2024
Caveat: Not yet supporting library kernels as first-class citizens; they are currently only intermediate entities for obtaining context-associated kernels (CUfunction's)
eyalroz
added a commit
that referenced
this issue
Jan 14, 2024
Caveat: Not yet supporting library kernels as first-class citizens; they are currently only intermediate entities for obtaining context-associated kernels (CUfunction's)
eyalroz
added a commit
that referenced
this issue
Jan 27, 2024
Caveat: Not yet supporting library kernels as first-class citizens; they are currently only intermediate entities for obtaining context-associated kernels (CUfunction's)
eyalroz
added a commit
that referenced
this issue
Jan 27, 2024
Caveat: Not yet supporting library kernels as first-class citizens; they are currently only intermediate entities for obtaining context-associated kernels (CUfunction's)
eyalroz
added a commit
that referenced
this issue
Jan 27, 2024
…completing the support for libraries overall CAVEAT: No example code to actually load and launch any cuLibraries
eyalroz
added a commit
that referenced
this issue
Jan 29, 2024
…completing the support for libraries overall CAVEAT: No example code to actually load and launch any cuLibraries
eyalroz
added a commit
that referenced
this issue
Feb 29, 2024
…completing the support for libraries overall CAVEAT: No example code to actually load and launch any cuLibraries
eyalroz
added a commit
that referenced
this issue
Mar 1, 2024
Caveat: Not yet supporting library kernels as first-class citizens; they are currently only intermediate entities for obtaining context-associated kernels (CUfunction's)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Beginning with CUDA 12.0, we now have access to several functions for handling "libraries" of context-less "kernels":
https://docs.nvidia.com/cuda/cuda-driver-api/group__CUDA__LIBRARY.html
One can get a context-associated module or kernel by calling
cuKernelGetFunction()
orcuLibraryGetModule()
.Functions:
The text was updated successfully, but these errors were encountered: