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.