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