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

For my work I require a very well optimized C/C++ library that provides sorting functionality. Intel IPP is perfect for my needs, except that it apparently does not support 64-bit integer data-types, which is a deal-breaker for this specific application.

It is also very important that the API give me the option to create an array containing the indexes after sorting (similarly to what the IPP ippsSortIndexAscend and ippsSortRadixIndexAscend family of functions provide) or allow me to re-arrange a second array based on the sorting of the first. Alternatively I could also use an open-source library where I could add this required functionality myself.

Is there an existing well-optimized library with comparable performance to Intel's IPP that meets these requirements? My understanding is that the STL sorting does not provide the same performance as IPP.

share|improve this question
1  
Maybe qsort() from stdlib.h ? – Alberto Bonsanto Nov 20 '12 at 13:22
1  
There are plenty of fast sort algorithms available in stl and boost. – mark Nov 20 '12 at 13:30
What's available in C is a very small (and not necessarily efficient) subset of what's available in C++. Do you need C or C++? – Jonathan Leffler Nov 20 '12 at 20:42
I can live with C++ just fine, but I'm looking for a very highly optimized implementation. i.e., one that uses SSE instructions and similar where available, preferably capable of running in multicore, etc. – skoy Nov 21 '12 at 9:35

closed as not constructive by Mike Pennington, gnat, Jeffrey, tstenner, Steven Penny Mar 30 at 20:40

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

I suggest you to download the MiBench benchmark application for quick sort. You can visit http://trac.sflr.org/trac/sunflowersim/browser/benchmarks/source/MiBench/automotive/qsort/qsort_large.c for the program.

Also I suggest you to try some optimization techniques that are available in the GCC Compiler that can dramatically improve your program's performance.

share|improve this answer

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