Re: Why is VC++ STL so slow?
"David Alasiga" <dialectics@yahoo.com> wrote in message
news:kkjTg.182$If3.172@trnddc07...
I have a program using a map to insert 10,000 item and to do some
searching.
I compiled the program with VC++ 7.1 (VS2003), g++ (3.4.4) under Cygwin
and
g++ (3.4.4) under linux. g++ linux version runs 80% fast than VC++
version
and g++ Cygwin version (running on windows) runs 50% fast than VC++
version.
The VC++ and g++ Cygwin run in the same windows box and linux box is the
same machine as windows box. Why is VC++ STL so slow? Is the VC++ 7.1
STL
implemented by Dinkwumware?
Yes, we've supplied the Standard C++ library to Microsoft since 1996.
The only significant difference I can think of between the libstdc++
(g++) version of map and ours *might* be in the choice of allocators.
They favor allocators that optimize for speed, often at the expense
of wasting or even failing to release storage. We provide by default
a simple allocator that calls new and delete for each map node.
(Our add-on library, available at our web site, comes with an
assortment of allocators to choose among if you don't like the
default.) It's also possible that the underlying heap manager may
contribute, but I doubt it.
As for the insert and find machinery, they're too similar to
account for the difference you report.
P.J. Plauger
Dinkumware, Ltd.
http://www.dinkumware.com
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]