NVIDIA / numba-cuda

BSD 2-Clause "Simplified" License
36 stars 8 forks source link

[DOC] `lto` kwarg for the `@cuda.jit` decorator is undocumented #61

Open gmarkall opened 1 month ago

gmarkall commented 1 month ago

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.