Skip to content
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

What windows version am I running? #166

Open
bcookatpcsd opened this issue Mar 27, 2024 · 1 comment
Open

What windows version am I running? #166

bcookatpcsd opened this issue Mar 27, 2024 · 1 comment

Comments

@bcookatpcsd
Copy link

As a windows (or linux) user.. how do you know which AVX, AVX2, SSE3, SSE4 I am running..

I'm a Ryzen7 cpu.. and understand that all will work..

image

I'm taking the cpu flags (in the order listed) as oldest to newest.. and AVX2 > ( AVX || SSE4 || SSE3 )

Other than, I know I downloaded the avx2 installer.. is there anyway to tell that this is the avx2 binary?

image

image

Thank you in advance..

@SashaXser
Copy link

SashaXser commented Mar 27, 2024

As a windows (or linux) user.. how do you know which AVX, AVX2, SSE3, SSE4 I am running..

I'm a Ryzen7 cpu.. and understand that all will work..

image

I'm taking the cpu flags (in the order listed) as oldest to newest.. and AVX2 > ( AVX || SSE4 || SSE3 )

Other than, I know I downloaded the avx2 installer.. is there anyway to tell that this is the avx2 binary?

image

image

Thank you in advance..

Try this, I can't say for sure how accurate the program is, but it seems like it might help you figure it out. Mercury is not fully covered with optimization flags. The same mtune and tune-cpu are missing. The same Thorium is more covered with optimization flags.

Here is the output of the program on the AVX2 Mercury:

AVX (vmovaps)
NOVLX (vmovaps)
CMOV (cmovl)
BMI2 (shlx)
BMI (andn)
AVX2 (vpbroadcastq)
SSE2 (pause)
SSE1 (xorps)
Instruction set extensions used: AVX, AVX2, BMI, BMI2, CMOV, MODE64, NOVLX, SSE1, SSE2
CPU Generation: Unknown

And this is Thorium AVX2

MODE64 (push)
CMOV (cmovbe)
AVX (vmovups)
NOVLX (vmovups)
AVX2 (vpbroadcastb)
BMI2 (bzhi)
SSE1 (prefetcht0)
BMI (andn)
PCLMUL (vpclmulqdq)
SSE2 (mfence)
AES (aesenc)
SSE41 (pinsrd)
SSSE3 (pshufb)
ADX (adcx)
SHA (sha1msg1)
SSE42 (pcmpistri)
Instruction set extensions used: ADX, AES, AVX, AVX2, BMI, BMI2, CMOV, MODE64, NOVLX, PCLMUL, SHA, SSE1, SSE2, SSE41, SSE42, SSSE3
CPU Generation: Unknown

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants