-
Notifications
You must be signed in to change notification settings - Fork 12
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
Branch “tm_functor” does not compile on Travis CI #83
Comments
I get a segmentation fault after running apimugamma5Inverse. Maybe the compilation error here is an indication of something being amiss in the test. |
Bartek said it might load an old version of the compiler. I have now checked this, the
So I don't get it 😠 Why doesn't this work, when it works on my laptop? And also this has worked before, the |
What about all of this?
? |
|
In particular, line 3549 of the failing compile: https://travis-ci.org/JeffersonLab/qphix/jobs/251959460#L3549 |
Somehow adding a few BLAS routines broke the build on Travis CI. Perhaps it is only a cache problem?
This is the issue, happening both for scalar and AVX build:
It just does not make any sense! In
/usr/lib/gcc/x86_64-linux-gnu/6/include/pmmintrin.h
before any__m128
is used, there is#include <emmintrin.h>
. There, it starts with#include <xmmintrin.h>
. In that file, one first has a#include <mmintrin.h>
which does not add anything of interest and then has the necessary typedef:So by the time that
__m128
is used inpmmintrin.h
, it should already be defined.I will have to try clearing the caches first, perhaps that already resolves the issue. Otherwise I am a bit clueless at this point.
The text was updated successfully, but these errors were encountered: