Used to work, doesn't anymore: ```julia using CuArrays, LazyArrays CuArrays.allowscalar(false) a = CuArray(rand(10,3)); W = CuArray(rand(1,3)); reduce(+, @~ W .* a; init=0.0) ```