cugraph
cugraph copied to clipboard
Mark kernels as internal
Downstream consumers of static built versions of RAPIDS C++ projects have encountered runtime issues due to multiple instances of the same kernel existing in different DSOs.
To resolve this issue we need to ensure that all CUDA kernels in all RAPIDS libraries need to be have internal linkage ( static for projects using whole compilation, attribute((visibility("hidden"))) for header libraries / separable compilation ).
This updates all cugraph kernels to have internal linkage, and adds a CI job to verify that no new kernels are added with external linkage.
/ok to test
/merge
/merge