vote up 2 vote down star

I am working on a very large scale computing library that is using STL heavily. The library is being built using MSVC2003 and it is using its STL implementation. I am looking for an alternative STL implementation that would help the library lower its memory requirements and increase its performance.

It is not possible to switch to a newer version of MSVC for the moment.

I would like some feedback on real world usage not based on benchmarks if possible.

EDIT: To make it a little clearer, for example some STL implementation (like STLSoft) are proposing specific optimizations for string concatenation; these might sounds small in impact but they can lead to large improvements. STLPort is another good example where they clearly state their goal: having the fastest STL implementation around, there is the stdlib++, etc ... all of these can be good candidates but I have no time to test them all, i require some community help on that.

flag

80% accept rate
Perhaps it's better if you rephrase your question as "What is.. with lowest memory consumption", or add the subjective tag to it. – Asaf R Sep 23 '08 at 16:42
thanks for the suggestions ... – Fabien Hure Sep 23 '08 at 21:35

6 Answers

vote up 1 vote down check

STLPort. Havent measured memory usage differences, but it's definitelly quicker (yes, real world usage).

link|flag
It's useful to note that even video game developers use STLPort. See: Relic. – Hooked Aug 6 at 17:04
vote up 0 vote down

Have you profiled your code and considered small tweaks to those areas that are the problem? I would think it would be much less painful than what you're considering.

link|flag
vote up 1 vote down

Have you considered writing your own memory allocator? You don't always need to switch the entire STL if you just don't like the memory allocation strategy. All containers accept a replacement allocator.

link|flag
vote up 0 vote down

If performance is so critical to your application, and STL is interwoven into it, is it possible to find an open-source implementation (such as STL-Port, as mentioned) and fork it for yourself, making performance improvements as needed?

On the one hand, I can see this becoming a slippery slope where you make non-standard modifications to your fork of the STL library, thus creating problems. However, importance of performance to your application might outweigh the risk of this occurring.

link|flag
Performance is unlikely to be critical, given the statement that they can't upgrade. If it were truly critical, it would trump the no-upgrade claim. – MSalters Sep 24 '08 at 15:51
vote up 0 vote down

Most STL implementations, including the one of MSVC2003, are well implemented generic libraries. So you won't see a significant performance improvment from one implementation to the other.

However, sometimes you can write algorithm (or container) that are faster than the STL for you because you know something about your data that the STL writer did not new (since they were writing generic containers and algorithm).

In conclusion, if you want to improve your applications performances, you better try to create specialised containers that fit you data specially than looking for a more performant STL.

link|flag
vote up 1 vote down

I question your basic premise, that you can not switch to a newer version of MSVC.

I don't think you're going to get lower memory and increased performance "for free" by downloading a new STL. Or at least, if you did, you would probably have to do as many code fixes as if you were to just update to the latest MSVC.

Long term, there's no question you want to update... Do it now, and you might get lucky and get some of that memory and performance for free.

The only thing I can think to suggest to you along the lines of what you say you're looking for would be to try the Intel compiler, which I've had both good (performance!) and bad (quirky, sometimes!) experience with.

Other than that, find your own memory and performance problems, and write custom containers and algorithms. STL is awesome, but it's not a panacea for fixing all problems in all cases. Domain knowledge is your best ally.

link|flag
Your answer is not helping in any way as you obviously suggest something that cannot be considered at this time and obviously will not be. – Fabien Hure Sep 23 '08 at 15:49
As many domain specialists already know, STL implementation have different performance and memory profiles. Based on that fact it seems fair to me to find the ones that worked best for others and try them out in my own application. – Fabien Hure Sep 23 '08 at 15:51
By "domain" I meant, your actual problem space. IE, I work with healthcare software, so I work with custom containers and algorithms which are specific to the access patterns common in my healthcare software. And I'd agree with yrp that STLPort is worth trying. – Matt Cruikshank Sep 23 '08 at 21:35

Your Answer

Get an OpenID
or

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