We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Silent Failure
libcu++
Inline variables are a C++17 feature. We should not use them, as a compiler could potentially create duplicated symbols for each ocurrence.
Search for _v< in product code and check whether this is available prior to C++17
_v<
We should not use inline variables directly, but rather use traits via our _LIBCUDACXX_TRAIT macro
_LIBCUDACXX_TRAIT
No response
The text was updated successfully, but these errors were encountered:
miscco
No branches or pull requests
Is this a duplicate?
Type of Bug
Silent Failure
Component
libcu++
Describe the bug
Inline variables are a C++17 feature. We should not use them, as a compiler could potentially create duplicated symbols for each ocurrence.
How to Reproduce
Search for
_v<
in product code and check whether this is available prior to C++17Expected behavior
We should not use inline variables directly, but rather use traits via our
_LIBCUDACXX_TRAIT
macroReproduction link
No response
Operating System
No response
nvidia-smi output
No response
NVCC version
No response
The text was updated successfully, but these errors were encountered: