vote up 4 vote down star

Hi!

I'm using quite much STL in performance critical C++ code under windows. One possible "cheap" way to get some extra performance would be to change to a faster STL library.

According to this post STLport is faster and uses less memory, however it's a few years old.

Has anyone made this change recently and what were your results?

flag

67% accept rate

6 Answers

vote up 0 vote down

I haven't tried it, but as far as I know, there have been no major changes to Microsoft's STL implementation. (There are no huge new optimizations in VS2008 compiler over 2005 either) So if STLPort was faster then, it's probably still the case.

But that's just speculation. :) Be sure to report back on the results if you try it out.

link|flag
vote up 0 vote down

One benefit of stlport is that it's open source.

link|flag
vote up 2 vote down

In a project i worked on that makes quite heavy use of stl, switching to STLport resulted in getting things done in half the time it took with Microsoft's STL implementation. It's no proof, but it's a good sign of performance, i guess. I believe it's partly due to STLport's advanced memory management system.

I do remember getting some warnings when making this change, but nothing that couldn't be worked around fast. As a drawback, I'd add that debugging with STLport is less easy with Visual Studio's debugger than with Microsoft's STL (Update : it seems there is a way to explain to the debugger how to handle STLport containers, thanks Jalf !).

The latest version goes back to October 2008 so there are still people working on it. See here for downloading it.

link|flag
1  
About debugging, isn't that just a matter of setting up the right visualizers for the debugger? stlport.svn.sourceforge.net/viewvc/stlport/… – jalf Mar 3 at 7:54
Nice ! I'll try that ! – Benoît Mar 3 at 8:36
1  
Can you please quantify your "half the time" quote? Am I correct in assuming you were using a release build? What were you doing? – MattyT Mar 3 at 8:48
It was the article and not STLport that was few years old. – Laserallan Mar 3 at 9:53
I was working on a graph algorithm (using Boost.Graph, which itself uses stl). I was iterating through vertices and edges, constructing lists of elements that matched a criterion, iterating through these lists... Execution time went from 17 seconds to 8. Of course, it was a release build. – Benoît Mar 3 at 12:26
show 1 more comment
vote up 5 vote down

I haven't compared the performance of STLPort to MSCVC but I'd be surprised if there were a significant difference. (In release mode of course - debug builds are likely to be quite different.) Unfortunately the link you provided - and any other comparison I've seen - is too light on details to be useful.

Before even considering changing standard library providers I recommend you heavily profile your code to determine where the bottlenecks are. This is standard advice; always profile before attempting any performance improvements!

Even if profiling does reveal performance issues in standard library containers or algorithms I'd suggest you first analyse how you're using them. Algorithmic improvements and appropriate container selection, especially considering Big-O costs, are far more likely to bring greater returns in performance.

link|flag
vote up 2 vote down

If you use the STLPort you will enter a world where every STL-based third party library you use will have to be recompiled with STLPort as well to avoid problems...

STLPort does have a different memory strategy, but if this is your bottleneck then your performance gain path is changing the allocator (switching to Hoard for example), not changing the STL.

link|flag
vote up 1 vote down

Before making the switch, be sure to test the MS (in fact, Dinkumware) library with checked iterators turned off. For some weird reason, they are turned on by default even in release builds and that makes a big difference when it comes to performance.

link|flag
Very good point, that makes serious difference. I've disabled them myself, but that might be the reason there was a speedup in the blog posting I mentioned in my post. – Laserallan Mar 3 at 15:32

Your Answer

Get an OpenID
or

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