1

How to check if my Linux Box installation installation has SSE instructions capabilities?

I am trying to install libjpeg-turbo and I want to make sure that it fully utilizes the capabilities of my box.

2 Answers 2

6

Use cat /proc/cpuinfo | grep sse to see if your CPU has SSE abilites.

Sign up to request clarification or add additional context in comments.

4 Comments

22:flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt rdtscp lm 3dnowext 3dnow nonstop_tsc pni cx16 lahf_lm cmp_legacy svm extapic cr8legacy 3dnowprefetch ts fid vid ttp tm stc 100mhzsteps 46:flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt rdtscp lm 3dnowext 3dnow nonstop_tsc pni cx16 lahf_lm cmp_legacy svm extapic cr8legacy 3dnowprefetch ts fid vid ttp tm stc 100mhzsteps
The sse and sse2 extensions are available.
Availability doesn't mean package uses SSE.
You're right, I clarified my answer. Still, the original question was "how to check if the extension is available".
0

To show all the CPU flags:

cat /proc/cpuinfo 

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.