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
* Relax execution checks for function objects
Previously, we would require that a function that is passed to a function object such as `cuda::std::plus` is annotated as `__host__ __device__`
However, this breaks valid use cases, such as using a `__device__` function in a `__global__` kernel.
This obviously also inhibits any compiler warnings which might catch a bug, but rejecting valid code seems the worse choice.
No description provided.
The text was updated successfully, but these errors were encountered: