Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This code takes about 20 seconds in my VS2012, but only 1.x seconds in G++. Both in win8 x64 and compiled with default options.

list<double> items;
for(int i=0;i<10000000;i++){
    items.push_back(rand());
}
cout<<"done"<<endl;

Is it something about memory allocation? It takes 3~5 seconds to release memory after the ouput in VC++ in my machine, and even more than 1 minute in my firend's (win7 x64).

share|improve this question
22  
I am not sure what the default build config for G++ is, but for Visual Studio it's DEBUG and you don't want to compare performance of debug builds – emartel Nov 27 '12 at 15:45
1  
did you try to do items.reserve(10000000) right before the loop? – user1773602 Nov 27 '12 at 15:45
3  
@aleguna There is no reserve() in list; you're thinking vector. – Angew Nov 27 '12 at 15:46
2  
How did you measure time? Post the actual code. – Nawaz Nov 27 '12 at 15:47
3  
@aleguna there is no reserve for std::list – Arne Mertz Nov 27 '12 at 15:48
show 9 more comments

2 Answers

Hmm...I expanded your code to include timing:

#include <list>
#include <iostream>
#include <time.h>
#include <stdlib.h>

int main() { 
    std::list<double> items;

    clock_t start = clock();

    for(int i=0;i<10000000;i++){
        items.push_back(rand());
    }

    clock_t finish = clock();

    std::cout << "Time: " << double(finish-start)/CLOCKS_PER_SEC << "\n";
    return 0;
}

I compiled with VC++ using: cl /O2b2 /GL test_list.cpp

Likewise, I compiled with g++, using: g++ -O3 test_list.cpp

Then I ran the two.

With VC++ I got: Time: 1.293.
With g++ I got: Time: 1.313.

That's a small enough difference that I think I'd need to test quite a bit more to be at all certain of saying VC++ produced significantly faster code, but I think it's enough to support a conclusion that VC++ is not producing significantly slower code.

You need to turn on optimization for timing results to mean anything.

share|improve this answer
Thanks. My code is almost like this. The problem's the DEBUG compling option. – raulchen Nov 27 '12 at 16:08
4  
@raulchen Debug is meant to be slow so that it can be debugged. – Mysticial Nov 27 '12 at 16:15
2  
@Mystical What debug is meant for is to choose "noisy" errors to inform the developer of a potential problem rather than perform a handling appropriate to field deployment. 99% of the time this will be slower, but a release build is certainly free to react to an unexpected condition in a way that is slower. I mention in part because I actually don't believe in the debug/release distinction (!), assert, or verify: hostilefork.com/hoist – HostileFork Nov 27 '12 at 16:44
1  
@HostileFork: what a coincidence, just yesterday I named a thingy (to keep track of file, linenumber and function) CodePlace. maybe i read your article earlier. hope you don't have patent or copyright on the name! :-) – Cheers and hth. - Alf Nov 27 '12 at 16:58
@Cheersandhth.-Alf I'd never patent anything so narrow!!! (That's why I have worldwide exclusive rights on declarations starting with "c" and ending with "e"--upper and lower case. Once I finalize the settlement with those people who had the gall to call one of their classes CacheEngine, you'll be hearing from my lawyer.) – HostileFork Nov 27 '12 at 20:34

If you're on Windows and worry about performance, don't use STL containers. Functionally-equivalent ATL container classes are usually much faster.

On my laptop (i5-2410M CPU, Windows 7 64) your example (when compiled in Release build with visual studio 2010 for 64 bits) executes in 740 milliseconds. When using functionally-equivalent ATL container CAtlList<double>, the execution time drops to just 370 milliseconds.

Performance penalty for using standard libraries is about 50%, when compared to premium libraries by Microsoft.

Here's the source code:

void list_stl()
{
    std::list<double> items;
    CBenchmarkTimer tt( "10M doubles in std::list" );
    for( int i = 0; i < 10000000; i++ )
        items.push_back( rand() );
    tt.End();
}

void list_atl()
{
    CAtlList<double> items;
    CBenchmarkTimer tt( "10M doubles in CAtlList" );
    for( int i = 0; i < 10000000; i++ )
        items.AddTail( rand() );
    tt.End();
}

CBenchmarkTimer is my own class that uses high-resolution timer.

share|improve this answer
1  
I doubt they are functionally equivalent if it's that much faster, but I also doubt it's that much faster though... – Mooing Duck Nov 27 '12 at 16:53
3  
How exactly is the C++ standard library "open source"? – FredOverflow Nov 27 '12 at 16:54
@MooingDuck, I've added the source code - if you doubt, feel free to test yourself. And yes, they're functionally equivalent, see the documentation for CAtlList. – Soonts Nov 27 '12 at 18:33
@FredOverflow, thanks, good point. Corrected my answer. – Soonts Nov 27 '12 at 18:38
Why "-"? Compile the code and test yourself. CAtlList adds elements 2 times faster, iterates elements 10%-12% faster. – Soonts Nov 27 '12 at 22:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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