adjust hardnested compiler fix to accurate version

avx512f is only available in gcc 5.3 and above.
This commit is contained in:
marshmellow42 2017-06-02 00:17:57 -04:00
commit e5baf1ef79
3 changed files with 16 additions and 16 deletions

View file

@ -69,7 +69,7 @@ static float brute_force_per_second;
static void get_SIMD_instruction_set(char* instruction_set) {
#if (__GNUC__ > 4)
#if (__GNUC__ >= 5) && (__GNUC__ > 5 || __GNUC_MINOR__ > 2)
if (__builtin_cpu_supports("avx512f")) strcpy(instruction_set, "AVX512F");
else if (__builtin_cpu_supports("avx2")) strcpy(instruction_set, "AVX2");
#else