-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # 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 |
vtjnash
added a commit
that referenced
this issue
Mar 16, 2021
vtjnash
added a commit
that referenced
this issue
Mar 18, 2021
ElOceanografo
pushed a commit
to ElOceanografo/julia
that referenced
this issue
May 4, 2021
…aLang#40068) Supported platforms are currently X86, PowerPC, and SystemZ. Fixes JuliaLang#25523 Fixes JuliaLang#36170 Closes JuliaLang#28577 Closes JuliaLang#30892
antoine-levitt
pushed a commit
to antoine-levitt/julia
that referenced
this issue
May 9, 2021
…aLang#40068) Supported platforms are currently X86, PowerPC, and SystemZ. Fixes JuliaLang#25523 Fixes JuliaLang#36170 Closes JuliaLang#28577 Closes JuliaLang#30892
johanmon
pushed a commit
to johanmon/julia
that referenced
this issue
Jul 5, 2021
…aLang#40068) Supported platforms are currently X86, PowerPC, and SystemZ. Fixes JuliaLang#25523 Fixes JuliaLang#36170 Closes JuliaLang#28577 Closes JuliaLang#30892
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
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: