We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d56d93 commit 08daa8aCopy full SHA for 08daa8a
2 files changed
Modules/blake2module.c
@@ -122,7 +122,8 @@ blake2module_init_cpu_features(Blake2State *state)
122
#endif
123
124
#if _Py_HACL_CAN_COMPILE_VEC256
125
- state->can_run_simd256 = flags.avx && flags.avx2;
+ state->can_run_simd256 = state->can_run_simd128
126
+ && flags.avx && flags.avx2;
127
#else
128
state->can_run_simd256 = false;
129
Modules/hmacmodule.c
@@ -1564,7 +1564,8 @@ hmacmodule_init_cpu_features(hmacmodule_state *state)
1564
1565
1566
1567
1568
1569
1570
1571
0 commit comments