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
#23 added an lto kwarg to the @cuda.jit decorator in an indirect fashion - the lto kwarg was added to _Kernel.__init_(), which indirectly propagates up to the jit function through **targetoptions to the CUDADispatcher and as **kws in the jit() function.
The lto kwarg needs documenting in the @jit decorator, and potentially making more explicit as well.
The text was updated successfully, but these errors were encountered:
#23 added an
lto
kwarg to the@cuda.jit
decorator in an indirect fashion - thelto
kwarg was added to_Kernel.__init_()
, which indirectly propagates up to thejit
function through**targetoptions
to theCUDADispatcher
and as**kws
in thejit()
function.The
lto
kwarg needs documenting in the@jit
decorator, and potentially making more explicit as well.The text was updated successfully, but these errors were encountered: