Replies: 1 comment 3 replies
-
You missed #100 which explained why we are doing this 🙂 |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
As discussed here, implemented here, and documented here, my team and I are wondering what the reasoning was behind linking unconditionally linking
cudart_static
in setup.py in the newest version ofcuda_bindings
?We've read through the full conversation and are still unclear why it's needed.
Potentially more importantly, could there be any unintended side effects as
cuda_bindings
may also loadlibcudart
dynamically at runtime?The reason for asking is due to trying to keep the same cuda libraries consistently linked statically or dynamically across all libraries (for example,
torch
mixes linking static and dynamic cuda libraries and we want to ensure we're always linking the cuda libraries the same way).Beta Was this translation helpful? Give feedback.
All reactions