-
-
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
LLVM generates bad code on newer architercures #19976
Labels
Comments
pabloferz
added
performance
Must go faster
regression
Regression in behavior compared to a previous version
labels
Jan 11, 2017
A direct way of seeing the effect on the same version of Julia is:
vs:
|
yuyichao
removed
the
regression
Regression in behavior compared to a previous version
label
Jan 11, 2017
It's not a regression, I've checked that both LLVM 3.3 and 3.7.1 gives the same bad code when compiling with avx enabled. This might have been fixed on LLVM trunk right after 3.9 is branched and I'm trying to backport the patch. |
yuyichao
added a commit
that referenced
this issue
Jan 14, 2017
Keno
pushed a commit
that referenced
this issue
Jan 16, 2017
Keno
pushed a commit
that referenced
this issue
Jan 17, 2017
yuyichao
added a commit
that referenced
this issue
Jun 3, 2017
This fixes a bug in the patch that fixes #19976 causing encoding error on 32bit x86 and segfault when AVX/AVX2 is enabled. Ref LLVM bug report https://bugs.llvm.org//show_bug.cgi?id=29010 LLVM commit llvm-mirror/llvm@83260f2 Also ref where I saw this issue in #21849 (comment)
tkelman
pushed a commit
that referenced
this issue
Jun 6, 2017
This fixes a bug in the patch that fixes #19976 causing encoding error on 32bit x86 and segfault when AVX/AVX2 is enabled. Ref LLVM bug report https://bugs.llvm.org//show_bug.cgi?id=29010 LLVM commit llvm-mirror/llvm@83260f2 Also ref where I saw this issue in #21849 (comment) (cherry picked from commit 5a42474) ref #22205
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Didn't find an issue for this. Cross-reference: #19259 (comment)
I believe some of the performance "noisy" regressions seen lately are caused by this.
On my machine (Haswell) the pisum() benchmark on master gives
while on 0.5 I get
Even when both show practically the same LLVM code.
cc @yuyichao
The text was updated successfully, but these errors were encountered: