Skip to content
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

Add the cuda.core.experimental.Linker class #229

Merged
merged 34 commits into from
Dec 7, 2024
Merged
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
9d8ecbc
integrate ruff changes
ksimpson-work Nov 27, 2024
1b5f019
fix commit
ksimpson-work Nov 27, 2024
58ce68f
fix commit
ksimpson-work Nov 27, 2024
ce8a472
keep self._options for debugging
ksimpson-work Nov 27, 2024
ab35b37
revert release notes change
ksimpson-work Nov 27, 2024
b82591f
update linker test
ksimpson-work Nov 27, 2024
265ba01
update the test
ksimpson-work Nov 27, 2024
1dc7e28
Merge remote-tracking branch 'origin/main' into ksimpson/cuda_core_li…
ksimpson-work Dec 2, 2024
c8a8dcb
save
ksimpson-work Dec 2, 2024
e966189
add docstring, copyright header, and switch finalizer pattern
ksimpson-work Dec 2, 2024
17c3e10
address comments
ksimpson-work Dec 3, 2024
7f84626
rename release notes
ksimpson-work Dec 3, 2024
5207558
rename release notes
ksimpson-work Dec 3, 2024
14b9c67
fix the test to not use a global function, which was causing swallowe…
ksimpson-work Dec 3, 2024
a7f8c30
WIP: enable cuLink APIs from driver
leofang Dec 4, 2024
1a255cb
Merge branch 'ksimpson/cuda_core_linker_155' of https://github.com/NV…
leofang Dec 4, 2024
028a5c2
save progress to remote
ksimpson-work Dec 4, 2024
d7bf4cb
save progress to remote
ksimpson-work Dec 4, 2024
702fbaa
handle culink and nvjitlink differences in the backend and test
ksimpson-work Dec 4, 2024
f1f1807
merge main
ksimpson-work Dec 4, 2024
996ab39
update line endings
ksimpson-work Dec 4, 2024
8ed6256
update the test
ksimpson-work Dec 4, 2024
188ae62
update the test
ksimpson-work Dec 4, 2024
0522d2b
update the documentation to touch on LinkerOptions vs CUDA version
ksimpson-work Dec 4, 2024
df8cbea
use rdc for nvrtc compilation and improve exception reporting by dump…
ksimpson-work Dec 5, 2024
761bea0
add note to link()
ksimpson-work Dec 5, 2024
c90b59e
Merge branch 'main' into ksimpson/cuda_core_linker_155
leofang Dec 6, 2024
9fdbc9f
remove duplicate test
ksimpson-work Dec 6, 2024
9b72cac
Merge remote-tracking branch 'origin/ksimpson/cuda_core_linker_155' i…
ksimpson-work Dec 6, 2024
677bd6d
reuse backend decision logic in tests + some nitpicks
leofang Dec 7, 2024
758ae01
make _exception_manager a ctx mgr
leofang Dec 7, 2024
06ee1e2
also guard the add_data calls with _exception_manager + add missing d…
leofang Dec 7, 2024
faf4855
add missing license header
leofang Dec 7, 2024
1c9dea6
improve docs
leofang Dec 7, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cuda_core/cuda/core/experimental/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
from cuda.core.experimental._device import Device
from cuda.core.experimental._event import EventOptions
from cuda.core.experimental._launcher import LaunchConfig, launch
from cuda.core.experimental._linker import Linker, LinkerOptions
from cuda.core.experimental._program import Program
from cuda.core.experimental._stream import Stream, StreamOptions
Loading