Announcement

Collapse
No announcement yet.

Compiler Tuning With Intel Ivy Bridge Processors

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Compiler Tuning With Intel Ivy Bridge Processors

    Phoronix: Compiler Tuning With Intel Ivy Bridge Processors

    In this article is a look at the impact that compiler tuning has for the latest-generation Intel Ivy Bridge processors. Being tested is the GNU Compiler Collection (GCC) while passing various architecture flags to look at the impact they have on the results.

    Phoronix, Linux Hardware Reviews, Linux hardware benchmarks, Linux server benchmarks, Linux benchmarking, Desktop Linux, Linux performance, Open Source graphics, Linux How To, Ubuntu benchmarks, Ubuntu hardware, Phoronix Test Suite

  • #2
    LOL is me or bulldozer just trashed ivy bridge massively in C-Ray

    bulldozer 26.92s
    ivy bridge 80.37s

    OOUUUCHH

    or michael made some change to the C-Ray bench profile?? i mean i know bulldozer shines in heavy parallel task but 4 times ivy performance DAMN (<--- im happy i buyed my AMD FX )

    Comment


    • #3
      Can anyone explain what the fsgsbase does? Google is not being helpful.

      The other two, half floats and hardware RNG, aren't quite expected to speed up random software. (unless it can go to half-floats with -ffast-math and process twice as much float calculations on the vector unit?)

      Comment


      • #4
        Originally posted by curaga View Post
        Can anyone explain what the fsgsbase does? Google is not being helpful.
        https://www.intel.com/idf/library/pd...CS005_101F.pdf says

        """Fast access of FS & GS base registers
        ? Useful for user level thread storage by providing 4 new instructions
        for ring-3 access of FS & GS base registers
        """

        AFAICS, it's about reducing the overhead of using TLS variables; IIRC both Linux and Windows use FS/GS to store a per-thread pointer to the (per-thread) TLS descriptor block.

        The other two, half floats and hardware RNG, aren't quite expected to speed up random software. (unless it can go to half-floats with -ffast-math and process twice as much float calculations on the vector unit?)
        No, -ffast-math won't do anything as crazy as that. Note that it doesn't actually support arithmetic on half-floats, the new instructions are only for converting half-floats in memory to/from 32-bit single precision. AFAICS this may be useful for graphics stuff, IIRC some GPU's already support half-float textures.

        Comment

        Working...
        X