-
-
Notifications
You must be signed in to change notification settings - Fork 25.8k
DEBUG try to reproduce Cython segfault on non-aligned data #21677
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
Conversation
Some interesting observations from the last run:
I will re-run without capturing the output of |
Confirmed,
|
I have tried to reproduce on ubuntu 18.04 with the same version of gcc (7.5.0) but on a |
So the segfault happens on linux wheels built with the manylinux1 compiler but the good news it that it does not happen with the manylinux2010 compiler.
So maybe it's a bug with older versions of GCC when building with SSE / SSE2 / SSE3 vectorization. |
Let's see if
_test_sum
actually crashes with when mmap array is created withaligned=False
.Based on #21654.