You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be possible to forward fill!(a::SubArray{T, N, <:OffsetArray}, x) to fill!(view(parent(parent(a)), ...), x)? I'm having issues because I want to fill a view of an OffsetArray backed by a CuArray, but currently this tries to use the fallback definition in Base which requires scalar indexing.
The text was updated successfully, but these errors were encountered:
Would it be possible to forward
fill!(a::SubArray{T, N, <:OffsetArray}, x)
tofill!(view(parent(parent(a)), ...), x)
? I'm having issues because I want to fill a view of anOffsetArray
backed by aCuArray
, but currently this tries to use the fallback definition in Base which requires scalar indexing.The text was updated successfully, but these errors were encountered: