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
Hi I am trying to use strided on a Base.ReshapedArray and am returned a StackOverflow here are some examples
y = reshape(randn(elt, 8)', 2, 4)
x = Base.ReshapedArray(randn(elt, 8, 8)'[1:8], (2, 4), ())
y .= y .* x
# works
@strided x .= x .* x
# stack overflow
@strided y .= y .* x
@strided x .= x .* y
@strided y .= y .* y
I was able to get some stacktrace regarding where the stack overflow is happening see the following
Hi I am trying to use strided on a
Base.ReshapedArray
and am returned aStackOverflow
here are some examplesI was able to get some stacktrace regarding where the stack overflow is happening see the following
The text was updated successfully, but these errors were encountered: