Would this shortcut be welcome as a PR? I find it's one of the first thing I need when starting to play with KA, but perhaps I'm wrong.
function gpu(backend::Backend, x::Array)
    y = allocate(backend, eltype(x), size(x))
    return copyto!(y, x)
endThis is inspired by the Flux function of the same name.