Host-level Operations

cuTile.TiledType
Tiled(x)

Wrapper for CUDA arrays to allow dispatching to cuTile kernels.

source
cuTile.@__dot__Macro
@. expr

Like Base.@. but wraps every value-position leaf in Tiled(), routing the broadcast through cuTile kernels.

using cuTile; const ct = cuTile
ct.@. C = A + sin(B)
# equivalent to: Tiled(C) .= Tiled(A) .+ sin.(Tiled(B))

For in-place assignment, the expression evaluates to the original destination array (C above), not its Tiled wrapper.

source