Looking for STL benchmark code

S

Steve

Hi,

I'm currently looking a porting our Windows Codewarrior based C++ projects
to MinGW and/or Visual Studio and I'm just wondering if there is a
'standard' suite of benchmark programs I can download and compile on the
various environments that will give me an idea on the relative performance
of each STL?

For example - a test program that will run through, say, appending one
character to a string 1000000 times, copying vectors, pushing and popping on
deques and lists, that sort of thing. What other things should I be looking
at to stress-test the STL?

Any pointers to anything that exists already will be most helpful.

Thanks.
 
T

Thomas Tutone

Steve said:
...I'm just wondering if there is a
'standard' suite of benchmark programs I can download and compile on the
various environments that will give me an idea on the relative performance
of each STL?

For example - a test program that will run through, say, appending one
character to a string 1000000 times, copying vectors, pushing and popping on
deques and lists, that sort of thing. What other things should I be looking
at to stress-test the STL?

When you say "STL," I'm assuming you literally mean the STL - that is,
the Standard Template Library - and not the C++ Standard Library. If
so, the traditional benchmark is the Stepanov benchmark, designed by
the Alex Stepanov (the original creator of the STL) to measure
abstraction penalties. It's a little dated, and you need to update it
to standard C++ (it was written in the mid-90's), but still quite
interesting. You can find a version here:

http://www.physics.ohio-state.edu/~wilkins/computing/benchmark/stepanov.html

Or google for "Stepanov benchmark"

Best regards,

Tom
 
A

Alex Vinokur

Steve wrote in message http://groups.google.com/group/comp.lang.c++/msg/23b25bc6a6b7296e
Hi,

I'm currently looking a porting our Windows Codewarrior based C++ projects
to MinGW and/or Visual Studio and I'm just wondering if there is a
'standard' suite of benchmark programs I can download and compile on the
various environments that will give me an idea on the relative performance
of each STL?

For example - a test program that will run through, say, appending one
character to a string 1000000 times, copying vectors, pushing and popping on
deques and lists, that sort of thing. What other things should I be looking
at to stress-test the STL?

Any pointers to anything that exists already will be most helpful.

Thanks.


Look at C/C++ Program Perfometer
http://lists.sourceforge.net/lists/listinfo/cpp-perfometer-users
that contains various testsuites ( http://lists.sourceforge.net/lists/listinfo/cpp-perfometer-users )

Alex Vinokur
email: alex DOT vinokur AT gmail DOT com
http://mathforum.org/library/view/10978.html
http://sourceforge.net/users/alexvn
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,584
Members
45,075
Latest member
MakersCBDBloodSupport

Latest Threads

Top