vote up 6 vote down star
4

I'm finding massive performance differences between similar code in C anc C#.

The C code is:

#include <stdio.h>
#include <time.h>
#include <math.h>

main()
{
    int i;
    double root;

    clock_t start = clock();
    for (i = 0 ; i <= 100000000; i++){
    	root = sqrt(i);
    }
    printf("Time elapsed: %f\n", ((double)clock() - start) / CLOCKS_PER_SEC);	

}

And the C# (console app) is:

using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            DateTime startTime = DateTime.Now;
            double root;
            for (int i = 0; i <= 100000000; i++)
            {
                root = Math.Sqrt(i);
            }
            TimeSpan runTime = DateTime.Now - startTime;
            Console.WriteLine("Time elapsed: " + Convert.ToString(runTime.TotalMilliseconds/1000));
        }
    }
}

With the above code, the C# completes in 0.328125 seconds (release version) and the C takes 11.14 seconds to run.

The c is being compiled to a windows executable using mingw.

I've always been under the assumption that C/C++ were faster or at least comparable to C#.net. What exactly is causing the C to run over 30 times slower?

EDIT: It does appear that the C# optimizer was removing the root as it wasn't being used. I changed the root assignment to root += and printed out the total at the end. I've also compiled the C using cl.exe with the /O2 flag set for max speed.

The results are now: 3.75 seconds for the C 2.61 seconds for the C#

The C is still taking longer, but this is acceptable

flag

I would suggest you use a StopWatch instead of just a DateTime. – Alex Fort Mar 26 at 16:25
Which compiler flags? Are both compiled with optimizations enabled? – jalf Mar 26 at 16:45
What about when you use -ffast-math with the C++ compiler? – phsr Mar 26 at 17:09
1  
What a fascinating question! – Robert S. Mar 26 at 19:47
1  
Maybe C sqrt function is not as good as this in C#. Then it wouldn't be an issue with C, but with library attached to it. Try some calculations without math functions. – klew Mar 26 at 19:56
show 1 more comment

15 Answers

vote up 19 vote down check

Since you never use 'root', the compiler may have been removing the call to optimize your method.

You could try to accumulate the square root values into an accumulator, print it out at the end of the method, and see what's going on.

Edit : see Jalf's answer below

link|flag
A little experimentation suggests this isn't the case. The code for the loop is generated, although perhaps the runtime is smart enough to skip it. Even accumulating, C# still beats the pants of C. – Dana Mar 26 at 16:47
1  
It seems the problem is on the other end. C# behaves reasonably in all cases. His C code is apparently compiled without optimizations – jalf Mar 26 at 16:50
vote up 36 vote down

You must be comparing debug builds. I just compiled your C code, and got

Time elapsed: 0.000000

If you don't enable optimizations, any benchmarking you do is completely worthless. (And if you do enable optimizations, the loop gets optimized away. So your benchmarking code is flawed too. You need to force it to run the loop, usually by summing up the result or similar, and printing it out at the end)

It seems that what you're measuring is basically "which compiler inserts the most debugging overhead". And turns out the answer is C. But that doesn't tell us which program is fastest. Because when you want speed, you enable optimizations.

By the way, you'll save yourself a lot of headaches in the long run if you abandon any notion of languages being "faster" than each others. C# no more has a speed than English does.

There are certain things in the C language that would be efficient even in a naive non-optimizing compiler, and there are others that relies heavily on a compiler to optimize everything away. And of course, the same goes for C# or any other language.

The execution speed is determined by:

  • the platform you're running on (OS, hardware, other software running on the system)
  • the compiler
  • your source code

A good C# compiler will yield efficient code. A bad C compiler will generate slow code. What about a C compiler which generated C# code, which you could then run through a C# compiler? How fast would that run? Languages don't have a speed. Your code does.

link|flag
Lots more interesting reading here: blogs.msdn.com/ricom/archive/… – Earwicker Mar 26 at 16:57
Good answer, but I disagree about language speed, at least in analogy: It's been found that Welsch is a slower language than most because of the high frequency of long vowels. Additionally, people remember words (and word lists) better if they are faster to say. web.missouri.edu/~cowann/docs/… en.wikipedia.org/wiki/Vowel_length en.wikipedia.org/wiki/Welsh_language – exceptionerror Jun 12 at 9:42
Doesn't that depend on what you're saying in Welsch though? I find it unlikely that everything is slower. – jalf Jun 12 at 11:43
++ Hey guys, don't get sidetracked here. If the same program runs faster in one language than another, it's because different assembly code is generated. In this particular example, 99% or more of the time will go into floating i, and sqrt, so that's what is being measured. – Mike Dunlavey Nov 27 at 18:59
vote up 5 vote down

I'll keep it brief, it is already marked answered. C# has the great advantage of having a well defined floating point model. That just happens to match the native operation mode of the FPU and EMM instruction set on x86 and x64 processors. No coincidence there. The JITter compiles Math.Sqrt() to a few inline instructions.

Native C/C++ is saddled with years of backwards compatibility. The /fp:precise, /fp:fast and /fp:strict compile options are the most visible. Accordingly, it must call a CRT function that implements sqrt() and checks the selected floating point options to adjust the result. That's slow.

link|flag
vote up 5 vote down

my first guess is a compiler optimization because you never use root. You just assign it, then overwrite it again and again.

Edit: damn, beat by 9 seconds!

link|flag
vote up 4 vote down

To see if the loop is being optimised away, try changing your code to

root += Math.Sqrt(i);

ans similarly in the C code, and then print the value of root outside the loop.

link|flag
vote up 2 vote down

Maybe the c# compiler is noticing you don't use root anywhere, so it just skips the whole for loop. :)

That may not be the case, but I suspect whatever the cause is, it is compiler implementation dependent. Try compiling you C program with the Microsoft compiler (cl.exe, available as part of the win32 sdk) with optimizations and Release mode. I bet you'll see a perf improvement over the other compiler.

EDIT: I don't think the compiler can just optimize out the for loop, because it would have to know that Math.Sqrt() doesn't have any side-effects.

link|flag
1  
Maybe it does know that. – Neil Butterworth Mar 26 at 16:31
1  
@Neil, @jeff: Agreed, it could know that pretty easily. Depending on the implementation, static analysis on Math.Sqrt() might not be that hard, although I'm not sure what optimizations are specifically performed. – John Feminella Mar 26 at 16:43
vote up 2 vote down

I put together (based on your code) two more comparable tests in C and C#. These two write a smaller array using the modulus operator for indexing (it adds a little overhead, but hey, we're trying to compare performance [at a crude level]).

C code:

#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include <math.h>

void main()
{
	int count = (int)1e8;
	int subcount = 1000;
	double* roots = (double*)malloc(sizeof(double) * subcount);
	clock_t start = clock();
	for (int i = 0 ; i < count; i++)
	{
		roots[i % subcount] = sqrt((double)i);
	}
	clock_t end = clock();
	double length = ((double)end - start) / CLOCKS_PER_SEC;
	printf("Time elapsed: %f\n", length);
}

In C#:

using System;

namespace CsPerfTest
{
    class Program
    {
        static void Main(string[] args)
        {
            int count = (int)1e8;
            int subcount = 1000;
            double[] roots = new double[subcount];
            DateTime startTime = DateTime.Now;
            for (int i = 0; i < count; i++)
            {
                roots[i % subcount] = Math.Sqrt(i);
            }
            TimeSpan runTime = DateTime.Now - startTime;
            Console.WriteLine("Time elapsed: " + Convert.ToString(runTime.TotalMilliseconds / 1000));
        }
    }
}

These tests write data to an array (so the .NET runtime shouldn't be allowed to cull the sqrt op) although the array is significantly smaller (didn't want to use excessive memory). I compiled these in release config and run them from inside a console window (instead of starting through VS).

On my computer the C# program varies between 6.2 and 6.9 seconds, while the C version varies between 6.9 and 7.1.

link|flag
vote up 1 vote down

It would seem to me that this is nothing to do with the languages themselves, rather it is to do with the different implementations of the square root function.

link|flag
I highly doubt differing sqrt implementations would cause that much disparity. – Alex Fort Mar 26 at 16:34
Especially since, even in C#, most of the math functions are still considered performance critical and are implemented as such. – Matt Olenik Mar 26 at 16:37
fsqrt is an IA-32 processor instruction, so language implementation is irrelevant these days. – Not Sure Mar 26 at 19:55
Step into MSVC's sqrt function with a debugger. It's doing a lot more than just executing the fsqrt instruction. – bk1e Mar 27 at 6:30
vote up 1 vote down

It might have to do with a compiler optimization that the C# version is using but the C version is not.

Do you have optimization disabled for both?

link|flag
vote up 1 vote down

The other factor that may be an issue here is that the C compiler compiles to generic native code for the processor family you target, whereas the MSIL generated when you compiled the C# code is then JIT compiled to target the exact processor you have complete with any optimisations that may be possible. So the native code generated from the C# may be considerably faster than the C.

link|flag
In theory, yes. In practice, that virtually never makes a measurable difference. A percent or two, perhaps, if you're lucky. – jalf Mar 26 at 16:48
or - if you have certain type of code that uses extensions that aren't in the allowed list for the 'generic' processor. Things like SSE flavours. Try with the processor target set higher, to see what differences you get. – gbjbaanb Mar 26 at 19:55
vote up 1 vote down

Whatever the time diff. may be, that "elapsed time" is invalid. It would only be a valid one if you can guarantee that both programs run under the exact same conditions.

Maybe you should try a win. equivalent to $/usr/bin/time my_cprog;/usr/bin/time my_csprog

link|flag
Why is this downvoted? Is anyone assuming that interrupts and context switches don't affect performance? Can anyone make assumptions on TLB misses, page swapping, etc? – Tom Mar 27 at 19:45
vote up 1 vote down

If you just single-step the code at the assembly level, including stepping through the square-root routine, you will probably get the answer to your question.

No need for educated guessing.

link|flag
I'd like to know how to do this – Josh Stodola Mar 26 at 19:51
Depends on your IDE or debugger. Break at the start of the pgm. Display the disassembly window, and start single-stepping. If using GDB, there are commands for stepping one instruction at a time. – Mike Dunlavey Mar 27 at 11:12
vote up 0 vote down

Actually guys, the loop is NOT being optimized away. I compiled John's code and examined the resulting .exe. The guts of the loop are as follows:

 IL_0005:  stloc.0
 IL_0006:  ldc.i4.0
 IL_0007:  stloc.1
 IL_0008:  br.s       IL_0016
 IL_000a:  ldloc.1
 IL_000b:  conv.r8
 IL_000c:  call       float64 [mscorlib]System.Math::Sqrt(float64)
 IL_0011:  pop
 IL_0012:  ldloc.1
 IL_0013:  ldc.i4.1
 IL_0014:  add
 IL_0015:  stloc.1
 IL_0016:  ldloc.1
 IL_0017:  ldc.i4     0x5f5e100
 IL_001c:  ble.s      IL_000a

Unless the runtime is smart enough to realize the loop does nothing and skips it?

Edit: Changing the C# to be:

 static void Main(string[] args)
 {
      DateTime startTime = DateTime.Now;
      double root = 0.0;
      for (int i = 0; i <= 100000000; i++)
      {
           root += Math.Sqrt(i);
      }
      System.Console.WriteLine(root);
      TimeSpan runTime = DateTime.Now - startTime;
      Console.WriteLine("Time elapsed: " +
          Convert.ToString(runTime.TotalMilliseconds / 1000));
 }

Results in the time elapsed (on my machine) going from 0.047 to 2.17. But is that just the overhead of adding a 100 million addition operators?

link|flag
Looking at the IL doesn't tell you much about optimizations because although the C# compiler does some things like constant folding and removing dead code, the IL then takes over and does the rest at load time. – Earwicker Mar 26 at 16:47
I mean the JIT takes over, of course, not the IL! – Earwicker Mar 26 at 16:47
That's what I thought might be the case. Even forcing it to do work, though, it's still 9 seconds faster than the C version. (I wouldn't have expected that at all) – Dana Mar 26 at 16:49
vote up 0 vote down

Have you tried running your C code with an executable built using the Visual C++ compiler instead of mingw? It is well-known that Microsoft's compiler produces faster executables than any other compiler on Windows.

link|flag
Well-known? Really? "Well-known" and "true" are not the same thing. – Mike Dunlavey Mar 28 at 12:51
vote up -3 vote down

I've always been under the assumption that C/C++ were faster or at least comparable to C#.net. What exactly is causing the C to run over 30 times slower?

C/C++ is faster if you're smarter than the C# compiler and/or you know information about your code that the compiler doesn't know, such as assumptions about how it's going to be used (sorry can't think of anything more specific off the top of my head) or other information that lets you skip certain checks because you know in your specific usage they aren't necessary, but something that the compiler can't assume.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.