Could cuda.jl support @view in Kernel programming

Is it possible to create a new array by seting an offset parameter indicating how many bytes to add to the base array pointer? To achieve the function of view in Kernel programming

The view API doesn’t take a byte offset. You can accomplish the same though, e.g. by reinterpreting the array or correctly computing the view indices.