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
To avoid potential issues when using a static cuda runtime in the library, we need to hide all kernels from the external world. This can be done by using the static keyword or hidden visibility adding to the kernel declaration, similar to what has been done in cudf: rapidsai/cudf#14726.
For example, we can use this macro instead of __global__:
To avoid potential issues when using a static cuda runtime in the library, we need to hide all kernels from the external world. This can be done by using the static keyword or hidden visibility adding to the kernel declaration, similar to what has been done in cudf: rapidsai/cudf#14726.
For example, we can use this macro instead of
__global__
:The text was updated successfully, but these errors were encountered: