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
We have both cuda::context::current::scoped_override_t and cuda::context::current::detail_scoped_override_t . We mostly use the latter in API function implementations, but - in some places we use the former. Why? Actually, no good reason. The way we construct them, this could trigger additional actions - e.g. primary context pushing; but we don't actually need that to happen. So, let's be uniform again.
The text was updated successfully, but these errors were encountered:
… we can just use the context-handle-based scoped override
* Also, removing (now?-)redundant forward-declaration of `context::current::scoped_override_t`
We have both
cuda::context::current::scoped_override_t
andcuda::context::current::detail_scoped_override_t
. We mostly use the latter in API function implementations, but - in some places we use the former. Why? Actually, no good reason. The way we construct them, this could trigger additional actions - e.g. primary context pushing; but we don't actually need that to happen. So, let's be uniform again.The text was updated successfully, but these errors were encountered: