This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author christian.heimes
Recipients benjamin.peterson, christian.heimes, mgorny
Date 2017-10-24.07:25:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1508829904.18.0.213398074469.issue31834@psf.upfronthosting.co.za>
In-reply-to
Content
I'm pretty sure that your PR has disabled all SSE optimizations. AFAIK gcc does not enable SSE3 and SSE4 on X86_64 by default.

$ gcc -dM -E - < /dev/null | grep SSE
#define __SSE2_MATH__ 1
#define __SSE_MATH__ 1
#define __SSE2__ 1
#define __SSE__ 1

You have to set a compiler flag like -msse4

$ gcc -msse4 -dM -E - < /dev/null | grep SSE
#define __SSE4_1__ 1
#define __SSE4_2__ 1
#define __SSE2_MATH__ 1
#define __SSE_MATH__ 1
#define __SSE2__ 1
#define __SSSE3__ 1
#define __SSE__ 1
#define __SSE3__ 1
History
Date User Action Args
2017-10-24 07:25:04christian.heimessetrecipients: + christian.heimes, benjamin.peterson, mgorny
2017-10-24 07:25:04christian.heimessetmessageid: <1508829904.18.0.213398074469.issue31834@psf.upfronthosting.co.za>
2017-10-24 07:25:04christian.heimeslinkissue31834 messages
2017-10-24 07:25:03christian.heimescreate