-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Julia 1.1.0 in MacOS: Segmentation fault when calling Dims on large array. #30892
Comments
We should be able to do better, here, but worth pointing out that this is just because this is trying to create a very large tuple, which is not generally something that tuples are designed for, i.e.
In particular, it tries to allocate a tuple of that size and then runs into a stack overflow that we don't detect because it skips more than one page. We'll need to add stack probing here. |
I.e. the action item here is #25523 |
…aLang#40068) Supported platforms are currently X86, PowerPC, and SystemZ. Fixes JuliaLang#25523 Fixes JuliaLang#36170 Closes JuliaLang#28577 Closes JuliaLang#30892
…aLang#40068) Supported platforms are currently X86, PowerPC, and SystemZ. Fixes JuliaLang#25523 Fixes JuliaLang#36170 Closes JuliaLang#28577 Closes JuliaLang#30892
…aLang#40068) Supported platforms are currently X86, PowerPC, and SystemZ. Fixes JuliaLang#25523 Fixes JuliaLang#36170 Closes JuliaLang#28577 Closes JuliaLang#30892
The following code causes a segmentation fault in a freshly started REPL session.
The crash output is
Allocations: 1091465 (Pool: 1091121; Big: 344); GC: 7
The text was updated successfully, but these errors were encountered: