How to test if your Linux Support SSE2

后端 未结 5 873
迷失自我
迷失自我 2021-02-04 06:17

Actually I have 2 questions:

  1. Is SSE2 Compatibility a CPU issue or Compiler issue?
  2. How to check if your CPU or Compiler support SSE2?

I am u

相关标签:
5条回答
  • 2021-02-04 06:39
    1. It's both. The compiler/assembler need to be able to emit/handle SSE2 instructions, and then the CPU needs to support them. If your binary has SSE2 instructions with no conditions attached and you try to run it on a Pentium II you are out of luck.

    2. The best way is to check your GCC manual. For example my GCC manpage refers to the -msse2 option which will allow you to explicitly enable SSE2 instructions in the binaries. Any relatively recent GCC or ICC should support it. As for your cpu, check the flags line in /proc/cpuinfo.

    It would be best, though, to have checks in your code using cpuid etc, so that SSE2 sections can be disabled in CPUs that do not support it and your code can fall back on a more common instruction set.

    EDIT:

    Note that your compiler needs to either be a native compiler running on a x86 system, or a cross-compiler for x86. Otherwise it will not have the necessary options to compile binaries for x86 processors, which includes anything with SSE2.

    In your case the CPU does not support x86 at all. Depending on your Linux distribution, there might be packages with the Intel IA32EL emulation layer for x86-software-on-IA64, which may allow you to run x86 software.

    Therefore you have the following options:

    • Use a cross-compiler that will run on IA64 and produce binaries for x86. Cross-compiler toolchains are not an easy thing to setup though, because you need way more than just the compiler (binutils, libraries etc).

    • Use Intel IA32EL to run a native x86 compiler. I don't know how you would go about installing a native x86 toolchain and all the libraries that your project needs in your distributions does not support it directly. Perhaps a full-blown chroot'ed installation of an x86 distribution ?

    Then if you want to test your build on this system you have to install Intel's IA32EL for Linux.

    EDIT2:

    I suppose you could also run a full x86 linux distribution on an emulator like Bochs or QEMU (with no virtualization of course). You are definitely not going to be dazzled by the resulting speeds though.

    0 讨论(0)
  • 2021-02-04 06:42

    Another trick not yet mentioned is do:

    gcc -march=native -dM -E - </dev/null | grep SSE2
    

    and get:

    #define __SSE2_MATH__ 1
    #define __SSE2__ 1
    

    With -march=native you are checking both your compiler and your CPU. If you give a different -march for a specific CPU, like -march=bonnell you can check for that CPU.

    Consult your gcc docs for the correct version of gcc:

    https://gcc.gnu.org/onlinedocs/gcc-4.9.0/gcc/Submodel-Options.html

    0 讨论(0)
  • 2021-02-04 06:42

    use asm to check the existence of sse2

    enter code here
    static
    bool HaveSSE2()
    {
        return false;
        __asm mov EAX,1              ;
        __asm cpuid                  ;
        __asm test EDX, 4000000h     ;test whether bit 26 is set
        __asm jnz yes                ;yes
        return false;
    yes:
        return true;
    }
    
    0 讨论(0)
  • 2021-02-04 06:58

    The CPU needs to be able to execute SSE2 instrcutions, and the compiler needs to be able to generate them.

    To check if your cpu supports SSE2:

    # cat /proc/cpuinfo
    

    It will be somewhere under "flags" if it is supported.

    Update: So you cpu doesn't support it.

    For the compiler:

    # gcc -dumpmachine
    # gcc --version
    

    Target of your compiler needs to a kind of x86*, since only this cpus support sse2, which is part of the x86 instruction set

    AND

    gcc version needs to be >= 3.1 (most likely, since this is about 10 years old or something) for supporting SSE2.

    Update: So your compiler doesn't support it on this target, it will if you are using it as a cross compiler for x86.

    0 讨论(0)
  • 2021-02-04 07:01

    Try running:

    lshw -class processor | grep -w sse2
    

    and look under the processor section.

    0 讨论(0)
提交回复
热议问题