Announcement

Collapse
No announcement yet.

LLVM Clang 3.9 Mostly Trails GCC In Compiler Performance

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

  • LLVM Clang 3.9 Mostly Trails GCC In Compiler Performance

    Phoronix: LLVM Clang 3.9 Mostly Trails GCC In Compiler Performance

    Following yesterday's GCC 5 vs. 6 vs. early 7 benchmarks, to no surprise LLVM's Clang compiler was brought up in the comments. I had already been running some fresh LLVM Clang benchmarks on this same Intel Xeon system and have those results to share now with Clang 3.8 and the newly-released Clang 3.9.

    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
    I am really surprised that the compile times of Clang are not better. This is the area where Clang had the real lead over GCC.

    Comment


    • #3
      Originally posted by lowflyer View Post
      I am really surprised that the compile times of Clang are not better. This is the area where Clang had the real lead over GCC.
      me too, actually, although it shows that more optimization passes don't come for free.

      Comment


      • #4
        I am also surprised by the relatively low scores of this Xeon processor. My haswell laptop's (@3.2GHz turbo) scimark2 scores are slightly more than double of what this 8-core Xeon @1.7GHz masters. I was actually expecting the Xeon with its larger caches and higher memory bandwith to do much much better...

        Comment


        • #5
          Originally posted by mlau View Post
          I am also surprised by the relatively low scores of this Xeon processor. My haswell laptop's (@3.2GHz turbo) scimark2 scores are slightly more than double of what this 8-core Xeon @1.7GHz masters. I was actually expecting the Xeon with its larger caches and higher memory bandwith to do much much better...
          Sciencemark has been accused of being a microbenchmark, i.e., being not very representative of real world loads. Your observation seems to support this. The benchmark may fit in your cache (nullifying the effect of larger cache or better memory bandwidth), it may have a simple instruction sequence which scales perfectly with clock speed of the CPU, and lastly, it may stress your system so little that it can run on the turbo frequency all the way through.

          Comment


          • #6
            It would be interesting to run these tests on clang with the -fno-math-errno flag.
            clang prohibits several optimization by default (which could result in visible differences), whereas gcc doesnt.

            Code:
            double a = sin(x); /* this could set errno */
            double b = log(y); /* this could set errno */
            double c = sin(x) + a; /* this could set errno */
            gcc will only call sin(x) once and double the value, clang will not change the order since the functions could modify global state (errno) and reordering them could break programs that depend on this behavior.

            Whetstone for example is notoriously affected by such flags.

            Comment


            • #7
              Originally posted by Del_ View Post
              Sciencemark has been accused of being a microbenchmark, i.e., being not very representative of real world loads. Your observation seems to support this. The benchmark may fit in your cache (nullifying the effect of larger cache or better memory bandwidth), it may have a simple instruction sequence which scales perfectly with clock speed of the CPU, and lastly, it may stress your system so little that it can run on the turbo frequency all the way through.
              Oh I agree that it's a almost meaningless benchmark, but it at least shows where both compilers excel at code generation.
              I ran the scimark2 suite with clang HEAD from a few hours ago, and it absolutely destroys gcc in the sparse matmult benchmark:

              Sparse matmult Mflops: 12550.17 (N=1000, nz=5000) (clang git head)
              Sparse matmult Mflops: 3118.18 (N=1000, nz=5000) (gcc-6.2)

              There's no meaningful difference in the other scores.

              Comment


              • #8
                Originally posted by discordian View Post
                It would be interesting to run these tests on clang with the -fno-math-errno flag.
                clang prohibits several optimization by default (which could result in visible differences), whereas gcc doesnt.

                Code:
                double a = sin(x); /* this could set errno */
                double b = log(y); /* this could set errno */
                double c = sin(x) + a; /* this could set errno */
                gcc will only call sin(x) once and double the value, clang will not change the order since the functions could modify global state (errno) and reordering them could break programs that depend on this behavior.

                Whetstone for example is notoriously affected by such flags.
                I did, and there's no difference in generated code at all, with both gcc and clang.

                Comment


                • #9
                  Originally posted by mlau View Post

                  Oh I agree that it's a almost meaningless benchmark, but it at least shows where both compilers excel at code generation.
                  I ran the scimark2 suite with clang HEAD from a few hours ago, and it absolutely destroys gcc in the sparse matmult benchmark:

                  Sparse matmult Mflops: 12550.17 (N=1000, nz=5000) (clang git head)
                  Sparse matmult Mflops: 3118.18 (N=1000, nz=5000) (gcc-6.2)

                  There's no meaningful difference in the other scores.
                  Can you look at the generated code in each case and work out why?

                  Comment


                  • #10
                    It's a shame you didn't include LLVM+CLANG 4.0.0.-SVN too.

                    Comment

                    Working...
                    X