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
C++17 inline variables have weak linkage in ELF files, which means multiple copies in different translation units are merged into one copy by the linker.
C++17 inline variables have weak linkage in ELF files, which means multiple copies in different translation units are merged into one copy by the linker.
nvcc emits it as weak in both device and host:
https://godbolt.org/z/n8EjvWKxe
currently clang only emits it as weak in device but not host. This causes multiple shadow variables registered for the same device variable.
https://godbolt.org/z/Maz7aMhcP
This caused issue in HIP:
ROCm/HIP#3463
The text was updated successfully, but these errors were encountered: