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
Following the manual on arrays, one can add extra "1" in indexing Nd arrays.
This works as expected for Array but creates a Stack Overflow with ReinterpretArray on 1.10, last release and nightly.
X =rand(Float32, (2,5))
X[1, :, 1] # works as expected
X2 =rand(ComplexF32, 5)
Xr =reinterpret(reshape, Float32, X2)
Xr[1, :, 1] # Stack overflow
Hi, thanks for everyone's work on Julia!
Following the manual on arrays, one can add extra "1" in indexing Nd arrays.
This works as expected for
Array
but creates a Stack Overflow withReinterpretArray
on 1.10, last release and nightly.The stack overflow error:
The text was updated successfully, but these errors were encountered: