vote up 1 vote down star

I am working on a cross-platform application that does some heavy number crunching. Specifically, it does some logarithmic spectral smoothing, i.e. many logarithms, trigonometric functions and exponentials.

Now this smoothing usually takes about ten seconds (per run) to complete on OSX. On Windows however, the same code takes TEN MINUTES!!!

Apart from being severely unnerved of MSVCs inadequacies in terms of syntax highlighting, error reporting, debugging capabilities and the incredibly useless cmath-library, this is just too much. Does Windows development really suck this hard or are there some subtleties to Windows programming that I don't know about?

Really, what is wrong with this development environment?

To formulate this as a serious question: "Is there something about MSVCs' cmath-library that I should know about?" "What tools can I use to find the real bottleneck in my code?"

Edit: Of course, I use the same computer for both compilations. This is the true thing that is happening right in front of me. I wish it was different. In general, I like Windows, but today it really stepped on my toes.

Edit2: The problem resolved itself after restarting the computer. It probably just had as bad a day as I had. Sorry for the fuss.

flag

8  
If you want a serious answer, you should turn down the hate on the Microsoft compiler. Whatever its sins are, it certainly is not 60 times slower than GCC on average. Its more likely that you have not configured it correctly. – PeterAllenWebb Oct 20 at 15:22
2  
the question is "what is wrong with your configuration", and not "what is wrong with windows programming". – Maximilian Mayerl Oct 20 at 15:25
2  
Since you use the same computer is windows running in a virtual machine? Would you like to post a parred down sample of the cross platform code that has performance issues? – dlamblin Oct 20 at 15:29
1  
It is running in Bootcamp, so it's no virtual machine. Later tonight, I will post a sample – Paperflyer Oct 20 at 16:38
1  
Closing seems a bit harsh. The tone of the question is definitely not ideal, but the questioner has a legitimate question underneath it all. The core of the question is not subjective: "why does the questioner's code run 60x slower on Windows?" The answer may prove to be "you're using MSVC wrong", hopefully more the questioner can give more information and the question can be reopened so he can get some help. – Stephen Canon Oct 20 at 20:18
show 5 more comments

closed as subjective and argumentative by Jason Punyon, Daniel Elliott, Remus Rusanu, Michael Petrotta, Adam Rosenfield Oct 20 at 17:07

6 Answers

vote up 0 vote down

It sounds like something is wrong at the fundamental level... running a debug will make a large difference 4x to 10x.... Debug is not optimized and has additional data appended to the code.

Is this comparison done on the same machine with the same processor? An old processor compared to the latest will make a huge difference.

What version of compilers are you running??

The optimizers have got better since VS 6.0.....

Are you running 32 bit on both or 64 bit on the Mac?

link|flag
vote up 3 vote down

Nothing in Visual C or C++ is that bad compared to the competition. There's a reason for this. I understand your frustration, but let's take this calmly.

First, make sure you've compiled in Release mode, not Debug mode.

Second, see if you've got x86 or x64 set. This is the sort of application that might do much better with x64, assuming you've got the CPU for that.

Now, open up the properties on your project. You're looking for Configuration Properties and under that C/C++. The first place to look is the Optimization tab. Look down the settings and change them as seems appropriate. Then look under Code Generation. Some of these settings could be important, such as Floating Point Model and Enable Enhanced Instruction Set.

If you've got all these set for maximum speed, and you've still got something like an order of magnitude performance difference, then resume ranting in frustration, 'cause I'm out of ideas.

link|flag
vote up 3 vote down

Based on the amount of your performance hit (60x), it sounds like you are doing your calculations in software.

This might be a symptom of running the Windows code in Debug mode, not enabling in the right CPU features into the code (MMX or something), or otherwise crippling the windows build.

Incidentally, A profiler might not be that helpful in this case. Assuming the math operations are being done in software, a profiler run on both Mac and Windows should show the same relative performance in the calculation subroutines. For example, a profile of subroutine X shows 60 seconds on Windows, but only 1 second on the Mac. The total execution time is much different, but on both platforms the relative time is 100%. The profiler will show differences in absolute performance, but you already noticed a problem with that.

link|flag
vote up 0 vote down

You could buy something like Ants and profile your code to understand the bottlenecks.

If you are working on the MS platform, and are needing to do a lot of transcendental operations in a performance sensitive application you should consider a tuned math library like CenterSpace's NMath (C#) or Intel's MKL (C/C++).

Computation in the windows environment can be very efficient done properly.

-Paul

link|flag
vote up 0 vote down
  • "Is there something about MSVCs' cmath-library that I should know about?"

It is highly likely to work well. Many people use it, if it was seriously broken, you could read about it in many places.

  • "What tools can I use to find the real bottleneck in my code?"

I'm not a Windows Programmer, but I'm certain there are good and well documented tools available. Look for a profiler? or use common sense armed with a divide and conquer approache.


Please turn down the hating ..

link|flag
vote up 0 vote down

Are you compiling for Release or Debug? Have you enabled full optimization?

link|flag

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