Which version to choose if CPU supports both AVX2 and SSE3? #241
-
Windows 10 22H2, Intel Core i5-7200U. |
Beta Was this translation helpful? Give feedback.
Answered by
gz83
Oct 19, 2023
Replies: 1 comment 2 replies
-
You can use the AVX2 version |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The regular windows version is the AVX version, which requires the processor to support the AVX instruction set for proper use, and the AVX2 version requires the processor to support the AVX2 instruction set for proper use.
The difference between the AVX and AVX2 instruction sets involves knowledge of operations, algorithms, etc. In general: AVX2 extends vector processing capabilities across floating point and integer data domains compared to AVX.
Due to the large differences in usage environment, different browsers, or different versions of code, the AVX or AVX2 versions usually have different performance, i.e., the AVX version sometimes performs better than the AVX2 version, and vice ve…