This repository was archived by the owner on Mar 1, 2023. It is now read-only.

Description
Description
LazyArrays doesn't play nice with CuArrays 2.1.0
Reproducible example
using CuArrays, LazyArrays
CuArrays.allowscalar(false)
a = CuArray(rand(10,3))
W = CuArray(rand(1,3))
reduce(+, @~ W .* a; init=0.0)
See Slurm failures on #1004.
We can either fix the issue or find another way to write kernels similar to the above.
cc: @lcw @vchuravy @leios
For CLIMA Developers