The Parallel Patterns Library (PPL), a programming model that resembles the C++ Standard Template Library (STL), was introduced in Visual Studios 2010. PPL provides general-purpose containers and algorithms for performing fine-grained parallelism. Additional containers and algorithms were shipped as part of the Sample Pack/ConcRT Extras, and in its latest version (v0.33), an updated version of parallel sort (along with 2 other algorithms for sorting in parallel) were introduced (please refer to my blog introducing the parallel sort algorithms in Sorting in PPL).
Question: if there are 10,000,000 integers that need to be sorted in parallel, would you use parallel sort? When would you use parallel buffered sort instead of parallel sort? Since the type is integral, is parallel radix sort the best option for this case? What if you are trying to sort complex numbers, strings, images, large vectors instead of integers? What if you have 48 cores at your disposal?
How do you pick the best parallel sort algorithm for your scenario?
In an attempt to answer this question, I have come up with a set of guidelines in this blog based on an experiment that I had conducted. The experiment compares the different parallel sorting algorithms provided in the sample pack based on different parameters that may affect the performance of the algorithm such as:
1) Number of elements to compare - this directly affects work-granularity and the median used by some sorts. For sorting small set of numbers, it may be not be worthwhile to sort in parallel. But for the spirit of the experiment, it would be interesting to plot the curve based on other parameters. We shall consider 3 sections for the number of elements:
a. Small (100-1K elements to compare)
b. Medium (10K-100K elements to compare)
c. Large (1M elements to compare)
2) Work done in comparator/hasher (cost of comparisons/hash) - there is a cost difference between comparing a pair of integers to comparing complex numbers. The experiment adds a delay in the comparator or hasher to simulate this cost. (Note: Comparing 2 numbers and hashing a number is not the same! Implementing a good hashing function requires the user to know the data set range and how each element in the data set can be transformed to a corresponding unsigned integers)
3) Data Set Characteristics - the nature of data and the correlation between them affects the sort algorithms. The experiment was conducted with the interesting data set characteristics as listed below, however, only the results from the Random data pattern will be discussed in the blog, as it is the most commonly used pattern. Extrapolating results for other data set characteristics is an exercise for the reader. The data patterns used for the experiment are:
a. Random data
b. Pre-Sorted
c. Nearly Sorted
d. Normal Distribution (with duplicates)
e. Sawtooth type
4) Sort Algorithms - the following sort algorithms were considered for the experiment:
a. Parallel Sort
b. Parallel Buffered Sort
c. Parallel Radix Sort
d. std::sort
5) Concurrency Index - Concurrency was varied from 1-8 (on an 8 core machine), to simulate varying degrees of concurrency.
A parameter that could affect the performance and behavior of the parallel sort algorithms is the size of chunks that are parallelized. For this experiment, I did not vary chunk size, but I left it to the defaults (varying this may add another dimension which would increase the complexity of the guideline. This is left as an exercise for you to experiment with.)
1) When number of elements to sort is small, std::sort may be the preferred option, irrespective of the concurrency index or the work done in the comparator. You can correlate this observation in the result data when the data sets are 100-1K elements big.
Note: you can have parallel_sort or parallel_buffered_sort invoke std::sort under the covers by specifying a chunk size larger than the data set, but also consider that parallel_buffered_sort would have to allocate O(N) space, which could take additional time (due to memory allocation/contention on the loader lock etc.).
2) When number of elements to sort is medium (10k - 100k elements) or large ( > 1M elements) and if allocating O(N) space is a concern (heavy contention on the loader lock/allocator or limited heap space due to the nature of work in the process), then parallel sort algorithm is the best alternative. Note: This could be applied to most cases when the number of elements to sort is medium and the cost of comparison is small or when dealing with low level of concurrency.
3) When number of elements to sort is medium (10k - 100k elements) and when O(N) extra space is affordable, parallel buffered sort would be the preferred choice (especially with a high degree of concurrency or heavy compare operations). A graph depicting this observation is given below:
4) When the number of elements to sort is large (1M elements) and when O(N) extra space is affordable, parallel radix sort would be the preferred choice (especially when the compare operation is equivalent to the hash operation and is heavy). Note: There is a restriction on the use of the parallel radix sort, due to the hashing concept where the element of the input data type needs to be hashed to a corresponding unsigned integer, which may sometimes not be possible.
Additionally, you can also visualize and clock the workings/behavior of the different sort algorithms with varying data patterns, concurrency index and comparator/hasher cost with the Parallel Sort Demo (under ConcRT_SamplePack->Samples->ParallelSortDemo) shipped as part of the Sample Pack.
For most real-world cases, parallel sort would be optimal algorithm. However, with higher concurrency levels, larger data-set size or heavier comparator/hasher complexity, parallel buffered sort or parallel radix sort may perform magnitudes better.
So, back to the question: if there are 10,000,000 integers that need to be sorted, would you use parallel sort? Based on this example, I would use parallel radix sort.
1. Code used to generate the data for this experiment:
/// Parallel Sort Experiment/// Compile with: /EHsc#include <iostream>#include <string>#include <random>#include <Windows.h>#include <time.h>#include <algorithm>#include <ppl.h>#include <concrtrm.h>#include <ppl_extras.h>#pragma region Enum Definitions/// <summary>/// The different parallel sort apis to be tested by the model/// </summary>enum SortType{ kParallelSort=0, kParallelBufferedSort, kParallelRadixSort, kStdSort, kMaxSortType};/// <summary>/// The different sort data characteristics'/// that may cause varying behavior in the sort algorithm/// </summary>enum DataSetCharacteristics{ kRandom=0, kPreSorted, kNearlySorted, kNormalDistributionWithDups, kSawTooth, kMaxDataSetCharacteristics};#pragma endregion#pragma region Enum Helpers/// <summary>/// Enum helper function that returns the/// string equivalent for the DataSetCharacteristics enum/// </summary>////// <param name="d">DataSetCharacteristics enum</param>////// <returns>value of DataSetCharacteristics as string</returns>const std::string GetDataSetCharacteristicsTypeFunc(size_t d){ std::string retVal; switch(d) { case kRandom: retVal = "Random"; break; case kPreSorted: retVal = "PreSorted"; break; case kNearlySorted: retVal = "NearlySorted"; break; case kNormalDistributionWithDups: retVal = "NormalDistributionWithDups"; break; case kSawTooth: retVal = "SawTooth"; break; default: throw std::exception("Bad enum definition in DataSetCharacteristics"); break; } return retVal;}/// <summary>/// Enum helper function that returns the/// string equivalent for the SortType enum/// </summary>////// <param name="s">SortType enum</param>////// <returns>value of SortType as string</returns>const std::string GetSortTypeFunc(size_t s){ std::string retVal; switch(s) { case kParallelSort: retVal = "ParallelSort"; break; case kParallelBufferedSort: retVal = "ParallelBufferedSort"; break; case kParallelRadixSort: retVal = "ParallelRadixSort"; break; case kStdSort: retVal = "StdSort"; break; default: throw std::exception("Bad enum definition in SortType"); break; } return retVal;}#pragma endregion#pragma region DataSetCharacteristics Functions/// <summary>/// Completely randomly reshuffled array (this is the only /// test that naive people use in evaluating sorting algorithms)/// </summary>////// <param name="numElems">hint towards number of elements in the returned vector</param>////// <returns>data set</returns>std::vector<int> GetInputRandom(const size_t& numElems){ std::vector<int> v; for(int i=0; i < (int)numElems; ++i) { int e = i; if ((rand() % 2) == 0) e = -e; v.push_back(e); } std::random_shuffle(v.begin(), v.end()); return v;}/// <summary>/// Pre-sorted data with no duplicates (quicksort does not perform quite well in this scenario). /// This is actually a pretty important case as often sorting is actually resorting of previously /// sorted data done after minimal modifications of the data set/// </summary>////// <param name="numElems">hint towards number of elements in the returned vector</param>////// <returns>data set</returns>std::vector<int> GetInputPreSorted(const size_t& numElems){ std::vector<int> v(std::move(GetInputRandom(numElems))); std::sort(v.begin(),v.end()); return v;}/// <summary>/// Nearly sorted/// </summary>////// <param name="numElems">hint towards number of elements in the returned vector</param>////// <returns>data set</returns>std::vector<int> GetInputNearlySorted(const size_t& numElems){ std::vector<int> v(std::move(GetInputRandom(numElems))); std::sort(v.begin(),v.end()); std::next_permutation(v.begin(),v.end()); return v;}/// <summary>/// Data that have normal distribution with duplicate (or close) keys/// </summary>////// <param name="numElems">hint towards number of elements in the returned vector</param>////// <returns>data set</returns>std::vector<int> GetInputNormalDistributionWithDups(const size_t& numElems){ std::vector<int> v; std::ranlux64_base_01 eng; std::normal_distribution<double> dist(0.0, 1000.0); std::normal_distribution<double>::input_type engval = eng(); std::normal_distribution<double>::result_type distval = dist(eng); dist.reset(); // discard any cached values for(int i=0; i < (int)numElems; ++i) v.push_back(((int)dist(eng))); if (numElems != 0) { const size_t numDups = rand() % numElems; for(auto i=0; i < (int)numDups; ++i) v.push_back(v[rand() % v.size()]); random_shuffle(v.begin(), v.end()); } return v;}/// <summary>/// SawTooth/Chain-saw data/// </summary>////// <param name="numElems">hint towards number of elements in the returned vector</param>////// <returns>data set as a vector of ints</returns>std::vector<int> GetInputSawTooth(const size_t& numElems){ auto numVprocs = Concurrency::CurrentScheduler::Get()->GetNumberOfVirtualProcessors(); //make toothsize default to 3 if numElems / (2 * numVprocs) = 0 size_t toothSize = numElems / (2 * numVprocs); (toothSize == 0) ? toothSize = 3 : __noop; std::vector<int> sawtoothData(std::move(GetInputPreSorted(toothSize))); std::vector<int> v(numElems); const size_t remainder = numElems % toothSize; auto iter = v.begin(); for(int i=0; i < (int)((numElems - remainder) / toothSize); ++i) { iter = std::copy(sawtoothData.begin(), sawtoothData.end(), iter); } auto cit = sawtoothData.begin(); for(auto it = iter; it != v.end(); ++it, ++cit) *it = *cit; return v;} /// <summary> /// Interface Function that invokes the corrosponding Data set characteristics function /// /// </summary> /// /// <param name="numElems">hint towards number of elements in the returned vector</param> /// <param name="dsc">the data set characteristic that defines the correlation between data elements</param> /// /// <returns>data set</returns>std::vector<int> GetInput(const size_t& numElems, const DataSetCharacteristics& dsc){ switch(dsc) { case kRandom: return GetInputRandom(numElems); break; case kPreSorted: return GetInputPreSorted(numElems); break; case kNearlySorted: return GetInputNearlySorted(numElems); break; case kNormalDistributionWithDups: return GetInputNormalDistributionWithDups(numElems); break; case kSawTooth: return GetInputSawTooth(numElems); break; default: throw; }}#pragma endregion#pragma region Sort Function/// <summary>/// Spin function that does an arbitary amount/// note: the 'work' param does not constitute a notion of time/// </summary>#pragma optimize("", off)__declspec(noinline) void Spin(unsigned int work){ for(unsigned long long i=0; i < work*work*work; ++i);}#pragma optimize("",on)/// <summary>/// Function Object used for performing sort/// </summary>class SortFunc{public: explicit SortFunc(unsigned int work=0) :m_work(work) { } /// <summary> /// This is semantically similar to std::less after performing a specified amount of work /// Note: This would be used by sort/parallel_sort/parallel_buffered_sort /// </summary> /// /// <param name="left">The left operand in the inequality to be tested</param> /// <param name="right">The right operand in the inequality to be tested</param> /// /// <returns>true if left < right; false if left >= right</returns> bool operator()(int left, int right) const { Spin(m_work); return (left < right); } /// <summary> /// This is a hasher function that would be used by parallel_radixsort /// where a specified amount of work is simulated and the corrosponding hash value /// is returned /// </summary> /// /// <param name="val">The value to hash</param> /// /// <returns>corrosponding hash value based on the default hash function provided</returns> size_t operator()(int val) const { Spin(m_work); return Concurrency::samples::_Radix_sort_default_function<int>()(val); }private: const unsigned int m_work;};#pragma endregion#pragma region StopWatch/// <summary>/// Class for recording run times/// </summary>class StopWatch{public: StopWatch() :m_start(0), m_end(0) { unsigned __int64 start, end; QueryPerformanceCounter((LARGE_INTEGER *) &start); QueryPerformanceCounter((LARGE_INTEGER *) &end); m_clockError = end - start; } void Start() { QueryPerformanceCounter((LARGE_INTEGER *) &m_start); } unsigned int Stop() { QueryPerformanceCounter((LARGE_INTEGER *) &m_end); return GetPerformanceCount(); } const unsigned int GetPerformanceCount() const { return (unsigned int)(m_end - m_start - m_clockError); }private: __int64 m_clockError; unsigned __int64 m_start; unsigned __int64 m_end;};/// <summary>/// Helper function that clocks and returns run times of a function/// </summary>template<typename Func>const unsigned int ClockFunc(Func func){ StopWatch stopwatch; stopwatch.Start(); func(); return stopwatch.Stop();}#pragma endregion/// <summary>/// Runs the specific sort scenario/// </summary>////// <param name="left">The left operand in the inequality to be tested</param>void RunScenario(const size_t numElems){ for(size_t dsc = 0; dsc < kMaxDataSetCharacteristics; ++dsc) { for(size_t concurrency = 1; concurrency <= Concurrency::GetProcessorCount(); ++concurrency) { const std::vector<int> data(GetInput(numElems, (DataSetCharacteristics)dsc)); for(size_t sortType = 0; sortType < kMaxSortType; ++sortType) { for(unsigned int comparatorWork=0; comparatorWork <= 10; ++comparatorWork) { std::cout << numElems << "," << GetDataSetCharacteristicsTypeFunc(dsc) << "," << concurrency << "," << GetSortTypeFunc(sortType) << "," << comparatorWork << ","; std::vector<unsigned int> timings; for(size_t iterations = 0; iterations < 11; ++iterations) { switch(sortType) { case kParallelSort: { Concurrency::CurrentScheduler::Create(Concurrency::SchedulerPolicy(2, Concurrency::MinConcurrency, concurrency, Concurrency::MaxConcurrency, concurrency)); std::vector<int> v(data); timings.push_back(ClockFunc([&v, &comparatorWork]() {Concurrency::samples::parallel_sort(v.begin(), v.end(), SortFunc(comparatorWork));})); Concurrency::CurrentScheduler::Detach(); } break; case kParallelBufferedSort: { Concurrency::CurrentScheduler::Create(Concurrency::SchedulerPolicy(2, Concurrency::MinConcurrency, concurrency, Concurrency::MaxConcurrency, concurrency)); std::vector<int> v(data); timings.push_back(ClockFunc([&v, &comparatorWork]() {Concurrency::samples::parallel_buffered_sort(v.begin(), v.end(), SortFunc(comparatorWork));})); Concurrency::CurrentScheduler::Detach(); } break; case kParallelRadixSort: { Concurrency::CurrentScheduler::Create(Concurrency::SchedulerPolicy(2, Concurrency::MinConcurrency, concurrency, Concurrency::MaxConcurrency, concurrency)); std::vector<int> v(data); timings.push_back(ClockFunc([&v, &comparatorWork]() {Concurrency::samples::parallel_radixsort(v.begin(), v.end(), SortFunc(comparatorWork));})); Concurrency::CurrentScheduler::Detach(); } break; case kStdSort: { std::vector<int> v(data); timings.push_back(ClockFunc([&v, &comparatorWork]() {std::sort(v.begin(), v.end(), SortFunc(comparatorWork));})); } break; } } //report median time std::sort(timings.begin(), timings.end()); std::cout << timings.at((int)((timings.size()-1)/2)) << std::endl; } } } }}int main(int argc, char* argv[]){ //Run Scenario for Perf Measurement std::cout << "NumElements," << "DataSetCharacteristics," << "Concurrency," << "SortType," << "WorkInComparator," << "Performance" << std::endl; for(size_t dataSize = 10; dataSize <= 1000000; dataSize*=10) RunScenario(dataSize); return 0;}
/// Parallel Sort Experiment/// Compile with: /EHsc
#include <iostream>#include <string>#include <random>#include <Windows.h>#include <time.h>#include <algorithm>#include <ppl.h>#include <concrtrm.h>
#pragma region Enum Definitions/// <summary>/// The different parallel sort apis to be tested by the model/// </summary>enum SortType{ kParallelSort=0, kParallelBufferedSort, kParallelRadixSort, kStdSort, kMaxSortType};/// <summary>/// The different sort data characteristics'/// that may cause varying behavior in the sort algorithm/// </summary>enum DataSetCharacteristics{ kRandom=0, kPreSorted, kNearlySorted, kNormalDistributionWithDups, kSawTooth, kMaxDataSetCharacteristics};#pragma endregion#pragma region Enum Helpers/// <summary>/// Enum helper function that returns the/// string equivalent for the DataSetCharacteristics enum/// </summary>////// <param name="d">DataSetCharacteristics enum</param>////// <returns>value of DataSetCharacteristics as string</returns>const std::string GetDataSetCharacteristicsTypeFunc(size_t d){ std::string retVal; switch(d) { case kRandom: retVal = "Random"; break; case kPreSorted: retVal = "PreSorted"; break; case kNearlySorted: retVal = "NearlySorted"; break; case kNormalDistributionWithDups: retVal = "NormalDistributionWithDups"; break; case kSawTooth: retVal = "SawTooth"; break; default: throw std::exception("Bad enum definition in DataSetCharacteristics"); break; } return retVal;}/// <summary>/// Enum helper function that returns the/// string equivalent for the SortType enum/// </summary>////// <param name="s">SortType enum</param>////// <returns>value of SortType as string</returns>const std::string GetSortTypeFunc(size_t s){ std::string retVal; switch(s) { case kParallelSort: retVal = "ParallelSort"; break; case kParallelBufferedSort: retVal = "ParallelBufferedSort"; break; case kParallelRadixSort: retVal = "ParallelRadixSort"; break; case kStdSort: retVal = "StdSort"; break; default: throw std::exception("Bad enum definition in SortType"); break; } return retVal;}#pragma endregion#pragma region DataSetCharacteristics Functions/// <summary>/// Completely randomly reshuffled array (this is the only /// test that naive people use in evaluating sorting algorithms)/// </summary>////// <param name="numElems">hint towards number of elements in the returned vector</param>////// <returns>data set</returns>std::vector<int> GetInputRandom(const size_t& numElems){ std::vector<int> v; for(int i=0; i < (int)numElems; ++i) { int e = i; if ((rand() % 2) == 0) e = -e; v.push_back(e); } std::random_shuffle(v.begin(), v.end()); return v;}/// <summary>/// Pre-sorted data with no duplicates (quicksort does not perform quite well in this scenario). /// This is actually a pretty important case as often sorting is actually resorting of previously /// sorted data done after minimal modifications of the data set/// </summary>////// <param name="numElems">hint towards number of elements in the returned vector</param>////// <returns>data set</returns>std::vector<int> GetInputPreSorted(const size_t& numElems){ std::vector<int> v(std::move(GetInputRandom(numElems))); std::sort(v.begin(),v.end()); return v;}/// <summary>/// Nearly sorted/// </summary>////// <param name="numElems">hint towards number of elements in the returned vector</param>////// <returns>data set</returns>std::vector<int> GetInputNearlySorted(const size_t& numElems){ std::vector<int> v(std::move(GetInputRandom(numElems))); std::sort(v.begin(),v.end()); std::next_permutation(v.begin(),v.end()); return v;}/// <summary>/// Data that have normal distribution with duplicate (or close) keys/// </summary>////// <param name="numElems">hint towards number of elements in the returned vector</param>////// <returns>data set</returns>std::vector<int> GetInputNormalDistributionWithDups(const size_t& numElems){ std::vector<int> v; std::ranlux64_base_01 eng; std::normal_distribution<double> dist(0.0, 1000.0); std::normal_distribution<double>::input_type engval = eng(); std::normal_distribution<double>::result_type distval = dist(eng); dist.reset(); // discard any cached values for(int i=0; i < (int)numElems; ++i) v.push_back(((int)dist(eng))); if (numElems != 0) { const size_t numDups = rand() % numElems; for(auto i=0; i < (int)numDups; ++i) v.push_back(v[rand() % v.size()]); random_shuffle(v.begin(), v.end()); } return v;}/// <summary>/// SawTooth/Chain-saw data/// </summary>////// <param name="numElems">hint towards number of elements in the returned vector</param>////// <returns>data set as a vector of ints</returns>std::vector<int> GetInputSawTooth(const size_t& numElems){ auto numVprocs = Concurrency::CurrentScheduler::Get()->GetNumberOfVirtualProcessors(); //make toothsize default to 3 if numElems / (2 * numVprocs) = 0 size_t toothSize = numElems / (2 * numVprocs); (toothSize == 0) ? toothSize = 3 : __noop; std::vector<int> sawtoothData(std::move(GetInputPreSorted(toothSize))); std::vector<int> v(numElems); const size_t remainder = numElems % toothSize; auto iter = v.begin(); for(int i=0; i < (int)((numElems - remainder) / toothSize); ++i) { iter = std::copy(sawtoothData.begin(), sawtoothData.end(), iter); } auto cit = sawtoothData.begin(); for(auto it = iter; it != v.end(); ++it, ++cit) *it = *cit; return v;} /// <summary> /// Interface Function that invokes the corrosponding Data set characteristics function /// /// </summary> /// /// <param name="numElems">hint towards number of elements in the returned vector</param> /// <param name="dsc">the data set characteristic that defines the correlation between data elements</param> /// /// <returns>data set</returns>std::vector<int> GetInput(const size_t& numElems, const DataSetCharacteristics& dsc){ switch(dsc) { case kRandom: return GetInputRandom(numElems); break; case kPreSorted: return GetInputPreSorted(numElems); break; case kNearlySorted: return GetInputNearlySorted(numElems); break; case kNormalDistributionWithDups: return GetInputNormalDistributionWithDups(numElems); break; case kSawTooth: return GetInputSawTooth(numElems); break; default: throw; }}#pragma endregion#pragma region Sort Function/// <summary>/// Spin function that does an arbitary amount/// note: the 'work' param does not constitute a notion of time/// </summary>#pragma optimize("", off)__declspec(noinline) void Spin(unsigned int work){ for(unsigned long long i=0; i < work*work*work; ++i);}#pragma optimize("",on)/// <summary>/// Function Object used for performing sort/// </summary>class SortFunc{public: explicit SortFunc(unsigned int work=0) :m_work(work) { } /// <summary> /// This is semantically similar to std::less after performing a specified amount of work /// Note: This would be used by sort/parallel_sort/parallel_buffered_sort /// </summary> /// /// <param name="left">The left operand in the inequality to be tested</param> /// <param name="right">The right operand in the inequality to be tested</param> /// /// <returns>true if left < right; false if left >= right</returns> bool operator()(int left, int right) const { Spin(m_work); return (left < right); } /// <summary> /// This is a hasher function that would be used by parallel_radixsort /// where a specified amount of work is simulated and the corrosponding hash value /// is returned /// </summary> /// /// <param name="val">The value to hash</param> /// /// <returns>corrosponding hash value based on the default hash function provided</returns> size_t operator()(int val) const { Spin(m_work); return Concurrency::samples::_Radix_sort_default_function<int>()(val); }private: const unsigned int m_work;};#pragma endregion#pragma region StopWatch/// <summary>/// Class for recording run times/// </summary>class StopWatch{public: StopWatch() :m_start(0), m_end(0) { unsigned __int64 start, end; QueryPerformanceCounter((LARGE_INTEGER *) &start); QueryPerformanceCounter((LARGE_INTEGER *) &end); m_clockError = end - start; } void Start() { QueryPerformanceCounter((LARGE_INTEGER *) &m_start); } unsigned int Stop() { QueryPerformanceCounter((LARGE_INTEGER *) &m_end); return GetPerformanceCount(); } const unsigned int GetPerformanceCount() const { return (unsigned int)(m_end - m_start - m_clockError); }private: __int64 m_clockError; unsigned __int64 m_start; unsigned __int64 m_end;};/// <summary>/// Helper function that clocks and returns run times of a function/// </summary>template<typename Func>const unsigned int ClockFunc(Func func){ StopWatch stopwatch; stopwatch.Start(); func(); return stopwatch.Stop();}#pragma endregion/// <summary>/// Runs the specific sort scenario/// </summary>////// <param name="left">The left operand in the inequality to be tested</param>void RunScenario(const size_t numElems){ for(size_t dsc = 0; dsc < kMaxDataSetCharacteristics; ++dsc) { for(size_t concurrency = 1; concurrency <= Concurrency::GetProcessorCount(); ++concurrency) { const std::vector<int> data(GetInput(numElems, (DataSetCharacteristics)dsc)); for(size_t sortType = 0; sortType < kMaxSortType; ++sortType) { for(unsigned int comparatorWork=0; comparatorWork <= 10; ++comparatorWork) { std::cout << numElems << "," << GetDataSetCharacteristicsTypeFunc(dsc) << "," << concurrency << "," << GetSortTypeFunc(sortType) << "," << comparatorWork << ","; std::vector<unsigned int> timings; for(size_t iterations = 0; iterations < 11; ++iterations) { switch(sortType) { case kParallelSort: { Concurrency::CurrentScheduler::Create(Concurrency::SchedulerPolicy(2, Concurrency::MinConcurrency, concurrency, Concurrency::MaxConcurrency, concurrency)); std::vector<int> v(data); timings.push_back(ClockFunc([&v, &comparatorWork]() {Concurrency::samples::parallel_sort(v.begin(), v.end(), SortFunc(comparatorWork));})); Concurrency::CurrentScheduler::Detach(); } break; case kParallelBufferedSort: { Concurrency::CurrentScheduler::Create(Concurrency::SchedulerPolicy(2, Concurrency::MinConcurrency, concurrency, Concurrency::MaxConcurrency, concurrency)); std::vector<int> v(data); timings.push_back(ClockFunc([&v, &comparatorWork]() {Concurrency::samples::parallel_buffered_sort(v.begin(), v.end(), SortFunc(comparatorWork));})); Concurrency::CurrentScheduler::Detach(); } break; case kParallelRadixSort: { Concurrency::CurrentScheduler::Create(Concurrency::SchedulerPolicy(2, Concurrency::MinConcurrency, concurrency, Concurrency::MaxConcurrency, concurrency)); std::vector<int> v(data); timings.push_back(ClockFunc([&v, &comparatorWork]() {Concurrency::samples::parallel_radixsort(v.begin(), v.end(), SortFunc(comparatorWork));})); Concurrency::CurrentScheduler::Detach(); } break; case kStdSort: { std::vector<int> v(data); timings.push_back(ClockFunc([&v, &comparatorWork]() {std::sort(v.begin(), v.end(), SortFunc(comparatorWork));})); } break; } } //report median time std::sort(timings.begin(), timings.end()); std::cout << timings.at((int)((timings.size()-1)/2)) << std::endl; } } } }}int main(int argc, char* argv[]){ //Run Scenario for Perf Measurement std::cout << "NumElements," << "DataSetCharacteristics," << "Concurrency," << "SortType," << "WorkInComparator," << "Performance" << std::endl; for(size_t dataSize = 10; dataSize <= 1000000; dataSize*=10) RunScenario(dataSize); return 0;}
2. Raw data generated by the code in this experiment:
NumElements,DataSetCharacteristics,Concurrency,SortType,WorkInComparator,Performance10,Random,1,ParallelSort,0,110,Random,1,ParallelSort,1,210,Random,1,ParallelSort,2,310,Random,1,ParallelSort,3,710,Random,1,ParallelSort,4,1410,Random,1,ParallelSort,5,2510,Random,1,ParallelSort,6,4210,Random,1,ParallelSort,7,6510,Random,1,ParallelSort,8,9610,Random,1,ParallelSort,9,13510,Random,1,ParallelSort,10,18510,Random,1,ParallelBufferedSort,0,110,Random,1,ParallelBufferedSort,1,210,Random,1,ParallelBufferedSort,2,310,Random,1,ParallelBufferedSort,3,710,Random,1,ParallelBufferedSort,4,1410,Random,1,ParallelBufferedSort,5,2510,Random,1,ParallelBufferedSort,6,4210,Random,1,ParallelBufferedSort,7,6610,Random,1,ParallelBufferedSort,8,9610,Random,1,ParallelBufferedSort,9,13610,Random,1,ParallelBufferedSort,10,18510,Random,1,ParallelRadixSort,0,2210,Random,1,ParallelRadixSort,1,2410,Random,1,ParallelRadixSort,2,3110,Random,1,ParallelRadixSort,3,5210,Random,1,ParallelRadixSort,4,8810,Random,1,ParallelRadixSort,5,14710,Random,1,ParallelRadixSort,6,23510,Random,1,ParallelRadixSort,7,35910,Random,1,ParallelRadixSort,8,52410,Random,1,ParallelRadixSort,9,73310,Random,1,ParallelRadixSort,10,100410,Random,1,StdSort,0,110,Random,1,StdSort,1,110,Random,1,StdSort,2,310,Random,1,StdSort,3,610,Random,1,StdSort,4,1310,Random,1,StdSort,5,2410,Random,1,StdSort,6,4010,Random,1,StdSort,7,6310,Random,1,StdSort,8,9210,Random,1,StdSort,9,13110,Random,1,StdSort,10,17910,Random,2,ParallelSort,0,210,Random,2,ParallelSort,1,210,Random,2,ParallelSort,2,310,Random,2,ParallelSort,3,510,Random,2,ParallelSort,4,910,Random,2,ParallelSort,5,1510,Random,2,ParallelSort,6,2610,Random,2,ParallelSort,7,4010,Random,2,ParallelSort,8,5910,Random,2,ParallelSort,9,8310,Random,2,ParallelSort,10,11110,Random,2,ParallelBufferedSort,0,110,Random,2,ParallelBufferedSort,1,210,Random,2,ParallelBufferedSort,2,310,Random,2,ParallelBufferedSort,3,510,Random,2,ParallelBufferedSort,4,910,Random,2,ParallelBufferedSort,5,1610,Random,2,ParallelBufferedSort,6,2610,Random,2,ParallelBufferedSort,7,4010,Random,2,ParallelBufferedSort,8,5910,Random,2,ParallelBufferedSort,9,8310,Random,2,ParallelBufferedSort,10,11310,Random,2,ParallelRadixSort,0,4810,Random,2,ParallelRadixSort,1,4910,Random,2,ParallelRadixSort,2,5610,Random,2,ParallelRadixSort,3,7910,Random,2,ParallelRadixSort,4,11610,Random,2,ParallelRadixSort,5,18010,Random,2,ParallelRadixSort,6,26410,Random,2,ParallelRadixSort,7,38610,Random,2,ParallelRadixSort,8,56210,Random,2,ParallelRadixSort,9,75910,Random,2,ParallelRadixSort,10,100010,Random,2,StdSort,0,110,Random,2,StdSort,1,110,Random,2,StdSort,2,210,Random,2,StdSort,3,410,Random,2,StdSort,4,810,Random,2,StdSort,5,1410,Random,2,StdSort,6,2410,Random,2,StdSort,7,3710,Random,2,StdSort,8,5510,Random,2,StdSort,9,7810,Random,2,StdSort,10,10710,Random,3,ParallelSort,0,210,Random,3,ParallelSort,1,210,Random,3,ParallelSort,2,310,Random,3,ParallelSort,3,710,Random,3,ParallelSort,4,1410,Random,3,ParallelSort,5,2410,Random,3,ParallelSort,6,4110,Random,3,ParallelSort,7,6310,Random,3,ParallelSort,8,9310,Random,3,ParallelSort,9,13110,Random,3,ParallelSort,10,18110,Random,3,ParallelBufferedSort,0,110,Random,3,ParallelBufferedSort,1,210,Random,3,ParallelBufferedSort,2,310,Random,3,ParallelBufferedSort,3,710,Random,3,ParallelBufferedSort,4,1310,Random,3,ParallelBufferedSort,5,2410,Random,3,ParallelBufferedSort,6,4010,Random,3,ParallelBufferedSort,7,6310,Random,3,ParallelBufferedSort,8,9410,Random,3,ParallelBufferedSort,9,13210,Random,3,ParallelBufferedSort,10,17910,Random,3,ParallelRadixSort,0,7210,Random,3,ParallelRadixSort,1,7010,Random,3,ParallelRadixSort,2,8410,Random,3,ParallelRadixSort,3,10010,Random,3,ParallelRadixSort,4,14510,Random,3,ParallelRadixSort,5,20110,Random,3,ParallelRadixSort,6,28510,Random,3,ParallelRadixSort,7,41010,Random,3,ParallelRadixSort,8,57610,Random,3,ParallelRadixSort,9,77910,Random,3,ParallelRadixSort,10,104010,Random,3,StdSort,0,110,Random,3,StdSort,1,110,Random,3,StdSort,2,210,Random,3,StdSort,3,710,Random,3,StdSort,4,1410,Random,3,StdSort,5,2310,Random,3,StdSort,6,3910,Random,3,StdSort,7,6010,Random,3,StdSort,8,9010,Random,3,StdSort,9,12710,Random,3,StdSort,10,17310,Random,4,ParallelSort,0,210,Random,4,ParallelSort,1,210,Random,4,ParallelSort,2,410,Random,4,ParallelSort,3,710,Random,4,ParallelSort,4,1510,Random,4,ParallelSort,5,2710,Random,4,ParallelSort,6,4510,Random,4,ParallelSort,7,7110,Random,4,ParallelSort,8,10510,Random,4,ParallelSort,9,14810,Random,4,ParallelSort,10,20110,Random,4,ParallelBufferedSort,0,110,Random,4,ParallelBufferedSort,1,210,Random,4,ParallelBufferedSort,2,310,Random,4,ParallelBufferedSort,3,710,Random,4,ParallelBufferedSort,4,1510,Random,4,ParallelBufferedSort,5,2710,Random,4,ParallelBufferedSort,6,4610,Random,4,ParallelBufferedSort,7,7210,Random,4,ParallelBufferedSort,8,10410,Random,4,ParallelBufferedSort,9,14810,Random,4,ParallelBufferedSort,10,20110,Random,4,ParallelRadixSort,0,10110,Random,4,ParallelRadixSort,1,11310,Random,4,ParallelRadixSort,2,10810,Random,4,ParallelRadixSort,3,12510,Random,4,ParallelRadixSort,4,16510,Random,4,ParallelRadixSort,5,22810,Random,4,ParallelRadixSort,6,31810,Random,4,ParallelRadixSort,7,45110,Random,4,ParallelRadixSort,8,59610,Random,4,ParallelRadixSort,9,80210,Random,4,ParallelRadixSort,10,105710,Random,4,StdSort,0,110,Random,4,StdSort,1,110,Random,4,StdSort,2,310,Random,4,StdSort,3,710,Random,4,StdSort,4,1410,Random,4,StdSort,5,2610,Random,4,StdSort,6,5010,Random,4,StdSort,7,7210,Random,4,StdSort,8,10110,Random,4,StdSort,9,14310,Random,4,StdSort,10,19610,Random,5,ParallelSort,0,210,Random,5,ParallelSort,1,210,Random,5,ParallelSort,2,310,Random,5,ParallelSort,3,710,Random,5,ParallelSort,4,1410,Random,5,ParallelSort,5,2610,Random,5,ParallelSort,6,4210,Random,5,ParallelSort,7,6510,Random,5,ParallelSort,8,9610,Random,5,ParallelSort,9,13510,Random,5,ParallelSort,10,18510,Random,5,ParallelBufferedSort,0,210,Random,5,ParallelBufferedSort,1,210,Random,5,ParallelBufferedSort,2,310,Random,5,ParallelBufferedSort,3,710,Random,5,ParallelBufferedSort,4,1410,Random,5,ParallelBufferedSort,5,2610,Random,5,ParallelBufferedSort,6,4210,Random,5,ParallelBufferedSort,7,6510,Random,5,ParallelBufferedSort,8,9610,Random,5,ParallelBufferedSort,9,13510,Random,5,ParallelBufferedSort,10,18510,Random,5,ParallelRadixSort,0,85410,Random,5,ParallelRadixSort,1,14810,Random,5,ParallelRadixSort,2,12410,Random,5,ParallelRadixSort,3,14510,Random,5,ParallelRadixSort,4,26010,Random,5,ParallelRadixSort,5,25010,Random,5,ParallelRadixSort,6,37210,Random,5,ParallelRadixSort,7,46310,Random,5,ParallelRadixSort,8,63310,Random,5,ParallelRadixSort,9,82810,Random,5,ParallelRadixSort,10,108410,Random,5,StdSort,0,110,Random,5,StdSort,1,110,Random,5,StdSort,2,210,Random,5,StdSort,3,610,Random,5,StdSort,4,1310,Random,5,StdSort,5,2610,Random,5,StdSort,6,4310,Random,5,StdSort,7,7310,Random,5,StdSort,8,10310,Random,5,StdSort,9,14410,Random,5,StdSort,10,17910,Random,6,ParallelSort,0,110,Random,6,ParallelSort,1,210,Random,6,ParallelSort,2,410,Random,6,ParallelSort,3,910,Random,6,ParallelSort,4,1710,Random,6,ParallelSort,5,3110,Random,6,ParallelSort,6,5110,Random,6,ParallelSort,7,8010,Random,6,ParallelSort,8,11910,Random,6,ParallelSort,9,16810,Random,6,ParallelSort,10,22810,Random,6,ParallelBufferedSort,0,210,Random,6,ParallelBufferedSort,1,210,Random,6,ParallelBufferedSort,2,410,Random,6,ParallelBufferedSort,3,810,Random,6,ParallelBufferedSort,4,1710,Random,6,ParallelBufferedSort,5,3110,Random,6,ParallelBufferedSort,6,5110,Random,6,ParallelBufferedSort,7,8110,Random,6,ParallelBufferedSort,8,11910,Random,6,ParallelBufferedSort,9,16810,Random,6,ParallelBufferedSort,10,23010,Random,6,ParallelRadixSort,0,104310,Random,6,ParallelRadixSort,1,51110,Random,6,ParallelRadixSort,2,40110,Random,6,ParallelRadixSort,3,47610,Random,6,ParallelRadixSort,4,83910,Random,6,ParallelRadixSort,5,56010,Random,6,ParallelRadixSort,6,33110,Random,6,ParallelRadixSort,7,59410,Random,6,ParallelRadixSort,8,59310,Random,6,ParallelRadixSort,9,79610,Random,6,ParallelRadixSort,10,125910,Random,6,StdSort,0,110,Random,6,StdSort,1,110,Random,6,StdSort,2,310,Random,6,StdSort,3,810,Random,6,StdSort,4,1610,Random,6,StdSort,5,2910,Random,6,StdSort,6,5010,Random,6,StdSort,7,8210,Random,6,StdSort,8,13210,Random,6,StdSort,9,18510,Random,6,StdSort,10,22310,Random,7,ParallelSort,0,210,Random,7,ParallelSort,1,210,Random,7,ParallelSort,2,310,Random,7,ParallelSort,3,810,Random,7,ParallelSort,4,1510,Random,7,ParallelSort,5,3010,Random,7,ParallelSort,6,4510,Random,7,ParallelSort,7,7110,Random,7,ParallelSort,8,10410,Random,7,ParallelSort,9,14710,Random,7,ParallelSort,10,20210,Random,7,ParallelBufferedSort,0,210,Random,7,ParallelBufferedSort,1,110,Random,7,ParallelBufferedSort,2,310,Random,7,ParallelBufferedSort,3,810,Random,7,ParallelBufferedSort,4,1510,Random,7,ParallelBufferedSort,5,2710,Random,7,ParallelBufferedSort,6,4510,Random,7,ParallelBufferedSort,7,7110,Random,7,ParallelBufferedSort,8,10510,Random,7,ParallelBufferedSort,9,14810,Random,7,ParallelBufferedSort,10,20310,Random,7,ParallelRadixSort,0,125310,Random,7,ParallelRadixSort,1,100610,Random,7,ParallelRadixSort,2,118910,Random,7,ParallelRadixSort,3,105810,Random,7,ParallelRadixSort,4,97610,Random,7,ParallelRadixSort,5,73310,Random,7,ParallelRadixSort,6,101110,Random,7,ParallelRadixSort,7,67910,Random,7,ParallelRadixSort,8,105610,Random,7,ParallelRadixSort,9,105510,Random,7,ParallelRadixSort,10,136210,Random,7,StdSort,0,110,Random,7,StdSort,1,110,Random,7,StdSort,2,210,Random,7,StdSort,3,710,Random,7,StdSort,4,1410,Random,7,StdSort,5,2610,Random,7,StdSort,6,4410,Random,7,StdSort,7,6810,Random,7,StdSort,8,10110,Random,7,StdSort,9,14610,Random,7,StdSort,10,19710,Random,8,ParallelSort,0,210,Random,8,ParallelSort,1,210,Random,8,ParallelSort,2,310,Random,8,ParallelSort,3,610,Random,8,ParallelSort,4,1210,Random,8,ParallelSort,5,2210,Random,8,ParallelSort,6,3710,Random,8,ParallelSort,7,5710,Random,8,ParallelSort,8,8410,Random,8,ParallelSort,9,11910,Random,8,ParallelSort,10,16210,Random,8,ParallelBufferedSort,0,210,Random,8,ParallelBufferedSort,1,210,Random,8,ParallelBufferedSort,2,310,Random,8,ParallelBufferedSort,3,610,Random,8,ParallelBufferedSort,4,1210,Random,8,ParallelBufferedSort,5,2210,Random,8,ParallelBufferedSort,6,3710,Random,8,ParallelBufferedSort,7,5710,Random,8,ParallelBufferedSort,8,8510,Random,8,ParallelBufferedSort,9,11910,Random,8,ParallelBufferedSort,10,16310,Random,8,ParallelRadixSort,0,136410,Random,8,ParallelRadixSort,1,84510,Random,8,ParallelRadixSort,2,128410,Random,8,ParallelRadixSort,3,107610,Random,8,ParallelRadixSort,4,141310,Random,8,ParallelRadixSort,5,133710,Random,8,ParallelRadixSort,6,149110,Random,8,ParallelRadixSort,7,150910,Random,8,ParallelRadixSort,8,129010,Random,8,ParallelRadixSort,9,143110,Random,8,ParallelRadixSort,10,141110,Random,8,StdSort,0,110,Random,8,StdSort,1,110,Random,8,StdSort,2,310,Random,8,StdSort,3,610,Random,8,StdSort,4,1210,Random,8,StdSort,5,2110,Random,8,StdSort,6,3510,Random,8,StdSort,7,5510,Random,8,StdSort,8,8110,Random,8,StdSort,9,11510,Random,8,StdSort,10,15610,PreSorted,1,ParallelSort,0,210,PreSorted,1,ParallelSort,1,110,PreSorted,1,ParallelSort,2,210,PreSorted,1,ParallelSort,3,410,PreSorted,1,ParallelSort,4,810,PreSorted,1,ParallelSort,5,1510,PreSorted,1,ParallelSort,6,2510,PreSorted,1,ParallelSort,7,4010,PreSorted,1,ParallelSort,8,6210,PreSorted,1,ParallelSort,9,8110,PreSorted,1,ParallelSort,10,10610,PreSorted,1,ParallelBufferedSort,0,110,PreSorted,1,ParallelBufferedSort,1,110,PreSorted,1,ParallelBufferedSort,2,210,PreSorted,1,ParallelBufferedSort,3,410,PreSorted,1,ParallelBufferedSort,4,810,PreSorted,1,ParallelBufferedSort,5,1410,PreSorted,1,ParallelBufferedSort,6,2410,PreSorted,1,ParallelBufferedSort,7,3810,PreSorted,1,ParallelBufferedSort,8,5610,PreSorted,1,ParallelBufferedSort,9,7910,PreSorted,1,ParallelBufferedSort,10,10710,PreSorted,1,ParallelRadixSort,0,2210,PreSorted,1,ParallelRadixSort,1,2410,PreSorted,1,ParallelRadixSort,2,3110,PreSorted,1,ParallelRadixSort,3,5210,PreSorted,1,ParallelRadixSort,4,8910,PreSorted,1,ParallelRadixSort,5,14810,PreSorted,1,ParallelRadixSort,6,23910,PreSorted,1,ParallelRadixSort,7,36510,PreSorted,1,ParallelRadixSort,8,53010,PreSorted,1,ParallelRadixSort,9,74510,PreSorted,1,ParallelRadixSort,10,101610,PreSorted,1,StdSort,0,110,PreSorted,1,StdSort,1,110,PreSorted,1,StdSort,2,210,PreSorted,1,StdSort,3,410,PreSorted,1,StdSort,4,810,PreSorted,1,StdSort,5,1510,PreSorted,1,StdSort,6,2310,PreSorted,1,StdSort,7,3510,PreSorted,1,StdSort,8,5210,PreSorted,1,StdSort,9,7410,PreSorted,1,StdSort,10,10110,PreSorted,2,ParallelSort,0,110,PreSorted,2,ParallelSort,1,110,PreSorted,2,ParallelSort,2,210,PreSorted,2,ParallelSort,3,410,PreSorted,2,ParallelSort,4,810,PreSorted,2,ParallelSort,5,1410,PreSorted,2,ParallelSort,6,2410,PreSorted,2,ParallelSort,7,3710,PreSorted,2,ParallelSort,8,5510,PreSorted,2,ParallelSort,9,7810,PreSorted,2,ParallelSort,10,10810,PreSorted,2,ParallelBufferedSort,0,110,PreSorted,2,ParallelBufferedSort,1,110,PreSorted,2,ParallelBufferedSort,2,210,PreSorted,2,ParallelBufferedSort,3,410,PreSorted,2,ParallelBufferedSort,4,810,PreSorted,2,ParallelBufferedSort,5,1510,PreSorted,2,ParallelBufferedSort,6,2410,PreSorted,2,ParallelBufferedSort,7,3810,PreSorted,2,ParallelBufferedSort,8,5610,PreSorted,2,ParallelBufferedSort,9,7910,PreSorted,2,ParallelBufferedSort,10,10710,PreSorted,2,ParallelRadixSort,0,4810,PreSorted,2,ParallelRadixSort,1,4510,PreSorted,2,ParallelRadixSort,2,5310,PreSorted,2,ParallelRadixSort,3,7310,PreSorted,2,ParallelRadixSort,4,11210,PreSorted,2,ParallelRadixSort,5,16910,PreSorted,2,ParallelRadixSort,6,25910,PreSorted,2,ParallelRadixSort,7,38310,PreSorted,2,ParallelRadixSort,8,54010,PreSorted,2,ParallelRadixSort,9,73810,PreSorted,2,ParallelRadixSort,10,102810,PreSorted,2,StdSort,0,010,PreSorted,2,StdSort,1,110,PreSorted,2,StdSort,2,110,PreSorted,2,StdSort,3,310,PreSorted,2,StdSort,4,810,PreSorted,2,StdSort,5,1310,PreSorted,2,StdSort,6,2310,PreSorted,2,StdSort,7,3510,PreSorted,2,StdSort,8,5210,PreSorted,2,StdSort,9,7410,PreSorted,2,StdSort,10,10110,PreSorted,3,ParallelSort,0,110,PreSorted,3,ParallelSort,1,110,PreSorted,3,ParallelSort,2,210,PreSorted,3,ParallelSort,3,410,PreSorted,3,ParallelSort,4,810,PreSorted,3,ParallelSort,5,1410,PreSorted,3,ParallelSort,6,2410,PreSorted,3,ParallelSort,7,3810,PreSorted,3,ParallelSort,8,5510,PreSorted,3,ParallelSort,9,7910,PreSorted,3,ParallelSort,10,10710,PreSorted,3,ParallelBufferedSort,0,110,PreSorted,3,ParallelBufferedSort,1,110,PreSorted,3,ParallelBufferedSort,2,210,PreSorted,3,ParallelBufferedSort,3,410,PreSorted,3,ParallelBufferedSort,4,810,PreSorted,3,ParallelBufferedSort,5,1410,PreSorted,3,ParallelBufferedSort,6,2410,PreSorted,3,ParallelBufferedSort,7,3710,PreSorted,3,ParallelBufferedSort,8,5510,PreSorted,3,ParallelBufferedSort,9,7810,PreSorted,3,ParallelBufferedSort,10,10710,PreSorted,3,ParallelRadixSort,0,7310,PreSorted,3,ParallelRadixSort,1,7110,PreSorted,3,ParallelRadixSort,2,8510,PreSorted,3,ParallelRadixSort,3,9710,PreSorted,3,ParallelRadixSort,4,14110,PreSorted,3,ParallelRadixSort,5,19510,PreSorted,3,ParallelRadixSort,6,28010,PreSorted,3,ParallelRadixSort,7,40910,PreSorted,3,ParallelRadixSort,8,57710,PreSorted,3,ParallelRadixSort,9,77610,PreSorted,3,ParallelRadixSort,10,102810,PreSorted,3,StdSort,0,010,PreSorted,3,StdSort,1,110,PreSorted,3,StdSort,2,110,PreSorted,3,StdSort,3,410,PreSorted,3,StdSort,4,710,PreSorted,3,StdSort,5,1410,PreSorted,3,StdSort,6,2210,PreSorted,3,StdSort,7,3510,PreSorted,3,StdSort,8,5210,PreSorted,3,StdSort,9,7310,PreSorted,3,StdSort,10,10010,PreSorted,4,ParallelSort,0,110,PreSorted,4,ParallelSort,1,110,PreSorted,4,ParallelSort,2,210,PreSorted,4,ParallelSort,3,410,PreSorted,4,ParallelSort,4,810,PreSorted,4,ParallelSort,5,1410,PreSorted,4,ParallelSort,6,2410,PreSorted,4,ParallelSort,7,3710,PreSorted,4,ParallelSort,8,5510,PreSorted,4,ParallelSort,9,7810,PreSorted,4,ParallelSort,10,10710,PreSorted,4,ParallelBufferedSort,0,110,PreSorted,4,ParallelBufferedSort,1,110,PreSorted,4,ParallelBufferedSort,2,210,PreSorted,4,ParallelBufferedSort,3,410,PreSorted,4,ParallelBufferedSort,4,810,PreSorted,4,ParallelBufferedSort,5,1410,PreSorted,4,ParallelBufferedSort,6,2410,PreSorted,4,ParallelBufferedSort,7,3810,PreSorted,4,ParallelBufferedSort,8,5510,PreSorted,4,ParallelBufferedSort,9,7910,PreSorted,4,ParallelBufferedSort,10,10810,PreSorted,4,ParallelRadixSort,0,29210,PreSorted,4,ParallelRadixSort,1,10410,PreSorted,4,ParallelRadixSort,2,10310,PreSorted,4,ParallelRadixSort,3,12010,PreSorted,4,ParallelRadixSort,4,16210,PreSorted,4,ParallelRadixSort,5,22210,PreSorted,4,ParallelRadixSort,6,31110,PreSorted,4,ParallelRadixSort,7,43510,PreSorted,4,ParallelRadixSort,8,59610,PreSorted,4,ParallelRadixSort,9,80410,PreSorted,4,ParallelRadixSort,10,105810,PreSorted,4,StdSort,0,110,PreSorted,4,StdSort,1,010,PreSorted,4,StdSort,2,110,PreSorted,4,StdSort,3,410,PreSorted,4,StdSort,4,710,PreSorted,4,StdSort,5,1410,PreSorted,4,StdSort,6,2510,PreSorted,4,StdSort,7,4110,PreSorted,4,StdSort,8,6010,PreSorted,4,StdSort,9,7310,PreSorted,4,StdSort,10,10010,PreSorted,5,ParallelSort,0,110,PreSorted,5,ParallelSort,1,110,PreSorted,5,ParallelSort,2,210,PreSorted,5,ParallelSort,3,410,PreSorted,5,ParallelSort,4,810,PreSorted,5,ParallelSort,5,1410,PreSorted,5,ParallelSort,6,2410,PreSorted,5,ParallelSort,7,3710,PreSorted,5,ParallelSort,8,5610,PreSorted,5,ParallelSort,9,7810,PreSorted,5,ParallelSort,10,10610,PreSorted,5,ParallelBufferedSort,0,110,PreSorted,5,ParallelBufferedSort,1,110,PreSorted,5,ParallelBufferedSort,2,210,PreSorted,5,ParallelBufferedSort,3,410,PreSorted,5,ParallelBufferedSort,4,810,PreSorted,5,ParallelBufferedSort,5,1410,PreSorted,5,ParallelBufferedSort,6,2510,PreSorted,5,ParallelBufferedSort,7,3710,PreSorted,5,ParallelBufferedSort,8,5610,PreSorted,5,ParallelBufferedSort,9,7810,PreSorted,5,ParallelBufferedSort,10,10610,PreSorted,5,ParallelRadixSort,0,53610,PreSorted,5,ParallelRadixSort,1,27810,PreSorted,5,ParallelRadixSort,2,28410,PreSorted,5,ParallelRadixSort,3,12410,PreSorted,5,ParallelRadixSort,4,15910,PreSorted,5,ParallelRadixSort,5,23210,PreSorted,5,ParallelRadixSort,6,33210,PreSorted,5,ParallelRadixSort,7,44610,PreSorted,5,ParallelRadixSort,8,64110,PreSorted,5,ParallelRadixSort,9,84010,PreSorted,5,ParallelRadixSort,10,110210,PreSorted,5,StdSort,0,010,PreSorted,5,StdSort,1,110,PreSorted,5,StdSort,2,110,PreSorted,5,StdSort,3,410,PreSorted,5,StdSort,4,710,PreSorted,5,StdSort,5,1310,PreSorted,5,StdSort,6,2310,PreSorted,5,StdSort,7,3910,PreSorted,5,StdSort,8,6510,PreSorted,5,StdSort,9,8410,PreSorted,5,StdSort,10,11710,PreSorted,6,ParallelSort,0,110,PreSorted,6,ParallelSort,1,110,PreSorted,6,ParallelSort,2,210,PreSorted,6,ParallelSort,3,410,PreSorted,6,ParallelSort,4,810,PreSorted,6,ParallelSort,5,1410,PreSorted,6,ParallelSort,6,2510,PreSorted,6,ParallelSort,7,3710,PreSorted,6,ParallelSort,8,5510,PreSorted,6,ParallelSort,9,7910,PreSorted,6,ParallelSort,10,10610,PreSorted,6,ParallelBufferedSort,0,110,PreSorted,6,ParallelBufferedSort,1,110,PreSorted,6,ParallelBufferedSort,2,210,PreSorted,6,ParallelBufferedSort,3,410,PreSorted,6,ParallelBufferedSort,4,810,PreSorted,6,ParallelBufferedSort,5,1410,PreSorted,6,ParallelBufferedSort,6,2410,PreSorted,6,ParallelBufferedSort,7,3710,PreSorted,6,ParallelBufferedSort,8,5610,PreSorted,6,ParallelBufferedSort,9,7810,PreSorted,6,ParallelBufferedSort,10,10710,PreSorted,6,ParallelRadixSort,0,60910,PreSorted,6,ParallelRadixSort,1,55210,PreSorted,6,ParallelRadixSort,2,86310,PreSorted,6,ParallelRadixSort,3,36710,PreSorted,6,ParallelRadixSort,4,54210,PreSorted,6,ParallelRadixSort,5,48110,PreSorted,6,ParallelRadixSort,6,49410,PreSorted,6,ParallelRadixSort,7,47610,PreSorted,6,ParallelRadixSort,8,62410,PreSorted,6,ParallelRadixSort,9,80610,PreSorted,6,ParallelRadixSort,10,117110,PreSorted,6,StdSort,0,010,PreSorted,6,StdSort,1,010,PreSorted,6,StdSort,2,110,PreSorted,6,StdSort,3,410,PreSorted,6,StdSort,4,710,PreSorted,6,StdSort,5,1310,PreSorted,6,StdSort,6,2310,PreSorted,6,StdSort,7,3710,PreSorted,6,StdSort,8,5210,PreSorted,6,StdSort,9,7710,PreSorted,6,StdSort,10,12210,PreSorted,7,ParallelSort,0,110,PreSorted,7,ParallelSort,1,110,PreSorted,7,ParallelSort,2,210,PreSorted,7,ParallelSort,3,410,PreSorted,7,ParallelSort,4,810,PreSorted,7,ParallelSort,5,1410,PreSorted,7,ParallelSort,6,2410,PreSorted,7,ParallelSort,7,3810,PreSorted,7,ParallelSort,8,5610,PreSorted,7,ParallelSort,9,7810,PreSorted,7,ParallelSort,10,10710,PreSorted,7,ParallelBufferedSort,0,110,PreSorted,7,ParallelBufferedSort,1,110,PreSorted,7,ParallelBufferedSort,2,210,PreSorted,7,ParallelBufferedSort,3,410,PreSorted,7,ParallelBufferedSort,4,810,PreSorted,7,ParallelBufferedSort,5,1410,PreSorted,7,ParallelBufferedSort,6,2410,PreSorted,7,ParallelBufferedSort,7,3810,PreSorted,7,ParallelBufferedSort,8,5610,PreSorted,7,ParallelBufferedSort,9,7910,PreSorted,7,ParallelBufferedSort,10,10710,PreSorted,7,ParallelRadixSort,0,129110,PreSorted,7,ParallelRadixSort,1,114810,PreSorted,7,ParallelRadixSort,2,89610,PreSorted,7,ParallelRadixSort,3,132110,PreSorted,7,ParallelRadixSort,4,91110,PreSorted,7,ParallelRadixSort,5,105610,PreSorted,7,ParallelRadixSort,6,122810,PreSorted,7,ParallelRadixSort,7,80110,PreSorted,7,ParallelRadixSort,8,80010,PreSorted,7,ParallelRadixSort,9,84810,PreSorted,7,ParallelRadixSort,10,109410,PreSorted,7,StdSort,0,110,PreSorted,7,StdSort,1,110,PreSorted,7,StdSort,2,210,PreSorted,7,StdSort,3,410,PreSorted,7,StdSort,4,710,PreSorted,7,StdSort,5,1310,PreSorted,7,StdSort,6,2310,PreSorted,7,StdSort,7,3510,PreSorted,7,StdSort,8,5210,PreSorted,7,StdSort,9,7410,PreSorted,7,StdSort,10,10110,PreSorted,8,ParallelSort,0,110,PreSorted,8,ParallelSort,1,210,PreSorted,8,ParallelSort,2,210,PreSorted,8,ParallelSort,3,410,PreSorted,8,ParallelSort,4,810,PreSorted,8,ParallelSort,5,1510,PreSorted,8,ParallelSort,6,2410,PreSorted,8,ParallelSort,7,3810,PreSorted,8,ParallelSort,8,5610,PreSorted,8,ParallelSort,9,7810,PreSorted,8,ParallelSort,10,10710,PreSorted,8,ParallelBufferedSort,0,110,PreSorted,8,ParallelBufferedSort,1,110,PreSorted,8,ParallelBufferedSort,2,210,PreSorted,8,ParallelBufferedSort,3,410,PreSorted,8,ParallelBufferedSort,4,810,PreSorted,8,ParallelBufferedSort,5,1410,PreSorted,8,ParallelBufferedSort,6,2510,PreSorted,8,ParallelBufferedSort,7,3910,PreSorted,8,ParallelBufferedSort,8,5610,PreSorted,8,ParallelBufferedSort,9,7910,PreSorted,8,ParallelBufferedSort,10,10710,PreSorted,8,ParallelRadixSort,0,140310,PreSorted,8,ParallelRadixSort,1,141110,PreSorted,8,ParallelRadixSort,2,128410,PreSorted,8,ParallelRadixSort,3,130610,PreSorted,8,ParallelRadixSort,4,147110,PreSorted,8,ParallelRadixSort,5,102010,PreSorted,8,ParallelRadixSort,6,116010,PreSorted,8,ParallelRadixSort,7,122710,PreSorted,8,ParallelRadixSort,8,193910,PreSorted,8,ParallelRadixSort,9,183710,PreSorted,8,ParallelRadixSort,10,129710,PreSorted,8,StdSort,0,010,PreSorted,8,StdSort,1,110,PreSorted,8,StdSort,2,210,PreSorted,8,StdSort,3,310,PreSorted,8,StdSort,4,710,PreSorted,8,StdSort,5,1310,PreSorted,8,StdSort,6,2310,PreSorted,8,StdSort,7,3710,PreSorted,8,StdSort,8,5410,PreSorted,8,StdSort,9,7310,PreSorted,8,StdSort,10,10210,NearlySorted,1,ParallelSort,0,110,NearlySorted,1,ParallelSort,1,210,NearlySorted,1,ParallelSort,2,210,NearlySorted,1,ParallelSort,3,410,NearlySorted,1,ParallelSort,4,810,NearlySorted,1,ParallelSort,5,1510,NearlySorted,1,ParallelSort,6,2510,NearlySorted,1,ParallelSort,7,3910,NearlySorted,1,ParallelSort,8,5910,NearlySorted,1,ParallelSort,9,8210,NearlySorted,1,ParallelSort,10,11210,NearlySorted,1,ParallelBufferedSort,0,110,NearlySorted,1,ParallelBufferedSort,1,110,NearlySorted,1,ParallelBufferedSort,2,210,NearlySorted,1,ParallelBufferedSort,3,410,NearlySorted,1,ParallelBufferedSort,4,810,NearlySorted,1,ParallelBufferedSort,5,1510,NearlySorted,1,ParallelBufferedSort,6,2510,NearlySorted,1,ParallelBufferedSort,7,4010,NearlySorted,1,ParallelBufferedSort,8,5910,NearlySorted,1,ParallelBufferedSort,9,8210,NearlySorted,1,ParallelBufferedSort,10,11210,NearlySorted,1,ParallelRadixSort,0,2310,NearlySorted,1,ParallelRadixSort,1,2510,NearlySorted,1,ParallelRadixSort,2,3310,NearlySorted,1,ParallelRadixSort,3,5210,NearlySorted,1,ParallelRadixSort,4,8810,NearlySorted,1,ParallelRadixSort,5,14610,NearlySorted,1,ParallelRadixSort,6,23610,NearlySorted,1,ParallelRadixSort,7,35510,NearlySorted,1,ParallelRadixSort,8,51710,NearlySorted,1,ParallelRadixSort,9,72410,NearlySorted,1,ParallelRadixSort,10,99910,NearlySorted,1,StdSort,0,010,NearlySorted,1,StdSort,1,110,NearlySorted,1,StdSort,2,110,NearlySorted,1,StdSort,3,410,NearlySorted,1,StdSort,4,810,NearlySorted,1,StdSort,5,1410,NearlySorted,1,StdSort,6,2410,NearlySorted,1,StdSort,7,3710,NearlySorted,1,StdSort,8,5510,NearlySorted,1,StdSort,9,7810,NearlySorted,1,StdSort,10,10610,NearlySorted,2,ParallelSort,0,110,NearlySorted,2,ParallelSort,1,110,NearlySorted,2,ParallelSort,2,210,NearlySorted,2,ParallelSort,3,410,NearlySorted,2,ParallelSort,4,910,NearlySorted,2,ParallelSort,5,1510,NearlySorted,2,ParallelSort,6,2510,NearlySorted,2,ParallelSort,7,4010,NearlySorted,2,ParallelSort,8,5810,NearlySorted,2,ParallelSort,9,8410,NearlySorted,2,ParallelSort,10,11210,NearlySorted,2,ParallelBufferedSort,0,110,NearlySorted,2,ParallelBufferedSort,1,110,NearlySorted,2,ParallelBufferedSort,2,210,NearlySorted,2,ParallelBufferedSort,3,410,NearlySorted,2,ParallelBufferedSort,4,910,NearlySorted,2,ParallelBufferedSort,5,1510,NearlySorted,2,ParallelBufferedSort,6,2610,NearlySorted,2,ParallelBufferedSort,7,3910,NearlySorted,2,ParallelBufferedSort,8,5810,NearlySorted,2,ParallelBufferedSort,9,8310,NearlySorted,2,ParallelBufferedSort,10,11310,NearlySorted,2,ParallelRadixSort,0,5010,NearlySorted,2,ParallelRadixSort,1,4910,NearlySorted,2,ParallelRadixSort,2,5410,NearlySorted,2,ParallelRadixSort,3,7410,NearlySorted,2,ParallelRadixSort,4,11210,NearlySorted,2,ParallelRadixSort,5,17410,NearlySorted,2,ParallelRadixSort,6,26110,NearlySorted,2,ParallelRadixSort,7,38110,NearlySorted,2,ParallelRadixSort,8,56310,NearlySorted,2,ParallelRadixSort,9,75710,NearlySorted,2,ParallelRadixSort,10,100010,NearlySorted,2,StdSort,0,010,NearlySorted,2,StdSort,1,110,NearlySorted,2,StdSort,2,210,NearlySorted,2,StdSort,3,410,NearlySorted,2,StdSort,4,810,NearlySorted,2,StdSort,5,1410,NearlySorted,2,StdSort,6,2410,NearlySorted,2,StdSort,7,3710,NearlySorted,2,StdSort,8,5510,NearlySorted,2,StdSort,9,7810,NearlySorted,2,StdSort,10,10610,NearlySorted,3,ParallelSort,0,110,NearlySorted,3,ParallelSort,1,110,NearlySorted,3,ParallelSort,2,210,NearlySorted,3,ParallelSort,3,410,NearlySorted,3,ParallelSort,4,810,NearlySorted,3,ParallelSort,5,1510,NearlySorted,3,ParallelSort,6,2510,NearlySorted,3,ParallelSort,7,3910,NearlySorted,3,ParallelSort,8,5810,NearlySorted,3,ParallelSort,9,8310,NearlySorted,3,ParallelSort,10,11110,NearlySorted,3,ParallelBufferedSort,0,110,NearlySorted,3,ParallelBufferedSort,1,110,NearlySorted,3,ParallelBufferedSort,2,210,NearlySorted,3,ParallelBufferedSort,3,410,NearlySorted,3,ParallelBufferedSort,4,810,NearlySorted,3,ParallelBufferedSort,5,1510,NearlySorted,3,ParallelBufferedSort,6,2510,NearlySorted,3,ParallelBufferedSort,7,3910,NearlySorted,3,ParallelBufferedSort,8,5810,NearlySorted,3,ParallelBufferedSort,9,8310,NearlySorted,3,ParallelBufferedSort,10,11210,NearlySorted,3,ParallelRadixSort,0,8110,NearlySorted,3,ParallelRadixSort,1,6710,NearlySorted,3,ParallelRadixSort,2,8010,NearlySorted,3,ParallelRadixSort,3,10710,NearlySorted,3,ParallelRadixSort,4,13810,NearlySorted,3,ParallelRadixSort,5,20910,NearlySorted,3,ParallelRadixSort,6,28610,NearlySorted,3,ParallelRadixSort,7,41010,NearlySorted,3,ParallelRadixSort,8,57610,NearlySorted,3,ParallelRadixSort,9,76810,NearlySorted,3,ParallelRadixSort,10,100810,NearlySorted,3,StdSort,0,110,NearlySorted,3,StdSort,1,110,NearlySorted,3,StdSort,2,110,NearlySorted,3,StdSort,3,410,NearlySorted,3,StdSort,4,810,NearlySorted,3,StdSort,5,1610,NearlySorted,3,StdSort,6,2410,NearlySorted,3,StdSort,7,3710,NearlySorted,3,StdSort,8,5510,NearlySorted,3,StdSort,9,7810,NearlySorted,3,StdSort,10,10610,NearlySorted,4,ParallelSort,0,110,NearlySorted,4,ParallelSort,1,110,NearlySorted,4,ParallelSort,2,210,NearlySorted,4,ParallelSort,3,410,NearlySorted,4,ParallelSort,4,910,NearlySorted,4,ParallelSort,5,1510,NearlySorted,4,ParallelSort,6,2610,NearlySorted,4,ParallelSort,7,3910,NearlySorted,4,ParallelSort,8,5910,NearlySorted,4,ParallelSort,9,8210,NearlySorted,4,ParallelSort,10,11210,NearlySorted,4,ParallelBufferedSort,0,110,NearlySorted,4,ParallelBufferedSort,1,110,NearlySorted,4,ParallelBufferedSort,2,210,NearlySorted,4,ParallelBufferedSort,3,410,NearlySorted,4,ParallelBufferedSort,4,810,NearlySorted,4,ParallelBufferedSort,5,1510,NearlySorted,4,ParallelBufferedSort,6,2510,NearlySorted,4,ParallelBufferedSort,7,4010,NearlySorted,4,ParallelBufferedSort,8,5910,NearlySorted,4,ParallelBufferedSort,9,8210,NearlySorted,4,ParallelBufferedSort,10,11310,NearlySorted,4,ParallelRadixSort,0,34110,NearlySorted,4,ParallelRadixSort,1,10210,NearlySorted,4,ParallelRadixSort,2,10410,NearlySorted,4,ParallelRadixSort,3,12510,NearlySorted,4,ParallelRadixSort,4,15910,NearlySorted,4,ParallelRadixSort,5,22510,NearlySorted,4,ParallelRadixSort,6,31210,NearlySorted,4,ParallelRadixSort,7,44310,NearlySorted,4,ParallelRadixSort,8,59310,NearlySorted,4,ParallelRadixSort,9,79410,NearlySorted,4,ParallelRadixSort,10,106310,NearlySorted,4,StdSort,0,110,NearlySorted,4,StdSort,1,110,NearlySorted,4,StdSort,2,110,NearlySorted,4,StdSort,3,410,NearlySorted,4,StdSort,4,810,NearlySorted,4,StdSort,5,1510,NearlySorted,4,StdSort,6,2410,NearlySorted,4,StdSort,7,4310,NearlySorted,4,StdSort,8,6310,NearlySorted,4,StdSort,9,7910,NearlySorted,4,StdSort,10,10610,NearlySorted,5,ParallelSort,0,110,NearlySorted,5,ParallelSort,1,110,NearlySorted,5,ParallelSort,2,210,NearlySorted,5,ParallelSort,3,510,NearlySorted,5,ParallelSort,4,910,NearlySorted,5,ParallelSort,5,1510,NearlySorted,5,ParallelSort,6,2710,NearlySorted,5,ParallelSort,7,4510,NearlySorted,5,ParallelSort,8,5910,NearlySorted,5,ParallelSort,9,8310,NearlySorted,5,ParallelSort,10,11310,NearlySorted,5,ParallelBufferedSort,0,110,NearlySorted,5,ParallelBufferedSort,1,110,NearlySorted,5,ParallelBufferedSort,2,210,NearlySorted,5,ParallelBufferedSort,3,510,NearlySorted,5,ParallelBufferedSort,4,910,NearlySorted,5,ParallelBufferedSort,5,1510,NearlySorted,5,ParallelBufferedSort,6,2810,NearlySorted,5,ParallelBufferedSort,7,4310,NearlySorted,5,ParallelBufferedSort,8,5910,NearlySorted,5,ParallelBufferedSort,9,8310,NearlySorted,5,ParallelBufferedSort,10,11110,NearlySorted,5,ParallelRadixSort,0,28210,NearlySorted,5,ParallelRadixSort,1,14110,NearlySorted,5,ParallelRadixSort,2,11110,NearlySorted,5,ParallelRadixSort,3,31610,NearlySorted,5,ParallelRadixSort,4,15210,NearlySorted,5,ParallelRadixSort,5,22110,NearlySorted,5,ParallelRadixSort,6,33410,NearlySorted,5,ParallelRadixSort,7,44310,NearlySorted,5,ParallelRadixSort,8,61110,NearlySorted,5,ParallelRadixSort,9,82210,NearlySorted,5,ParallelRadixSort,10,107810,NearlySorted,5,StdSort,0,110,NearlySorted,5,StdSort,1,110,NearlySorted,5,StdSort,2,110,NearlySorted,5,StdSort,3,410,NearlySorted,5,StdSort,4,810,NearlySorted,5,StdSort,5,1410,NearlySorted,5,StdSort,6,2410,NearlySorted,5,StdSort,7,4110,NearlySorted,5,StdSort,8,6110,NearlySorted,5,StdSort,9,8810,NearlySorted,5,StdSort,10,12110,NearlySorted,6,ParallelSort,0,110,NearlySorted,6,ParallelSort,1,210,NearlySorted,6,ParallelSort,2,210,NearlySorted,6,ParallelSort,3,410,NearlySorted,6,ParallelSort,4,910,NearlySorted,6,ParallelSort,5,1510,NearlySorted,6,ParallelSort,6,2910,NearlySorted,6,ParallelSort,7,4410,NearlySorted,6,ParallelSort,8,5810,NearlySorted,6,ParallelSort,9,8210,NearlySorted,6,ParallelSort,10,11210,NearlySorted,6,ParallelBufferedSort,0,110,NearlySorted,6,ParallelBufferedSort,1,110,NearlySorted,6,ParallelBufferedSort,2,210,NearlySorted,6,ParallelBufferedSort,3,510,NearlySorted,6,ParallelBufferedSort,4,810,NearlySorted,6,ParallelBufferedSort,5,1510,NearlySorted,6,ParallelBufferedSort,6,3010,NearlySorted,6,ParallelBufferedSort,7,4210,NearlySorted,6,ParallelBufferedSort,8,5910,NearlySorted,6,ParallelBufferedSort,9,8310,NearlySorted,6,ParallelBufferedSort,10,11210,NearlySorted,6,ParallelRadixSort,0,67110,NearlySorted,6,ParallelRadixSort,1,68110,NearlySorted,6,ParallelRadixSort,2,59710,NearlySorted,6,ParallelRadixSort,3,71610,NearlySorted,6,ParallelRadixSort,4,58210,NearlySorted,6,ParallelRadixSort,5,58810,NearlySorted,6,ParallelRadixSort,6,32010,NearlySorted,6,ParallelRadixSort,7,43810,NearlySorted,6,ParallelRadixSort,8,60410,NearlySorted,6,ParallelRadixSort,9,84210,NearlySorted,6,ParallelRadixSort,10,120810,NearlySorted,6,StdSort,0,110,NearlySorted,6,StdSort,1,110,NearlySorted,6,StdSort,2,210,NearlySorted,6,StdSort,3,410,NearlySorted,6,StdSort,4,810,NearlySorted,6,StdSort,5,1410,NearlySorted,6,StdSort,6,2410,NearlySorted,6,StdSort,7,3910,NearlySorted,6,StdSort,8,6410,NearlySorted,6,StdSort,9,8810,NearlySorted,6,StdSort,10,12010,NearlySorted,7,ParallelSort,0,110,NearlySorted,7,ParallelSort,1,110,NearlySorted,7,ParallelSort,2,210,NearlySorted,7,ParallelSort,3,410,NearlySorted,7,ParallelSort,4,910,NearlySorted,7,ParallelSort,5,1810,NearlySorted,7,ParallelSort,6,2910,NearlySorted,7,ParallelSort,7,4210,NearlySorted,7,ParallelSort,8,6010,NearlySorted,7,ParallelSort,9,8310,NearlySorted,7,ParallelSort,10,11310,NearlySorted,7,ParallelBufferedSort,0,110,NearlySorted,7,ParallelBufferedSort,1,110,NearlySorted,7,ParallelBufferedSort,2,210,NearlySorted,7,ParallelBufferedSort,3,510,NearlySorted,7,ParallelBufferedSort,4,910,NearlySorted,7,ParallelBufferedSort,5,1810,NearlySorted,7,ParallelBufferedSort,6,2910,NearlySorted,7,ParallelBufferedSort,7,4310,NearlySorted,7,ParallelBufferedSort,8,5910,NearlySorted,7,ParallelBufferedSort,9,8310,NearlySorted,7,ParallelBufferedSort,10,11210,NearlySorted,7,ParallelRadixSort,0,108010,NearlySorted,7,ParallelRadixSort,1,117610,NearlySorted,7,ParallelRadixSort,2,84610,NearlySorted,7,ParallelRadixSort,3,109910,NearlySorted,7,ParallelRadixSort,4,104310,NearlySorted,7,ParallelRadixSort,5,82510,NearlySorted,7,ParallelRadixSort,6,80010,NearlySorted,7,ParallelRadixSort,7,85110,NearlySorted,7,ParallelRadixSort,8,112210,NearlySorted,7,ParallelRadixSort,9,113410,NearlySorted,7,ParallelRadixSort,10,110610,NearlySorted,7,StdSort,0,010,NearlySorted,7,StdSort,1,110,NearlySorted,7,StdSort,2,110,NearlySorted,7,StdSort,3,410,NearlySorted,7,StdSort,4,810,NearlySorted,7,StdSort,5,1410,NearlySorted,7,StdSort,6,2410,NearlySorted,7,StdSort,7,3710,NearlySorted,7,StdSort,8,5510,NearlySorted,7,StdSort,9,7810,NearlySorted,7,StdSort,10,10610,NearlySorted,8,ParallelSort,0,110,NearlySorted,8,ParallelSort,1,210,NearlySorted,8,ParallelSort,2,210,NearlySorted,8,ParallelSort,3,410,NearlySorted,8,ParallelSort,4,910,NearlySorted,8,ParallelSort,5,1510,NearlySorted,8,ParallelSort,6,2610,NearlySorted,8,ParallelSort,7,4010,NearlySorted,8,ParallelSort,8,5910,NearlySorted,8,ParallelSort,9,8410,NearlySorted,8,ParallelSort,10,11210,NearlySorted,8,ParallelBufferedSort,0,110,NearlySorted,8,ParallelBufferedSort,1,110,NearlySorted,8,ParallelBufferedSort,2,210,NearlySorted,8,ParallelBufferedSort,3,410,NearlySorted,8,ParallelBufferedSort,4,910,NearlySorted,8,ParallelBufferedSort,5,1810,NearlySorted,8,ParallelBufferedSort,6,2910,NearlySorted,8,ParallelBufferedSort,7,4310,NearlySorted,8,ParallelBufferedSort,8,5910,NearlySorted,8,ParallelBufferedSort,9,8210,NearlySorted,8,ParallelBufferedSort,10,11310,NearlySorted,8,ParallelRadixSort,0,142410,NearlySorted,8,ParallelRadixSort,1,140210,NearlySorted,8,ParallelRadixSort,2,133510,NearlySorted,8,ParallelRadixSort,3,143610,NearlySorted,8,ParallelRadixSort,4,152210,NearlySorted,8,ParallelRadixSort,5,113410,NearlySorted,8,ParallelRadixSort,6,135210,NearlySorted,8,ParallelRadixSort,7,119810,NearlySorted,8,ParallelRadixSort,8,129510,NearlySorted,8,ParallelRadixSort,9,224710,NearlySorted,8,ParallelRadixSort,10,161410,NearlySorted,8,StdSort,0,110,NearlySorted,8,StdSort,1,110,NearlySorted,8,StdSort,2,210,NearlySorted,8,StdSort,3,410,NearlySorted,8,StdSort,4,810,NearlySorted,8,StdSort,5,1410,NearlySorted,8,StdSort,6,2410,NearlySorted,8,StdSort,7,3710,NearlySorted,8,StdSort,8,5510,NearlySorted,8,StdSort,9,7810,NearlySorted,8,StdSort,10,10710,NormalDistributionWithDups,1,ParallelSort,0,210,NormalDistributionWithDups,1,ParallelSort,1,210,NormalDistributionWithDups,1,ParallelSort,2,410,NormalDistributionWithDups,1,ParallelSort,3,910,NormalDistributionWithDups,1,ParallelSort,4,1710,NormalDistributionWithDups,1,ParallelSort,5,3510,NormalDistributionWithDups,1,ParallelSort,6,5210,NormalDistributionWithDups,1,ParallelSort,7,8110,NormalDistributionWithDups,1,ParallelSort,8,11910,NormalDistributionWithDups,1,ParallelSort,9,17010,NormalDistributionWithDups,1,ParallelSort,10,22910,NormalDistributionWithDups,1,ParallelBufferedSort,0,210,NormalDistributionWithDups,1,ParallelBufferedSort,1,210,NormalDistributionWithDups,1,ParallelBufferedSort,2,410,NormalDistributionWithDups,1,ParallelBufferedSort,3,910,NormalDistributionWithDups,1,ParallelBufferedSort,4,1710,NormalDistributionWithDups,1,ParallelBufferedSort,5,3110,NormalDistributionWithDups,1,ParallelBufferedSort,6,5210,NormalDistributionWithDups,1,ParallelBufferedSort,7,8210,NormalDistributionWithDups,1,ParallelBufferedSort,8,12010,NormalDistributionWithDups,1,ParallelBufferedSort,9,17010,NormalDistributionWithDups,1,ParallelBufferedSort,10,22910,NormalDistributionWithDups,1,ParallelRadixSort,0,2410,NormalDistributionWithDups,1,ParallelRadixSort,1,2510,NormalDistributionWithDups,1,ParallelRadixSort,2,3210,NormalDistributionWithDups,1,ParallelRadixSort,3,5510,NormalDistributionWithDups,1,ParallelRadixSort,4,9410,NormalDistributionWithDups,1,ParallelRadixSort,5,15710,NormalDistributionWithDups,1,ParallelRadixSort,6,25310,NormalDistributionWithDups,1,ParallelRadixSort,7,38610,NormalDistributionWithDups,1,ParallelRadixSort,8,56410,NormalDistributionWithDups,1,ParallelRadixSort,9,80110,NormalDistributionWithDups,1,ParallelRadixSort,10,108110,NormalDistributionWithDups,1,StdSort,0,110,NormalDistributionWithDups,1,StdSort,1,110,NormalDistributionWithDups,1,StdSort,2,310,NormalDistributionWithDups,1,StdSort,3,810,NormalDistributionWithDups,1,StdSort,4,1610,NormalDistributionWithDups,1,StdSort,5,3010,NormalDistributionWithDups,1,StdSort,6,5010,NormalDistributionWithDups,1,StdSort,7,7810,NormalDistributionWithDups,1,StdSort,8,11510,NormalDistributionWithDups,1,StdSort,9,16310,NormalDistributionWithDups,1,StdSort,10,22410,NormalDistributionWithDups,2,ParallelSort,0,210,NormalDistributionWithDups,2,ParallelSort,1,210,NormalDistributionWithDups,2,ParallelSort,2,410,NormalDistributionWithDups,2,ParallelSort,3,710,NormalDistributionWithDups,2,ParallelSort,4,1510,NormalDistributionWithDups,2,ParallelSort,5,2610,NormalDistributionWithDups,2,ParallelSort,6,4410,NormalDistributionWithDups,2,ParallelSort,7,6910,NormalDistributionWithDups,2,ParallelSort,8,10310,NormalDistributionWithDups,2,ParallelSort,9,14310,NormalDistributionWithDups,2,ParallelSort,10,19710,NormalDistributionWithDups,2,ParallelBufferedSort,0,210,NormalDistributionWithDups,2,ParallelBufferedSort,1,210,NormalDistributionWithDups,2,ParallelBufferedSort,2,410,NormalDistributionWithDups,2,ParallelBufferedSort,3,710,NormalDistributionWithDups,2,ParallelBufferedSort,4,1510,NormalDistributionWithDups,2,ParallelBufferedSort,5,2610,NormalDistributionWithDups,2,ParallelBufferedSort,6,4510,NormalDistributionWithDups,2,ParallelBufferedSort,7,6910,NormalDistributionWithDups,2,ParallelBufferedSort,8,10310,NormalDistributionWithDups,2,ParallelBufferedSort,9,14510,NormalDistributionWithDups,2,ParallelBufferedSort,10,19510,NormalDistributionWithDups,2,ParallelRadixSort,0,4810,NormalDistributionWithDups,2,ParallelRadixSort,1,4910,NormalDistributionWithDups,2,ParallelRadixSort,2,5710,NormalDistributionWithDups,2,ParallelRadixSort,3,7510,NormalDistributionWithDups,2,ParallelRadixSort,4,11010,NormalDistributionWithDups,2,ParallelRadixSort,5,17310,NormalDistributionWithDups,2,ParallelRadixSort,6,26010,NormalDistributionWithDups,2,ParallelRadixSort,7,37510,NormalDistributionWithDups,2,ParallelRadixSort,8,55110,NormalDistributionWithDups,2,ParallelRadixSort,9,74110,NormalDistributionWithDups,2,ParallelRadixSort,10,101410,NormalDistributionWithDups,2,StdSort,0,110,NormalDistributionWithDups,2,StdSort,1,110,NormalDistributionWithDups,2,StdSort,2,310,NormalDistributionWithDups,2,StdSort,3,710,NormalDistributionWithDups,2,StdSort,4,1410,NormalDistributionWithDups,2,StdSort,5,2510,NormalDistributionWithDups,2,StdSort,6,4310,NormalDistributionWithDups,2,StdSort,7,6610,NormalDistributionWithDups,2,StdSort,8,9810,NormalDistributionWithDups,2,StdSort,9,13910,NormalDistributionWithDups,2,StdSort,10,19010,NormalDistributionWithDups,3,ParallelSort,0,210,NormalDistributionWithDups,3,ParallelSort,1,310,NormalDistributionWithDups,3,ParallelSort,2,510,NormalDistributionWithDups,3,ParallelSort,3,1310,NormalDistributionWithDups,3,ParallelSort,4,2610,NormalDistributionWithDups,3,ParallelSort,5,4710,NormalDistributionWithDups,3,ParallelSort,6,8010,NormalDistributionWithDups,3,ParallelSort,7,12410,NormalDistributionWithDups,3,ParallelSort,8,18310,NormalDistributionWithDups,3,ParallelSort,9,25810,NormalDistributionWithDups,3,ParallelSort,10,35310,NormalDistributionWithDups,3,ParallelBufferedSort,0,210,NormalDistributionWithDups,3,ParallelBufferedSort,1,310,NormalDistributionWithDups,3,ParallelBufferedSort,2,510,NormalDistributionWithDups,3,ParallelBufferedSort,3,1310,NormalDistributionWithDups,3,ParallelBufferedSort,4,2610,NormalDistributionWithDups,3,ParallelBufferedSort,5,4710,NormalDistributionWithDups,3,ParallelBufferedSort,6,7910,NormalDistributionWithDups,3,ParallelBufferedSort,7,12410,NormalDistributionWithDups,3,ParallelBufferedSort,8,18210,NormalDistributionWithDups,3,ParallelBufferedSort,9,25810,NormalDistributionWithDups,3,ParallelBufferedSort,10,35410,NormalDistributionWithDups,3,ParallelRadixSort,0,9710,NormalDistributionWithDups,3,ParallelRadixSort,1,6910,NormalDistributionWithDups,3,ParallelRadixSort,2,7810,NormalDistributionWithDups,3,ParallelRadixSort,3,11110,NormalDistributionWithDups,3,ParallelRadixSort,4,16810,NormalDistributionWithDups,3,ParallelRadixSort,5,24610,NormalDistributionWithDups,3,ParallelRadixSort,6,37210,NormalDistributionWithDups,3,ParallelRadixSort,7,55110,NormalDistributionWithDups,3,ParallelRadixSort,8,75510,NormalDistributionWithDups,3,ParallelRadixSort,9,104010,NormalDistributionWithDups,3,ParallelRadixSort,10,138010,NormalDistributionWithDups,3,StdSort,0,110,NormalDistributionWithDups,3,StdSort,1,210,NormalDistributionWithDups,3,StdSort,2,410,NormalDistributionWithDups,3,StdSort,3,1410,NormalDistributionWithDups,3,StdSort,4,2410,NormalDistributionWithDups,3,StdSort,5,4510,NormalDistributionWithDups,3,StdSort,6,7710,NormalDistributionWithDups,3,StdSort,7,12110,NormalDistributionWithDups,3,StdSort,8,17810,NormalDistributionWithDups,3,StdSort,9,25310,NormalDistributionWithDups,3,StdSort,10,34610,NormalDistributionWithDups,4,ParallelSort,0,310,NormalDistributionWithDups,4,ParallelSort,1,410,NormalDistributionWithDups,4,ParallelSort,2,710,NormalDistributionWithDups,4,ParallelSort,3,1710,NormalDistributionWithDups,4,ParallelSort,4,3510,NormalDistributionWithDups,4,ParallelSort,5,6510,NormalDistributionWithDups,4,ParallelSort,6,10910,NormalDistributionWithDups,4,ParallelSort,7,17110,NormalDistributionWithDups,4,ParallelSort,8,25110,NormalDistributionWithDups,4,ParallelSort,9,35610,NormalDistributionWithDups,4,ParallelSort,10,48810,NormalDistributionWithDups,4,ParallelBufferedSort,0,310,NormalDistributionWithDups,4,ParallelBufferedSort,1,310,NormalDistributionWithDups,4,ParallelBufferedSort,2,710,NormalDistributionWithDups,4,ParallelBufferedSort,3,1710,NormalDistributionWithDups,4,ParallelBufferedSort,4,3510,NormalDistributionWithDups,4,ParallelBufferedSort,5,6510,NormalDistributionWithDups,4,ParallelBufferedSort,6,10910,NormalDistributionWithDups,4,ParallelBufferedSort,7,17010,NormalDistributionWithDups,4,ParallelBufferedSort,8,25110,NormalDistributionWithDups,4,ParallelBufferedSort,9,35610,NormalDistributionWithDups,4,ParallelBufferedSort,10,48510,NormalDistributionWithDups,4,ParallelRadixSort,0,29310,NormalDistributionWithDups,4,ParallelRadixSort,1,11810,NormalDistributionWithDups,4,ParallelRadixSort,2,10710,NormalDistributionWithDups,4,ParallelRadixSort,3,13910,NormalDistributionWithDups,4,ParallelRadixSort,4,20510,NormalDistributionWithDups,4,ParallelRadixSort,5,31110,NormalDistributionWithDups,4,ParallelRadixSort,6,46710,NormalDistributionWithDups,4,ParallelRadixSort,7,66810,NormalDistributionWithDups,4,ParallelRadixSort,8,94010,NormalDistributionWithDups,4,ParallelRadixSort,9,125810,NormalDistributionWithDups,4,ParallelRadixSort,10,168110,NormalDistributionWithDups,4,StdSort,0,210,NormalDistributionWithDups,4,StdSort,1,210,NormalDistributionWithDups,4,StdSort,2,610,NormalDistributionWithDups,4,StdSort,3,2110,NormalDistributionWithDups,4,StdSort,4,3810,NormalDistributionWithDups,4,StdSort,5,7210,NormalDistributionWithDups,4,StdSort,6,10610,NormalDistributionWithDups,4,StdSort,7,16710,NormalDistributionWithDups,4,StdSort,8,24710,NormalDistributionWithDups,4,StdSort,9,35110,NormalDistributionWithDups,4,StdSort,10,48010,NormalDistributionWithDups,5,ParallelSort,0,210,NormalDistributionWithDups,5,ParallelSort,1,310,NormalDistributionWithDups,5,ParallelSort,2,410,NormalDistributionWithDups,5,ParallelSort,3,810,NormalDistributionWithDups,5,ParallelSort,4,1610,NormalDistributionWithDups,5,ParallelSort,5,3110,NormalDistributionWithDups,5,ParallelSort,6,4810,NormalDistributionWithDups,5,ParallelSort,7,7510,NormalDistributionWithDups,5,ParallelSort,8,11110,NormalDistributionWithDups,5,ParallelSort,9,15610,NormalDistributionWithDups,5,ParallelSort,10,21510,NormalDistributionWithDups,5,ParallelBufferedSort,0,210,NormalDistributionWithDups,5,ParallelBufferedSort,1,210,NormalDistributionWithDups,5,ParallelBufferedSort,2,410,NormalDistributionWithDups,5,ParallelBufferedSort,3,810,NormalDistributionWithDups,5,ParallelBufferedSort,4,1610,NormalDistributionWithDups,5,ParallelBufferedSort,5,3310,NormalDistributionWithDups,5,ParallelBufferedSort,6,5310,NormalDistributionWithDups,5,ParallelBufferedSort,7,7510,NormalDistributionWithDups,5,ParallelBufferedSort,8,11110,NormalDistributionWithDups,5,ParallelBufferedSort,9,15710,NormalDistributionWithDups,5,ParallelBufferedSort,10,21310,NormalDistributionWithDups,5,ParallelRadixSort,0,51610,NormalDistributionWithDups,5,ParallelRadixSort,1,12810,NormalDistributionWithDups,5,ParallelRadixSort,2,11910,NormalDistributionWithDups,5,ParallelRadixSort,3,23510,NormalDistributionWithDups,5,ParallelRadixSort,4,31110,NormalDistributionWithDups,5,ParallelRadixSort,5,25010,NormalDistributionWithDups,5,ParallelRadixSort,6,30610,NormalDistributionWithDups,5,ParallelRadixSort,7,41910,NormalDistributionWithDups,5,ParallelRadixSort,8,59810,NormalDistributionWithDups,5,ParallelRadixSort,9,83110,NormalDistributionWithDups,5,ParallelRadixSort,10,111310,NormalDistributionWithDups,5,StdSort,0,110,NormalDistributionWithDups,5,StdSort,1,110,NormalDistributionWithDups,5,StdSort,2,310,NormalDistributionWithDups,5,StdSort,3,810,NormalDistributionWithDups,5,StdSort,4,1510,NormalDistributionWithDups,5,StdSort,5,2910,NormalDistributionWithDups,5,StdSort,6,5110,NormalDistributionWithDups,5,StdSort,7,8610,NormalDistributionWithDups,5,StdSort,8,12110,NormalDistributionWithDups,5,StdSort,9,15110,NormalDistributionWithDups,5,StdSort,10,20710,NormalDistributionWithDups,6,ParallelSort,0,210,NormalDistributionWithDups,6,ParallelSort,1,210,NormalDistributionWithDups,6,ParallelSort,2,510,NormalDistributionWithDups,6,ParallelSort,3,1110,NormalDistributionWithDups,6,ParallelSort,4,2510,NormalDistributionWithDups,6,ParallelSort,5,4410,NormalDistributionWithDups,6,ParallelSort,6,6910,NormalDistributionWithDups,6,ParallelSort,7,10810,NormalDistributionWithDups,6,ParallelSort,8,15910,NormalDistributionWithDups,6,ParallelSort,9,22610,NormalDistributionWithDups,6,ParallelSort,10,30810,NormalDistributionWithDups,6,ParallelBufferedSort,0,110,NormalDistributionWithDups,6,ParallelBufferedSort,1,210,NormalDistributionWithDups,6,ParallelBufferedSort,2,510,NormalDistributionWithDups,6,ParallelBufferedSort,3,1110,NormalDistributionWithDups,6,ParallelBufferedSort,4,2510,NormalDistributionWithDups,6,ParallelBufferedSort,5,4110,NormalDistributionWithDups,6,ParallelBufferedSort,6,6910,NormalDistributionWithDups,6,ParallelBufferedSort,7,10810,NormalDistributionWithDups,6,ParallelBufferedSort,8,16010,NormalDistributionWithDups,6,ParallelBufferedSort,9,22510,NormalDistributionWithDups,6,ParallelBufferedSort,10,31210,NormalDistributionWithDups,6,ParallelRadixSort,0,79710,NormalDistributionWithDups,6,ParallelRadixSort,1,56910,NormalDistributionWithDups,6,ParallelRadixSort,2,72210,NormalDistributionWithDups,6,ParallelRadixSort,3,47010,NormalDistributionWithDups,6,ParallelRadixSort,4,78310,NormalDistributionWithDups,6,ParallelRadixSort,5,46710,NormalDistributionWithDups,6,ParallelRadixSort,6,49410,NormalDistributionWithDups,6,ParallelRadixSort,7,60410,NormalDistributionWithDups,6,ParallelRadixSort,8,75310,NormalDistributionWithDups,6,ParallelRadixSort,9,105810,NormalDistributionWithDups,6,ParallelRadixSort,10,139110,NormalDistributionWithDups,6,StdSort,0,110,NormalDistributionWithDups,6,StdSort,1,110,NormalDistributionWithDups,6,StdSort,2,410,NormalDistributionWithDups,6,StdSort,3,1110,NormalDistributionWithDups,6,StdSort,4,2210,NormalDistributionWithDups,6,StdSort,5,4110,NormalDistributionWithDups,6,StdSort,6,7810,NormalDistributionWithDups,6,StdSort,7,12410,NormalDistributionWithDups,6,StdSort,8,15710,NormalDistributionWithDups,6,StdSort,9,22110,NormalDistributionWithDups,6,StdSort,10,30410,NormalDistributionWithDups,7,ParallelSort,0,210,NormalDistributionWithDups,7,ParallelSort,1,310,NormalDistributionWithDups,7,ParallelSort,2,410,NormalDistributionWithDups,7,ParallelSort,3,910,NormalDistributionWithDups,7,ParallelSort,4,1810,NormalDistributionWithDups,7,ParallelSort,5,3410,NormalDistributionWithDups,7,ParallelSort,6,5810,NormalDistributionWithDups,7,ParallelSort,7,8510,NormalDistributionWithDups,7,ParallelSort,8,12510,NormalDistributionWithDups,7,ParallelSort,9,17710,NormalDistributionWithDups,7,ParallelSort,10,24210,NormalDistributionWithDups,7,ParallelBufferedSort,0,110,NormalDistributionWithDups,7,ParallelBufferedSort,1,310,NormalDistributionWithDups,7,ParallelBufferedSort,2,410,NormalDistributionWithDups,7,ParallelBufferedSort,3,910,NormalDistributionWithDups,7,ParallelBufferedSort,4,2010,NormalDistributionWithDups,7,ParallelBufferedSort,5,3710,NormalDistributionWithDups,7,ParallelBufferedSort,6,5510,NormalDistributionWithDups,7,ParallelBufferedSort,7,8510,NormalDistributionWithDups,7,ParallelBufferedSort,8,12510,NormalDistributionWithDups,7,ParallelBufferedSort,9,17610,NormalDistributionWithDups,7,ParallelBufferedSort,10,24210,NormalDistributionWithDups,7,ParallelRadixSort,0,124210,NormalDistributionWithDups,7,ParallelRadixSort,1,115510,NormalDistributionWithDups,7,ParallelRadixSort,2,122810,NormalDistributionWithDups,7,ParallelRadixSort,3,85110,NormalDistributionWithDups,7,ParallelRadixSort,4,126210,NormalDistributionWithDups,7,ParallelRadixSort,5,24610,NormalDistributionWithDups,7,ParallelRadixSort,6,138810,NormalDistributionWithDups,7,ParallelRadixSort,7,153610,NormalDistributionWithDups,7,ParallelRadixSort,8,154310,NormalDistributionWithDups,7,ParallelRadixSort,9,135710,NormalDistributionWithDups,7,ParallelRadixSort,10,135910,NormalDistributionWithDups,7,StdSort,0,110,NormalDistributionWithDups,7,StdSort,1,110,NormalDistributionWithDups,7,StdSort,2,310,NormalDistributionWithDups,7,StdSort,3,910,NormalDistributionWithDups,7,StdSort,4,1710,NormalDistributionWithDups,7,StdSort,5,3110,NormalDistributionWithDups,7,StdSort,6,5310,NormalDistributionWithDups,7,StdSort,7,8710,NormalDistributionWithDups,7,StdSort,8,12310,NormalDistributionWithDups,7,StdSort,9,18310,NormalDistributionWithDups,7,StdSort,10,26410,NormalDistributionWithDups,8,ParallelSort,0,210,NormalDistributionWithDups,8,ParallelSort,1,410,NormalDistributionWithDups,8,ParallelSort,2,610,NormalDistributionWithDups,8,ParallelSort,3,1510,NormalDistributionWithDups,8,ParallelSort,4,3010,NormalDistributionWithDups,8,ParallelSort,5,5410,NormalDistributionWithDups,8,ParallelSort,6,9110,NormalDistributionWithDups,8,ParallelSort,7,14310,NormalDistributionWithDups,8,ParallelSort,8,21110,NormalDistributionWithDups,8,ParallelSort,9,29810,NormalDistributionWithDups,8,ParallelSort,10,40810,NormalDistributionWithDups,8,ParallelBufferedSort,0,210,NormalDistributionWithDups,8,ParallelBufferedSort,1,310,NormalDistributionWithDups,8,ParallelBufferedSort,2,610,NormalDistributionWithDups,8,ParallelBufferedSort,3,1510,NormalDistributionWithDups,8,ParallelBufferedSort,4,3010,NormalDistributionWithDups,8,ParallelBufferedSort,5,5410,NormalDistributionWithDups,8,ParallelBufferedSort,6,9110,NormalDistributionWithDups,8,ParallelBufferedSort,7,14310,NormalDistributionWithDups,8,ParallelBufferedSort,8,21110,NormalDistributionWithDups,8,ParallelBufferedSort,9,29910,NormalDistributionWithDups,8,ParallelBufferedSort,10,40710,NormalDistributionWithDups,8,ParallelRadixSort,0,137110,NormalDistributionWithDups,8,ParallelRadixSort,1,134910,NormalDistributionWithDups,8,ParallelRadixSort,2,108410,NormalDistributionWithDups,8,ParallelRadixSort,3,143610,NormalDistributionWithDups,8,ParallelRadixSort,4,146610,NormalDistributionWithDups,8,ParallelRadixSort,5,115410,NormalDistributionWithDups,8,ParallelRadixSort,6,163110,NormalDistributionWithDups,8,ParallelRadixSort,7,143210,NormalDistributionWithDups,8,ParallelRadixSort,8,148810,NormalDistributionWithDups,8,ParallelRadixSort,9,153210,NormalDistributionWithDups,8,ParallelRadixSort,10,195410,NormalDistributionWithDups,8,StdSort,0,110,NormalDistributionWithDups,8,StdSort,1,210,NormalDistributionWithDups,8,StdSort,2,510,NormalDistributionWithDups,8,StdSort,3,1410,NormalDistributionWithDups,8,StdSort,4,2910,NormalDistributionWithDups,8,StdSort,5,5310,NormalDistributionWithDups,8,StdSort,6,9010,NormalDistributionWithDups,8,StdSort,7,14010,NormalDistributionWithDups,8,StdSort,8,20910,NormalDistributionWithDups,8,StdSort,9,30010,NormalDistributionWithDups,8,StdSort,10,40610,SawTooth,1,ParallelSort,0,110,SawTooth,1,ParallelSort,1,210,SawTooth,1,ParallelSort,2,310,SawTooth,1,ParallelSort,3,610,SawTooth,1,ParallelSort,4,1310,SawTooth,1,ParallelSort,5,2210,SawTooth,1,ParallelSort,6,3710,SawTooth,1,ParallelSort,7,5710,SawTooth,1,ParallelSort,8,8410,SawTooth,1,ParallelSort,9,11910,SawTooth,1,ParallelSort,10,16410,SawTooth,1,ParallelBufferedSort,0,110,SawTooth,1,ParallelBufferedSort,1,210,SawTooth,1,ParallelBufferedSort,2,310,SawTooth,1,ParallelBufferedSort,3,610,SawTooth,1,ParallelBufferedSort,4,1210,SawTooth,1,ParallelBufferedSort,5,2210,SawTooth,1,ParallelBufferedSort,6,3710,SawTooth,1,ParallelBufferedSort,7,5810,SawTooth,1,ParallelBufferedSort,8,8410,SawTooth,1,ParallelBufferedSort,9,12010,SawTooth,1,ParallelBufferedSort,10,16210,SawTooth,1,ParallelRadixSort,0,2210,SawTooth,1,ParallelRadixSort,1,2510,SawTooth,1,ParallelRadixSort,2,3110,SawTooth,1,ParallelRadixSort,3,5210,SawTooth,1,ParallelRadixSort,4,8710,SawTooth,1,ParallelRadixSort,5,14510,SawTooth,1,ParallelRadixSort,6,23310,SawTooth,1,ParallelRadixSort,7,35810,SawTooth,1,ParallelRadixSort,8,51610,SawTooth,1,ParallelRadixSort,9,72310,SawTooth,1,ParallelRadixSort,10,99510,SawTooth,1,StdSort,0,110,SawTooth,1,StdSort,1,110,SawTooth,1,StdSort,2,210,SawTooth,1,StdSort,3,610,SawTooth,1,StdSort,4,1110,SawTooth,1,StdSort,5,2110,SawTooth,1,StdSort,6,3510,SawTooth,1,StdSort,7,5410,SawTooth,1,StdSort,8,8110,SawTooth,1,StdSort,9,11510,SawTooth,1,StdSort,10,15610,SawTooth,2,ParallelSort,0,110,SawTooth,2,ParallelSort,1,210,SawTooth,2,ParallelSort,2,310,SawTooth,2,ParallelSort,3,710,SawTooth,2,ParallelSort,4,1410,SawTooth,2,ParallelSort,5,2610,SawTooth,2,ParallelSort,6,4310,SawTooth,2,ParallelSort,7,6610,SawTooth,2,ParallelSort,8,9910,SawTooth,2,ParallelSort,9,14010,SawTooth,2,ParallelSort,10,19010,SawTooth,2,ParallelBufferedSort,0,110,SawTooth,2,ParallelBufferedSort,1,210,SawTooth,2,ParallelBufferedSort,2,310,SawTooth,2,ParallelBufferedSort,3,710,SawTooth,2,ParallelBufferedSort,4,1410,SawTooth,2,ParallelBufferedSort,5,2610,SawTooth,2,ParallelBufferedSort,6,4310,SawTooth,2,ParallelBufferedSort,7,6710,SawTooth,2,ParallelBufferedSort,8,9910,SawTooth,2,ParallelBufferedSort,9,14010,SawTooth,2,ParallelBufferedSort,10,19110,SawTooth,2,ParallelRadixSort,0,4510,SawTooth,2,ParallelRadixSort,1,4610,SawTooth,2,ParallelRadixSort,2,4910,SawTooth,2,ParallelRadixSort,3,7210,SawTooth,2,ParallelRadixSort,4,10910,SawTooth,2,ParallelRadixSort,5,17010,SawTooth,2,ParallelRadixSort,6,25610,SawTooth,2,ParallelRadixSort,7,38110,SawTooth,2,ParallelRadixSort,8,54110,SawTooth,2,ParallelRadixSort,9,76210,SawTooth,2,ParallelRadixSort,10,105110,SawTooth,2,StdSort,0,110,SawTooth,2,StdSort,1,110,SawTooth,2,StdSort,2,310,SawTooth,2,StdSort,3,710,SawTooth,2,StdSort,4,1410,SawTooth,2,StdSort,5,2410,SawTooth,2,StdSort,6,4110,SawTooth,2,StdSort,7,6510,SawTooth,2,StdSort,8,9510,SawTooth,2,StdSort,9,13510,SawTooth,2,StdSort,10,18410,SawTooth,3,ParallelSort,0,110,SawTooth,3,ParallelSort,1,210,SawTooth,3,ParallelSort,2,310,SawTooth,3,ParallelSort,3,710,SawTooth,3,ParallelSort,4,1410,SawTooth,3,ParallelSort,5,2510,SawTooth,3,ParallelSort,6,4310,SawTooth,3,ParallelSort,7,6810,SawTooth,3,ParallelSort,8,9910,SawTooth,3,ParallelSort,9,13910,SawTooth,3,ParallelSort,10,19110,SawTooth,3,ParallelBufferedSort,0,110,SawTooth,3,ParallelBufferedSort,1,210,SawTooth,3,ParallelBufferedSort,2,310,SawTooth,3,ParallelBufferedSort,3,710,SawTooth,3,ParallelBufferedSort,4,1410,SawTooth,3,ParallelBufferedSort,5,2610,SawTooth,3,ParallelBufferedSort,6,4310,SawTooth,3,ParallelBufferedSort,7,6710,SawTooth,3,ParallelBufferedSort,8,9910,SawTooth,3,ParallelBufferedSort,9,14010,SawTooth,3,ParallelBufferedSort,10,19010,SawTooth,3,ParallelRadixSort,0,6910,SawTooth,3,ParallelRadixSort,1,7510,SawTooth,3,ParallelRadixSort,2,8510,SawTooth,3,ParallelRadixSort,3,9110,SawTooth,3,ParallelRadixSort,4,13810,SawTooth,3,ParallelRadixSort,5,20210,SawTooth,3,ParallelRadixSort,6,27810,SawTooth,3,ParallelRadixSort,7,40410,SawTooth,3,ParallelRadixSort,8,56110,SawTooth,3,ParallelRadixSort,9,77410,SawTooth,3,ParallelRadixSort,10,100610,SawTooth,3,StdSort,0,110,SawTooth,3,StdSort,1,110,SawTooth,3,StdSort,2,310,SawTooth,3,StdSort,3,610,SawTooth,3,StdSort,4,1310,SawTooth,3,StdSort,5,2410,SawTooth,3,StdSort,6,4110,SawTooth,3,StdSort,7,6410,SawTooth,3,StdSort,8,9510,SawTooth,3,StdSort,9,13510,SawTooth,3,StdSort,10,18410,SawTooth,4,ParallelSort,0,110,SawTooth,4,ParallelSort,1,110,SawTooth,4,ParallelSort,2,310,SawTooth,4,ParallelSort,3,710,SawTooth,4,ParallelSort,4,1410,SawTooth,4,ParallelSort,5,2610,SawTooth,4,ParallelSort,6,4310,SawTooth,4,ParallelSort,7,6710,SawTooth,4,ParallelSort,8,9910,SawTooth,4,ParallelSort,9,14010,SawTooth,4,ParallelSort,10,19010,SawTooth,4,ParallelBufferedSort,0,110,SawTooth,4,ParallelBufferedSort,1,210,SawTooth,4,ParallelBufferedSort,2,310,SawTooth,4,ParallelBufferedSort,3,710,SawTooth,4,ParallelBufferedSort,4,1410,SawTooth,4,ParallelBufferedSort,5,2610,SawTooth,4,ParallelBufferedSort,6,4310,SawTooth,4,ParallelBufferedSort,7,6710,SawTooth,4,ParallelBufferedSort,8,9910,SawTooth,4,ParallelBufferedSort,9,14010,SawTooth,4,ParallelBufferedSort,10,19110,SawTooth,4,ParallelRadixSort,0,7110,SawTooth,4,ParallelRadixSort,1,7510,SawTooth,4,ParallelRadixSort,2,9810,SawTooth,4,ParallelRadixSort,3,10310,SawTooth,4,ParallelRadixSort,4,14910,SawTooth,4,ParallelRadixSort,5,21010,SawTooth,4,ParallelRadixSort,6,30710,SawTooth,4,ParallelRadixSort,7,43410,SawTooth,4,ParallelRadixSort,8,60310,SawTooth,4,ParallelRadixSort,9,78610,SawTooth,4,ParallelRadixSort,10,107110,SawTooth,4,StdSort,0,110,SawTooth,4,StdSort,1,110,SawTooth,4,StdSort,2,310,SawTooth,4,StdSort,3,710,SawTooth,4,StdSort,4,1410,SawTooth,4,StdSort,5,2710,SawTooth,4,StdSort,6,4110,SawTooth,4,StdSort,7,6410,SawTooth,4,StdSort,8,9510,SawTooth,4,StdSort,9,13510,SawTooth,4,StdSort,10,18410,SawTooth,5,ParallelSort,0,110,SawTooth,5,ParallelSort,1,210,SawTooth,5,ParallelSort,2,310,SawTooth,5,ParallelSort,3,710,SawTooth,5,ParallelSort,4,1410,SawTooth,5,ParallelSort,5,2610,SawTooth,5,ParallelSort,6,4210,SawTooth,5,ParallelSort,7,6710,SawTooth,5,ParallelSort,8,9910,SawTooth,5,ParallelSort,9,14010,SawTooth,5,ParallelSort,10,19110,SawTooth,5,ParallelBufferedSort,0,110,SawTooth,5,ParallelBufferedSort,1,110,SawTooth,5,ParallelBufferedSort,2,310,SawTooth,5,ParallelBufferedSort,3,710,SawTooth,5,ParallelBufferedSort,4,1410,SawTooth,5,ParallelBufferedSort,5,2610,SawTooth,5,ParallelBufferedSort,6,4310,SawTooth,5,ParallelBufferedSort,7,6710,SawTooth,5,ParallelBufferedSort,8,9910,SawTooth,5,ParallelBufferedSort,9,14010,SawTooth,5,ParallelBufferedSort,10,19010,SawTooth,5,ParallelRadixSort,0,10010,SawTooth,5,ParallelRadixSort,1,26410,SawTooth,5,ParallelRadixSort,2,46110,SawTooth,5,ParallelRadixSort,3,35410,SawTooth,5,ParallelRadixSort,4,17810,SawTooth,5,ParallelRadixSort,5,22410,SawTooth,5,ParallelRadixSort,6,30910,SawTooth,5,ParallelRadixSort,7,46110,SawTooth,5,ParallelRadixSort,8,61010,SawTooth,5,ParallelRadixSort,9,84610,SawTooth,5,ParallelRadixSort,10,109510,SawTooth,5,StdSort,0,110,SawTooth,5,StdSort,1,110,SawTooth,5,StdSort,2,310,SawTooth,5,StdSort,3,610,SawTooth,5,StdSort,4,1310,SawTooth,5,StdSort,5,2510,SawTooth,5,StdSort,6,4610,SawTooth,5,StdSort,7,6510,SawTooth,5,StdSort,8,9610,SawTooth,5,StdSort,9,13510,SawTooth,5,StdSort,10,18410,SawTooth,6,ParallelSort,0,110,SawTooth,6,ParallelSort,1,210,SawTooth,6,ParallelSort,2,410,SawTooth,6,ParallelSort,3,710,SawTooth,6,ParallelSort,4,1410,SawTooth,6,ParallelSort,5,2610,SawTooth,6,ParallelSort,6,4310,SawTooth,6,ParallelSort,7,6710,SawTooth,6,ParallelSort,8,9910,SawTooth,6,ParallelSort,9,13910,SawTooth,6,ParallelSort,10,19210,SawTooth,6,ParallelBufferedSort,0,110,SawTooth,6,ParallelBufferedSort,1,110,SawTooth,6,ParallelBufferedSort,2,310,SawTooth,6,ParallelBufferedSort,3,710,SawTooth,6,ParallelBufferedSort,4,1410,SawTooth,6,ParallelBufferedSort,5,2610,SawTooth,6,ParallelBufferedSort,6,4310,SawTooth,6,ParallelBufferedSort,7,6710,SawTooth,6,ParallelBufferedSort,8,9910,SawTooth,6,ParallelBufferedSort,9,14010,SawTooth,6,ParallelBufferedSort,10,19110,SawTooth,6,ParallelRadixSort,0,12010,SawTooth,6,ParallelRadixSort,1,100210,SawTooth,6,ParallelRadixSort,2,12310,SawTooth,6,ParallelRadixSort,3,53510,SawTooth,6,ParallelRadixSort,4,33710,SawTooth,6,ParallelRadixSort,5,23610,SawTooth,6,ParallelRadixSort,6,52710,SawTooth,6,ParallelRadixSort,7,45310,SawTooth,6,ParallelRadixSort,8,61610,SawTooth,6,ParallelRadixSort,9,86410,SawTooth,6,ParallelRadixSort,10,112010,SawTooth,6,StdSort,0,110,SawTooth,6,StdSort,1,110,SawTooth,6,StdSort,2,310,SawTooth,6,StdSort,3,710,SawTooth,6,StdSort,4,1310,SawTooth,6,StdSort,5,2410,SawTooth,6,StdSort,6,4110,SawTooth,6,StdSort,7,6610,SawTooth,6,StdSort,8,9710,SawTooth,6,StdSort,9,13510,SawTooth,6,StdSort,10,18510,SawTooth,7,ParallelSort,0,110,SawTooth,7,ParallelSort,1,210,SawTooth,7,ParallelSort,2,410,SawTooth,7,ParallelSort,3,710,SawTooth,7,ParallelSort,4,1410,SawTooth,7,ParallelSort,5,2610,SawTooth,7,ParallelSort,6,4310,SawTooth,7,ParallelSort,7,6710,SawTooth,7,ParallelSort,8,9910,SawTooth,7,ParallelSort,9,14010,SawTooth,7,ParallelSort,10,19110,SawTooth,7,ParallelBufferedSort,0,110,SawTooth,7,ParallelBufferedSort,1,210,SawTooth,7,ParallelBufferedSort,2,410,SawTooth,7,ParallelBufferedSort,3,710,SawTooth,7,ParallelBufferedSort,4,1410,SawTooth,7,ParallelBufferedSort,5,2610,SawTooth,7,ParallelBufferedSort,6,4310,SawTooth,7,ParallelBufferedSort,7,6710,SawTooth,7,ParallelBufferedSort,8,9910,SawTooth,7,ParallelBufferedSort,9,13910,SawTooth,7,ParallelBufferedSort,10,19110,SawTooth,7,ParallelRadixSort,0,88510,SawTooth,7,ParallelRadixSort,1,114010,SawTooth,7,ParallelRadixSort,2,72010,SawTooth,7,ParallelRadixSort,3,114110,SawTooth,7,ParallelRadixSort,4,66710,SawTooth,7,ParallelRadixSort,5,107510,SawTooth,7,ParallelRadixSort,6,95010,SawTooth,7,ParallelRadixSort,7,76910,SawTooth,7,ParallelRadixSort,8,112210,SawTooth,7,ParallelRadixSort,9,83110,SawTooth,7,ParallelRadixSort,10,110610,SawTooth,7,StdSort,0,110,SawTooth,7,StdSort,1,110,SawTooth,7,StdSort,2,310,SawTooth,7,StdSort,3,710,SawTooth,7,StdSort,4,1310,SawTooth,7,StdSort,5,2410,SawTooth,7,StdSort,6,4110,SawTooth,7,StdSort,7,6410,SawTooth,7,StdSort,8,9510,SawTooth,7,StdSort,9,13710,SawTooth,7,StdSort,10,20610,SawTooth,8,ParallelSort,0,110,SawTooth,8,ParallelSort,1,310,SawTooth,8,ParallelSort,2,310,SawTooth,8,ParallelSort,3,610,SawTooth,8,ParallelSort,4,1210,SawTooth,8,ParallelSort,5,2210,SawTooth,8,ParallelSort,6,3710,SawTooth,8,ParallelSort,7,5710,SawTooth,8,ParallelSort,8,8510,SawTooth,8,ParallelSort,9,11910,SawTooth,8,ParallelSort,10,16210,SawTooth,8,ParallelBufferedSort,0,110,SawTooth,8,ParallelBufferedSort,1,210,SawTooth,8,ParallelBufferedSort,2,310,SawTooth,8,ParallelBufferedSort,3,610,SawTooth,8,ParallelBufferedSort,4,1210,SawTooth,8,ParallelBufferedSort,5,2210,SawTooth,8,ParallelBufferedSort,6,3710,SawTooth,8,ParallelBufferedSort,7,5710,SawTooth,8,ParallelBufferedSort,8,8510,SawTooth,8,ParallelBufferedSort,9,11910,SawTooth,8,ParallelBufferedSort,10,16310,SawTooth,8,ParallelRadixSort,0,135710,SawTooth,8,ParallelRadixSort,1,122010,SawTooth,8,ParallelRadixSort,2,120410,SawTooth,8,ParallelRadixSort,3,138710,SawTooth,8,ParallelRadixSort,4,135710,SawTooth,8,ParallelRadixSort,5,123910,SawTooth,8,ParallelRadixSort,6,133010,SawTooth,8,ParallelRadixSort,7,162110,SawTooth,8,ParallelRadixSort,8,101210,SawTooth,8,ParallelRadixSort,9,155810,SawTooth,8,ParallelRadixSort,10,166510,SawTooth,8,StdSort,0,110,SawTooth,8,StdSort,1,110,SawTooth,8,StdSort,2,210,SawTooth,8,StdSort,3,510,SawTooth,8,StdSort,4,1110,SawTooth,8,StdSort,5,2110,SawTooth,8,StdSort,6,3510,SawTooth,8,StdSort,7,5510,SawTooth,8,StdSort,8,8110,SawTooth,8,StdSort,9,11610,SawTooth,8,StdSort,10,156100,Random,1,ParallelSort,0,19100,Random,1,ParallelSort,1,24100,Random,1,ParallelSort,2,66100,Random,1,ParallelSort,3,186100,Random,1,ParallelSort,4,407100,Random,1,ParallelSort,5,713100,Random,1,ParallelSort,6,1303100,Random,1,ParallelSort,7,2011100,Random,1,ParallelSort,8,2731100,Random,1,ParallelSort,9,3874100,Random,1,ParallelSort,10,5300100,Random,1,ParallelBufferedSort,0,17100,Random,1,ParallelBufferedSort,1,24100,Random,1,ParallelBufferedSort,2,64100,Random,1,ParallelBufferedSort,3,179100,Random,1,ParallelBufferedSort,4,374100,Random,1,ParallelBufferedSort,5,692100,Random,1,ParallelBufferedSort,6,1179100,Random,1,ParallelBufferedSort,7,1847100,Random,1,ParallelBufferedSort,8,2729100,Random,1,ParallelBufferedSort,9,3872100,Random,1,ParallelBufferedSort,10,5298100,Random,1,ParallelRadixSort,0,49100,Random,1,ParallelRadixSort,1,65100,Random,1,ParallelRadixSort,2,134100,Random,1,ParallelRadixSort,3,347100,Random,1,ParallelRadixSort,4,712100,Random,1,ParallelRadixSort,5,1305100,Random,1,ParallelRadixSort,6,2182100,Random,1,ParallelRadixSort,7,3419100,Random,1,ParallelRadixSort,8,5059100,Random,1,ParallelRadixSort,9,7154100,Random,1,ParallelRadixSort,10,9789100,Random,1,StdSort,0,15100,Random,1,StdSort,1,21100,Random,1,StdSort,2,62100,Random,1,StdSort,3,178100,Random,1,StdSort,4,372100,Random,1,StdSort,5,691100,Random,1,StdSort,6,1176100,Random,1,StdSort,7,1841100,Random,1,StdSort,8,2723100,Random,1,StdSort,9,3868100,Random,1,StdSort,10,5295100,Random,2,ParallelSort,0,18100,Random,2,ParallelSort,1,26100,Random,2,ParallelSort,2,69100,Random,2,ParallelSort,3,199100,Random,2,ParallelSort,4,411100,Random,2,ParallelSort,5,758100,Random,2,ParallelSort,6,1281100,Random,2,ParallelSort,7,2020100,Random,2,ParallelSort,8,2989100,Random,2,ParallelSort,9,4241100,Random,2,ParallelSort,10,5803100,Random,2,ParallelBufferedSort,0,20100,Random,2,ParallelBufferedSort,1,28100,Random,2,ParallelBufferedSort,2,70100,Random,2,ParallelBufferedSort,3,199100,Random,2,ParallelBufferedSort,4,412100,Random,2,ParallelBufferedSort,5,759100,Random,2,ParallelBufferedSort,6,1291100,Random,2,ParallelBufferedSort,7,2021100,Random,2,ParallelBufferedSort,8,2988100,Random,2,ParallelBufferedSort,9,4239100,Random,2,ParallelBufferedSort,10,5803100,Random,2,ParallelRadixSort,0,67100,Random,2,ParallelRadixSort,1,83100,Random,2,ParallelRadixSort,2,157100,Random,2,ParallelRadixSort,3,365100,Random,2,ParallelRadixSort,4,726100,Random,2,ParallelRadixSort,5,1308100,Random,2,ParallelRadixSort,6,2175100,Random,2,ParallelRadixSort,7,3359100,Random,2,ParallelRadixSort,8,4962100,Random,2,ParallelRadixSort,9,6996100,Random,2,ParallelRadixSort,10,9552100,Random,2,StdSort,0,17100,Random,2,StdSort,1,24100,Random,2,StdSort,2,68100,Random,2,StdSort,3,195100,Random,2,StdSort,4,408100,Random,2,StdSort,5,757100,Random,2,StdSort,6,1288100,Random,2,StdSort,7,2016100,Random,2,StdSort,8,2982100,Random,2,StdSort,9,4234100,Random,2,StdSort,10,5797100,Random,3,ParallelSort,0,17100,Random,3,ParallelSort,1,23100,Random,3,ParallelSort,2,67100,Random,3,ParallelSort,3,190100,Random,3,ParallelSort,4,397100,Random,3,ParallelSort,5,748100,Random,3,ParallelSort,6,1255100,Random,3,ParallelSort,7,1963100,Random,3,ParallelSort,8,2903100,Random,3,ParallelSort,9,4121100,Random,3,ParallelSort,10,5643100,Random,3,ParallelBufferedSort,0,18100,Random,3,ParallelBufferedSort,1,22100,Random,3,ParallelBufferedSort,2,68100,Random,3,ParallelBufferedSort,3,190100,Random,3,ParallelBufferedSort,4,398100,Random,3,ParallelBufferedSort,5,737100,Random,3,ParallelBufferedSort,6,1252100,Random,3,ParallelBufferedSort,7,1965100,Random,3,ParallelBufferedSort,8,2908100,Random,3,ParallelBufferedSort,9,4121100,Random,3,ParallelBufferedSort,10,5642100,Random,3,ParallelRadixSort,0,97100,Random,3,ParallelRadixSort,1,111100,Random,3,ParallelRadixSort,2,186100,Random,3,ParallelRadixSort,3,390100,Random,3,ParallelRadixSort,4,739100,Random,3,ParallelRadixSort,5,1319100,Random,3,ParallelRadixSort,6,2175100,Random,3,ParallelRadixSort,7,3357100,Random,3,ParallelRadixSort,8,4930100,Random,3,ParallelRadixSort,9,6951100,Random,3,ParallelRadixSort,10,9486100,Random,3,StdSort,0,16100,Random,3,StdSort,1,21100,Random,3,StdSort,2,66100,Random,3,StdSort,3,189100,Random,3,StdSort,4,395100,Random,3,StdSort,5,735100,Random,3,StdSort,6,1251100,Random,3,StdSort,7,1958100,Random,3,StdSort,8,2898100,Random,3,StdSort,9,4115100,Random,3,StdSort,10,5635100,Random,4,ParallelSort,0,18100,Random,4,ParallelSort,1,27100,Random,4,ParallelSort,2,66100,Random,4,ParallelSort,3,190100,Random,4,ParallelSort,4,397100,Random,4,ParallelSort,5,734100,Random,4,ParallelSort,6,1250100,Random,4,ParallelSort,7,1956100,Random,4,ParallelSort,8,2894100,Random,4,ParallelSort,9,4105100,Random,4,ParallelSort,10,5618100,Random,4,ParallelBufferedSort,0,18100,Random,4,ParallelBufferedSort,1,25100,Random,4,ParallelBufferedSort,2,65100,Random,4,ParallelBufferedSort,3,190100,Random,4,ParallelBufferedSort,4,395100,Random,4,ParallelBufferedSort,5,745100,Random,4,ParallelBufferedSort,6,1249100,Random,4,ParallelBufferedSort,7,1957100,Random,4,ParallelBufferedSort,8,2893100,Random,4,ParallelBufferedSort,9,4105100,Random,4,ParallelBufferedSort,10,5617100,Random,4,ParallelRadixSort,0,125100,Random,4,ParallelRadixSort,1,129100,Random,4,ParallelRadixSort,2,208100,Random,4,ParallelRadixSort,3,433100,Random,4,ParallelRadixSort,4,751100,Random,4,ParallelRadixSort,5,1338100,Random,4,ParallelRadixSort,6,2170100,Random,4,ParallelRadixSort,7,3361100,Random,4,ParallelRadixSort,8,4930100,Random,4,ParallelRadixSort,9,6961100,Random,4,ParallelRadixSort,10,9450100,Random,4,StdSort,0,16100,Random,4,StdSort,1,22100,Random,4,StdSort,2,64100,Random,4,StdSort,3,188100,Random,4,StdSort,4,394100,Random,4,StdSort,5,732100,Random,4,StdSort,6,1246100,Random,4,StdSort,7,1951100,Random,4,StdSort,8,2887100,Random,4,StdSort,9,4100100,Random,4,StdSort,10,5613100,Random,5,ParallelSort,0,17100,Random,5,ParallelSort,1,25100,Random,5,ParallelSort,2,72100,Random,5,ParallelSort,3,210100,Random,5,ParallelSort,4,438100,Random,5,ParallelSort,5,814100,Random,5,ParallelSort,6,1385100,Random,5,ParallelSort,7,2167100,Random,5,ParallelSort,8,3218100,Random,5,ParallelSort,9,4558100,Random,5,ParallelSort,10,6230100,Random,5,ParallelBufferedSort,0,18100,Random,5,ParallelBufferedSort,1,26100,Random,5,ParallelBufferedSort,2,72100,Random,5,ParallelBufferedSort,3,213100,Random,5,ParallelBufferedSort,4,441100,Random,5,ParallelBufferedSort,5,814100,Random,5,ParallelBufferedSort,6,1384100,Random,5,ParallelBufferedSort,7,2168100,Random,5,ParallelBufferedSort,8,3216100,Random,5,ParallelBufferedSort,9,4553100,Random,5,ParallelBufferedSort,10,6231100,Random,5,ParallelRadixSort,0,115100,Random,5,ParallelRadixSort,1,294100,Random,5,ParallelRadixSort,2,205100,Random,5,ParallelRadixSort,3,425100,Random,5,ParallelRadixSort,4,791100,Random,5,ParallelRadixSort,5,1348100,Random,5,ParallelRadixSort,6,2178100,Random,5,ParallelRadixSort,7,3351100,Random,5,ParallelRadixSort,8,4922100,Random,5,ParallelRadixSort,9,6925100,Random,5,ParallelRadixSort,10,9448100,Random,5,StdSort,0,17100,Random,5,StdSort,1,24100,Random,5,StdSort,2,71100,Random,5,StdSort,3,208100,Random,5,StdSort,4,437100,Random,5,StdSort,5,812100,Random,5,StdSort,6,1381100,Random,5,StdSort,7,2164100,Random,5,StdSort,8,3213100,Random,5,StdSort,9,4547100,Random,5,StdSort,10,6225100,Random,6,ParallelSort,0,16100,Random,6,ParallelSort,1,22100,Random,6,ParallelSort,2,64100,Random,6,ParallelSort,3,182100,Random,6,ParallelSort,4,380100,Random,6,ParallelSort,5,703100,Random,6,ParallelSort,6,1200100,Random,6,ParallelSort,7,1876100,Random,6,ParallelSort,8,2774100,Random,6,ParallelSort,9,3938100,Random,6,ParallelSort,10,5386100,Random,6,ParallelBufferedSort,0,18100,Random,6,ParallelBufferedSort,1,23100,Random,6,ParallelBufferedSort,2,64100,Random,6,ParallelBufferedSort,3,184100,Random,6,ParallelBufferedSort,4,381100,Random,6,ParallelBufferedSort,5,717100,Random,6,ParallelBufferedSort,6,1202100,Random,6,ParallelBufferedSort,7,1876100,Random,6,ParallelBufferedSort,8,2775100,Random,6,ParallelBufferedSort,9,3939100,Random,6,ParallelBufferedSort,10,5392100,Random,6,ParallelRadixSort,0,125100,Random,6,ParallelRadixSort,1,931100,Random,6,ParallelRadixSort,2,458100,Random,6,ParallelRadixSort,3,442100,Random,6,ParallelRadixSort,4,773100,Random,6,ParallelRadixSort,5,1428100,Random,6,ParallelRadixSort,6,2187100,Random,6,ParallelRadixSort,7,3367100,Random,6,ParallelRadixSort,8,4928100,Random,6,ParallelRadixSort,9,6938100,Random,6,ParallelRadixSort,10,9444100,Random,6,StdSort,0,15100,Random,6,StdSort,1,21100,Random,6,StdSort,2,63100,Random,6,StdSort,3,180100,Random,6,StdSort,4,378100,Random,6,StdSort,5,702100,Random,6,StdSort,6,1195100,Random,6,StdSort,7,1872100,Random,6,StdSort,8,2769100,Random,6,StdSort,9,3932100,Random,6,StdSort,10,5383100,Random,7,ParallelSort,0,19100,Random,7,ParallelSort,1,26100,Random,7,ParallelSort,2,70100,Random,7,ParallelSort,3,203100,Random,7,ParallelSort,4,421100,Random,7,ParallelSort,5,778100,Random,7,ParallelSort,6,1323100,Random,7,ParallelSort,7,2070100,Random,7,ParallelSort,8,3074100,Random,7,ParallelSort,9,4350100,Random,7,ParallelSort,10,5954100,Random,7,ParallelBufferedSort,0,21100,Random,7,ParallelBufferedSort,1,25100,Random,7,ParallelBufferedSort,2,70100,Random,7,ParallelBufferedSort,3,201100,Random,7,ParallelBufferedSort,4,419100,Random,7,ParallelBufferedSort,5,777100,Random,7,ParallelBufferedSort,6,1323100,Random,7,ParallelBufferedSort,7,2072100,Random,7,ParallelBufferedSort,8,3074100,Random,7,ParallelBufferedSort,9,4349100,Random,7,ParallelBufferedSort,10,5953100,Random,7,ParallelRadixSort,0,842100,Random,7,ParallelRadixSort,1,819100,Random,7,ParallelRadixSort,2,881100,Random,7,ParallelRadixSort,3,1252100,Random,7,ParallelRadixSort,4,975100,Random,7,ParallelRadixSort,5,1354100,Random,7,ParallelRadixSort,6,2375100,Random,7,ParallelRadixSort,7,3376100,Random,7,ParallelRadixSort,8,4930100,Random,7,ParallelRadixSort,9,6946100,Random,7,ParallelRadixSort,10,9452100,Random,7,StdSort,0,27100,Random,7,StdSort,1,23100,Random,7,StdSort,2,69100,Random,7,StdSort,3,199100,Random,7,StdSort,4,417100,Random,7,StdSort,5,775100,Random,7,StdSort,6,1320100,Random,7,StdSort,7,2066100,Random,7,StdSort,8,3059100,Random,7,StdSort,9,4343100,Random,7,StdSort,10,5947100,Random,8,ParallelSort,0,17100,Random,8,ParallelSort,1,25100,Random,8,ParallelSort,2,64100,Random,8,ParallelSort,3,184100,Random,8,ParallelSort,4,383100,Random,8,ParallelSort,5,721100,Random,8,ParallelSort,6,1208100,Random,8,ParallelSort,7,1886100,Random,8,ParallelSort,8,2789100,Random,8,ParallelSort,9,3960100,Random,8,ParallelSort,10,5422100,Random,8,ParallelBufferedSort,0,18100,Random,8,ParallelBufferedSort,1,24100,Random,8,ParallelBufferedSort,2,64100,Random,8,ParallelBufferedSort,3,184100,Random,8,ParallelBufferedSort,4,383100,Random,8,ParallelBufferedSort,5,708100,Random,8,ParallelBufferedSort,6,1205100,Random,8,ParallelBufferedSort,7,1885100,Random,8,ParallelBufferedSort,8,2799100,Random,8,ParallelBufferedSort,9,3959100,Random,8,ParallelBufferedSort,10,5415100,Random,8,ParallelRadixSort,0,1402100,Random,8,ParallelRadixSort,1,1472100,Random,8,ParallelRadixSort,2,1021100,Random,8,ParallelRadixSort,3,1685100,Random,8,ParallelRadixSort,4,1214100,Random,8,ParallelRadixSort,5,1452100,Random,8,ParallelRadixSort,6,2278100,Random,8,ParallelRadixSort,7,3391100,Random,8,ParallelRadixSort,8,4926100,Random,8,ParallelRadixSort,9,6937100,Random,8,ParallelRadixSort,10,9438100,Random,8,StdSort,0,15100,Random,8,StdSort,1,22100,Random,8,StdSort,2,65100,Random,8,StdSort,3,188100,Random,8,StdSort,4,386100,Random,8,StdSort,5,706100,Random,8,StdSort,6,1202100,Random,8,StdSort,7,1882100,Random,8,StdSort,8,2784100,Random,8,StdSort,9,3953100,Random,8,StdSort,10,5412100,PreSorted,1,ParallelSort,0,7100,PreSorted,1,ParallelSort,1,10100,PreSorted,1,ParallelSort,2,29100,PreSorted,1,ParallelSort,3,81100,PreSorted,1,ParallelSort,4,169100,PreSorted,1,ParallelSort,5,314100,PreSorted,1,ParallelSort,6,529100,PreSorted,1,ParallelSort,7,835100,PreSorted,1,ParallelSort,8,1242100,PreSorted,1,ParallelSort,9,1746100,PreSorted,1,ParallelSort,10,2401100,PreSorted,1,ParallelBufferedSort,0,8100,PreSorted,1,ParallelBufferedSort,1,9100,PreSorted,1,ParallelBufferedSort,2,30100,PreSorted,1,ParallelBufferedSort,3,81100,PreSorted,1,ParallelBufferedSort,4,170100,PreSorted,1,ParallelBufferedSort,5,314100,PreSorted,1,ParallelBufferedSort,6,529100,PreSorted,1,ParallelBufferedSort,7,832100,PreSorted,1,ParallelBufferedSort,8,1242100,PreSorted,1,ParallelBufferedSort,9,1759100,PreSorted,1,ParallelBufferedSort,10,2401100,PreSorted,1,ParallelRadixSort,0,48100,PreSorted,1,ParallelRadixSort,1,64100,PreSorted,1,ParallelRadixSort,2,134100,PreSorted,1,ParallelRadixSort,3,347100,PreSorted,1,ParallelRadixSort,4,704100,PreSorted,1,ParallelRadixSort,5,1305100,PreSorted,1,ParallelRadixSort,6,2182100,PreSorted,1,ParallelRadixSort,7,3418100,PreSorted,1,ParallelRadixSort,8,5055100,PreSorted,1,ParallelRadixSort,9,7158100,PreSorted,1,ParallelRadixSort,10,9788100,PreSorted,1,StdSort,0,6100,PreSorted,1,StdSort,1,8100,PreSorted,1,StdSort,2,27100,PreSorted,1,StdSort,3,80100,PreSorted,1,StdSort,4,168100,PreSorted,1,StdSort,5,312100,PreSorted,1,StdSort,6,527100,PreSorted,1,StdSort,7,828100,PreSorted,1,StdSort,8,1239100,PreSorted,1,StdSort,9,1753100,PreSorted,1,StdSort,10,2394100,PreSorted,2,ParallelSort,0,7100,PreSorted,2,ParallelSort,1,10100,PreSorted,2,ParallelSort,2,29100,PreSorted,2,ParallelSort,3,81100,PreSorted,2,ParallelSort,4,170100,PreSorted,2,ParallelSort,5,314100,PreSorted,2,ParallelSort,6,530100,PreSorted,2,ParallelSort,7,835100,PreSorted,2,ParallelSort,8,1243100,PreSorted,2,ParallelSort,9,1760100,PreSorted,2,ParallelSort,10,2400100,PreSorted,2,ParallelBufferedSort,0,7100,PreSorted,2,ParallelBufferedSort,1,9100,PreSorted,2,ParallelBufferedSort,2,29100,PreSorted,2,ParallelBufferedSort,3,81100,PreSorted,2,ParallelBufferedSort,4,170100,PreSorted,2,ParallelBufferedSort,5,314100,PreSorted,2,ParallelBufferedSort,6,530100,PreSorted,2,ParallelBufferedSort,7,832100,PreSorted,2,ParallelBufferedSort,8,1245100,PreSorted,2,ParallelBufferedSort,9,1759100,PreSorted,2,ParallelBufferedSort,10,2400100,PreSorted,2,ParallelRadixSort,0,70100,PreSorted,2,ParallelRadixSort,1,84100,PreSorted,2,ParallelRadixSort,2,155100,PreSorted,2,ParallelRadixSort,3,366100,PreSorted,2,ParallelRadixSort,4,724100,PreSorted,2,ParallelRadixSort,5,1305100,PreSorted,2,ParallelRadixSort,6,2169100,PreSorted,2,ParallelRadixSort,7,3364100,PreSorted,2,ParallelRadixSort,8,4957100,PreSorted,2,ParallelRadixSort,9,6991100,PreSorted,2,ParallelRadixSort,10,9540100,PreSorted,2,StdSort,0,6100,PreSorted,2,StdSort,1,9100,PreSorted,2,StdSort,2,27100,PreSorted,2,StdSort,3,80100,PreSorted,2,StdSort,4,168100,PreSorted,2,StdSort,5,312100,PreSorted,2,StdSort,6,527100,PreSorted,2,StdSort,7,828100,PreSorted,2,StdSort,8,1239100,PreSorted,2,StdSort,9,1752100,PreSorted,2,StdSort,10,2394100,PreSorted,3,ParallelSort,0,7100,PreSorted,3,ParallelSort,1,10100,PreSorted,3,ParallelSort,2,28100,PreSorted,3,ParallelSort,3,81100,PreSorted,3,ParallelSort,4,169100,PreSorted,3,ParallelSort,5,314100,PreSorted,3,ParallelSort,6,530100,PreSorted,3,ParallelSort,7,832100,PreSorted,3,ParallelSort,8,1242100,PreSorted,3,ParallelSort,9,1760100,PreSorted,3,ParallelSort,10,2405100,PreSorted,3,ParallelBufferedSort,0,7100,PreSorted,3,ParallelBufferedSort,1,10100,PreSorted,3,ParallelBufferedSort,2,28100,PreSorted,3,ParallelBufferedSort,3,81100,PreSorted,3,ParallelBufferedSort,4,169100,PreSorted,3,ParallelBufferedSort,5,314100,PreSorted,3,ParallelBufferedSort,6,530100,PreSorted,3,ParallelBufferedSort,7,831100,PreSorted,3,ParallelBufferedSort,8,1243100,PreSorted,3,ParallelBufferedSort,9,1758100,PreSorted,3,ParallelBufferedSort,10,2402100,PreSorted,3,ParallelRadixSort,0,91100,PreSorted,3,ParallelRadixSort,1,107100,PreSorted,3,ParallelRadixSort,2,188100,PreSorted,3,ParallelRadixSort,3,390100,PreSorted,3,ParallelRadixSort,4,738100,PreSorted,3,ParallelRadixSort,5,1307100,PreSorted,3,ParallelRadixSort,6,2177100,PreSorted,3,ParallelRadixSort,7,3375100,PreSorted,3,ParallelRadixSort,8,4946100,PreSorted,3,ParallelRadixSort,9,6955100,PreSorted,3,ParallelRadixSort,10,9483100,PreSorted,3,StdSort,0,6100,PreSorted,3,StdSort,1,8100,PreSorted,3,StdSort,2,27100,PreSorted,3,StdSort,3,80100,PreSorted,3,StdSort,4,168100,PreSorted,3,StdSort,5,312100,PreSorted,3,StdSort,6,527100,PreSorted,3,StdSort,7,828100,PreSorted,3,StdSort,8,1239100,PreSorted,3,StdSort,9,1752100,PreSorted,3,StdSort,10,2394100,PreSorted,4,ParallelSort,0,7100,PreSorted,4,ParallelSort,1,9100,PreSorted,4,ParallelSort,2,29100,PreSorted,4,ParallelSort,3,81100,PreSorted,4,ParallelSort,4,169100,PreSorted,4,ParallelSort,5,314100,PreSorted,4,ParallelSort,6,530100,PreSorted,4,ParallelSort,7,831100,PreSorted,4,ParallelSort,8,1242100,PreSorted,4,ParallelSort,9,1748100,PreSorted,4,ParallelSort,10,2403100,PreSorted,4,ParallelBufferedSort,0,8100,PreSorted,4,ParallelBufferedSort,1,10100,PreSorted,4,ParallelBufferedSort,2,29100,PreSorted,4,ParallelBufferedSort,3,81100,PreSorted,4,ParallelBufferedSort,4,169100,PreSorted,4,ParallelBufferedSort,5,314100,PreSorted,4,ParallelBufferedSort,6,529100,PreSorted,4,ParallelBufferedSort,7,832100,PreSorted,4,ParallelBufferedSort,8,1243100,PreSorted,4,ParallelBufferedSort,9,1753100,PreSorted,4,ParallelBufferedSort,10,2402100,PreSorted,4,ParallelRadixSort,0,126100,PreSorted,4,ParallelRadixSort,1,128100,PreSorted,4,ParallelRadixSort,2,210100,PreSorted,4,ParallelRadixSort,3,427100,PreSorted,4,ParallelRadixSort,4,759100,PreSorted,4,ParallelRadixSort,5,1328100,PreSorted,4,ParallelRadixSort,6,2175100,PreSorted,4,ParallelRadixSort,7,3353100,PreSorted,4,ParallelRadixSort,8,4928100,PreSorted,4,ParallelRadixSort,9,6951100,PreSorted,4,ParallelRadixSort,10,9456100,PreSorted,4,StdSort,0,6100,PreSorted,4,StdSort,1,9100,PreSorted,4,StdSort,2,27100,PreSorted,4,StdSort,3,80100,PreSorted,4,StdSort,4,168100,PreSorted,4,StdSort,5,312100,PreSorted,4,StdSort,6,527100,PreSorted,4,StdSort,7,828100,PreSorted,4,StdSort,8,1238100,PreSorted,4,StdSort,9,1753100,PreSorted,4,StdSort,10,2394100,PreSorted,5,ParallelSort,0,7100,PreSorted,5,ParallelSort,1,10100,PreSorted,5,ParallelSort,2,29100,PreSorted,5,ParallelSort,3,82100,PreSorted,5,ParallelSort,4,169100,PreSorted,5,ParallelSort,5,314100,PreSorted,5,ParallelSort,6,529100,PreSorted,5,ParallelSort,7,832100,PreSorted,5,ParallelSort,8,1233100,PreSorted,5,ParallelSort,9,1757100,PreSorted,5,ParallelSort,10,2400100,PreSorted,5,ParallelBufferedSort,0,7100,PreSorted,5,ParallelBufferedSort,1,11100,PreSorted,5,ParallelBufferedSort,2,28100,PreSorted,5,ParallelBufferedSort,3,81100,PreSorted,5,ParallelBufferedSort,4,169100,PreSorted,5,ParallelBufferedSort,5,314100,PreSorted,5,ParallelBufferedSort,6,529100,PreSorted,5,ParallelBufferedSort,7,832100,PreSorted,5,ParallelBufferedSort,8,1243100,PreSorted,5,ParallelBufferedSort,9,1758100,PreSorted,5,ParallelBufferedSort,10,2400100,PreSorted,5,ParallelRadixSort,0,113100,PreSorted,5,ParallelRadixSort,1,141100,PreSorted,5,ParallelRadixSort,2,236100,PreSorted,5,ParallelRadixSort,3,414100,PreSorted,5,ParallelRadixSort,4,780100,PreSorted,5,ParallelRadixSort,5,1342100,PreSorted,5,ParallelRadixSort,6,2180100,PreSorted,5,ParallelRadixSort,7,3367100,PreSorted,5,ParallelRadixSort,8,4924100,PreSorted,5,ParallelRadixSort,9,6922100,PreSorted,5,ParallelRadixSort,10,9425100,PreSorted,5,StdSort,0,12100,PreSorted,5,StdSort,1,9100,PreSorted,5,StdSort,2,27100,PreSorted,5,StdSort,3,80100,PreSorted,5,StdSort,4,168100,PreSorted,5,StdSort,5,312100,PreSorted,5,StdSort,6,527100,PreSorted,5,StdSort,7,828100,PreSorted,5,StdSort,8,1238100,PreSorted,5,StdSort,9,1753100,PreSorted,5,StdSort,10,2394100,PreSorted,6,ParallelSort,0,7100,PreSorted,6,ParallelSort,1,10100,PreSorted,6,ParallelSort,2,28100,PreSorted,6,ParallelSort,3,82100,PreSorted,6,ParallelSort,4,169100,PreSorted,6,ParallelSort,5,314100,PreSorted,6,ParallelSort,6,530100,PreSorted,6,ParallelSort,7,832100,PreSorted,6,ParallelSort,8,1243100,PreSorted,6,ParallelSort,9,1745100,PreSorted,6,ParallelSort,10,2399100,PreSorted,6,ParallelBufferedSort,0,7100,PreSorted,6,ParallelBufferedSort,1,10100,PreSorted,6,ParallelBufferedSort,2,29100,PreSorted,6,ParallelBufferedSort,3,81100,PreSorted,6,ParallelBufferedSort,4,169100,PreSorted,6,ParallelBufferedSort,5,314100,PreSorted,6,ParallelBufferedSort,6,530100,PreSorted,6,ParallelBufferedSort,7,831100,PreSorted,6,ParallelBufferedSort,8,1233100,PreSorted,6,ParallelBufferedSort,9,1766100,PreSorted,6,ParallelBufferedSort,10,2401100,PreSorted,6,ParallelRadixSort,0,125100,PreSorted,6,ParallelRadixSort,1,711100,PreSorted,6,ParallelRadixSort,2,596100,PreSorted,6,ParallelRadixSort,3,449100,PreSorted,6,ParallelRadixSort,4,778100,PreSorted,6,ParallelRadixSort,5,1424100,PreSorted,6,ParallelRadixSort,6,2183100,PreSorted,6,ParallelRadixSort,7,3362100,PreSorted,6,ParallelRadixSort,8,4937100,PreSorted,6,ParallelRadixSort,9,6936100,PreSorted,6,ParallelRadixSort,10,9437100,PreSorted,6,StdSort,0,6100,PreSorted,6,StdSort,1,9100,PreSorted,6,StdSort,2,27100,PreSorted,6,StdSort,3,80100,PreSorted,6,StdSort,4,168100,PreSorted,6,StdSort,5,312100,PreSorted,6,StdSort,6,527100,PreSorted,6,StdSort,7,828100,PreSorted,6,StdSort,8,1239100,PreSorted,6,StdSort,9,1753100,PreSorted,6,StdSort,10,2394100,PreSorted,7,ParallelSort,0,7100,PreSorted,7,ParallelSort,1,10100,PreSorted,7,ParallelSort,2,29100,PreSorted,7,ParallelSort,3,81100,PreSorted,7,ParallelSort,4,169100,PreSorted,7,ParallelSort,5,314100,PreSorted,7,ParallelSort,6,529100,PreSorted,7,ParallelSort,7,832100,PreSorted,7,ParallelSort,8,1243100,PreSorted,7,ParallelSort,9,1766100,PreSorted,7,ParallelSort,10,2399100,PreSorted,7,ParallelBufferedSort,0,7100,PreSorted,7,ParallelBufferedSort,1,10100,PreSorted,7,ParallelBufferedSort,2,28100,PreSorted,7,ParallelBufferedSort,3,82100,PreSorted,7,ParallelBufferedSort,4,171100,PreSorted,7,ParallelBufferedSort,5,315100,PreSorted,7,ParallelBufferedSort,6,534100,PreSorted,7,ParallelBufferedSort,7,832100,PreSorted,7,ParallelBufferedSort,8,1236100,PreSorted,7,ParallelBufferedSort,9,1765100,PreSorted,7,ParallelBufferedSort,10,2409100,PreSorted,7,ParallelRadixSort,0,884100,PreSorted,7,ParallelRadixSort,1,1245100,PreSorted,7,ParallelRadixSort,2,1026100,PreSorted,7,ParallelRadixSort,3,502100,PreSorted,7,ParallelRadixSort,4,798100,PreSorted,7,ParallelRadixSort,5,1525100,PreSorted,7,ParallelRadixSort,6,2428100,PreSorted,7,ParallelRadixSort,7,3376100,PreSorted,7,ParallelRadixSort,8,4940100,PreSorted,7,ParallelRadixSort,9,6938100,PreSorted,7,ParallelRadixSort,10,9434100,PreSorted,7,StdSort,0,12100,PreSorted,7,StdSort,1,8100,PreSorted,7,StdSort,2,27100,PreSorted,7,StdSort,3,80100,PreSorted,7,StdSort,4,168100,PreSorted,7,StdSort,5,312100,PreSorted,7,StdSort,6,527100,PreSorted,7,StdSort,7,828100,PreSorted,7,StdSort,8,1238100,PreSorted,7,StdSort,9,1753100,PreSorted,7,StdSort,10,2394100,PreSorted,8,ParallelSort,0,7100,PreSorted,8,ParallelSort,1,10100,PreSorted,8,ParallelSort,2,28100,PreSorted,8,ParallelSort,3,81100,PreSorted,8,ParallelSort,4,169100,PreSorted,8,ParallelSort,5,314100,PreSorted,8,ParallelSort,6,529100,PreSorted,8,ParallelSort,7,831100,PreSorted,8,ParallelSort,8,1244100,PreSorted,8,ParallelSort,9,1757100,PreSorted,8,ParallelSort,10,2407100,PreSorted,8,ParallelBufferedSort,0,8100,PreSorted,8,ParallelBufferedSort,1,10100,PreSorted,8,ParallelBufferedSort,2,28100,PreSorted,8,ParallelBufferedSort,3,81100,PreSorted,8,ParallelBufferedSort,4,169100,PreSorted,8,ParallelBufferedSort,5,314100,PreSorted,8,ParallelBufferedSort,6,530100,PreSorted,8,ParallelBufferedSort,7,833100,PreSorted,8,ParallelBufferedSort,8,1242100,PreSorted,8,ParallelBufferedSort,9,1765100,PreSorted,8,ParallelBufferedSort,10,2409100,PreSorted,8,ParallelRadixSort,0,1339100,PreSorted,8,ParallelRadixSort,1,971100,PreSorted,8,ParallelRadixSort,2,1224100,PreSorted,8,ParallelRadixSort,3,1719100,PreSorted,8,ParallelRadixSort,4,1385100,PreSorted,8,ParallelRadixSort,5,1405100,PreSorted,8,ParallelRadixSort,6,2217100,PreSorted,8,ParallelRadixSort,7,3563100,PreSorted,8,ParallelRadixSort,8,4928100,PreSorted,8,ParallelRadixSort,9,6937100,PreSorted,8,ParallelRadixSort,10,9434100,PreSorted,8,StdSort,0,6100,PreSorted,8,StdSort,1,9100,PreSorted,8,StdSort,2,27100,PreSorted,8,StdSort,3,80100,PreSorted,8,StdSort,4,168100,PreSorted,8,StdSort,5,312100,PreSorted,8,StdSort,6,527100,PreSorted,8,StdSort,7,828100,PreSorted,8,StdSort,8,1239100,PreSorted,8,StdSort,9,1753100,PreSorted,8,StdSort,10,2394100,NearlySorted,1,ParallelSort,0,8100,NearlySorted,1,ParallelSort,1,10100,NearlySorted,1,ParallelSort,2,30100,NearlySorted,1,ParallelSort,3,82100,NearlySorted,1,ParallelSort,4,170100,NearlySorted,1,ParallelSort,5,315100,NearlySorted,1,ParallelSort,6,532100,NearlySorted,1,ParallelSort,7,835100,NearlySorted,1,ParallelSort,8,1246100,NearlySorted,1,ParallelSort,9,1763100,NearlySorted,1,ParallelSort,10,2408100,NearlySorted,1,ParallelBufferedSort,0,8100,NearlySorted,1,ParallelBufferedSort,1,10100,NearlySorted,1,ParallelBufferedSort,2,28100,NearlySorted,1,ParallelBufferedSort,3,81100,NearlySorted,1,ParallelBufferedSort,4,169100,NearlySorted,1,ParallelBufferedSort,5,315100,NearlySorted,1,ParallelBufferedSort,6,531100,NearlySorted,1,ParallelBufferedSort,7,834100,NearlySorted,1,ParallelBufferedSort,8,1246100,NearlySorted,1,ParallelBufferedSort,9,1764100,NearlySorted,1,ParallelBufferedSort,10,2408100,NearlySorted,1,ParallelRadixSort,0,52100,NearlySorted,1,ParallelRadixSort,1,64100,NearlySorted,1,ParallelRadixSort,2,134100,NearlySorted,1,ParallelRadixSort,3,347100,NearlySorted,1,ParallelRadixSort,4,704100,NearlySorted,1,ParallelRadixSort,5,1304100,NearlySorted,1,ParallelRadixSort,6,2184100,NearlySorted,1,ParallelRadixSort,7,3418100,NearlySorted,1,ParallelRadixSort,8,5059100,NearlySorted,1,ParallelRadixSort,9,7153100,NearlySorted,1,ParallelRadixSort,10,9787100,NearlySorted,1,StdSort,0,6100,NearlySorted,1,StdSort,1,9100,NearlySorted,1,StdSort,2,26100,NearlySorted,1,StdSort,3,80100,NearlySorted,1,StdSort,4,168100,NearlySorted,1,StdSort,5,312100,NearlySorted,1,StdSort,6,528100,NearlySorted,1,StdSort,7,829100,NearlySorted,1,StdSort,8,1241100,NearlySorted,1,StdSort,9,1756100,NearlySorted,1,StdSort,10,2400100,NearlySorted,2,ParallelSort,0,7100,NearlySorted,2,ParallelSort,1,10100,NearlySorted,2,ParallelSort,2,29100,NearlySorted,2,ParallelSort,3,81100,NearlySorted,2,ParallelSort,4,170100,NearlySorted,2,ParallelSort,5,314100,NearlySorted,2,ParallelSort,6,531100,NearlySorted,2,ParallelSort,7,833100,NearlySorted,2,ParallelSort,8,1245100,NearlySorted,2,ParallelSort,9,1763100,NearlySorted,2,ParallelSort,10,2405100,NearlySorted,2,ParallelBufferedSort,0,8100,NearlySorted,2,ParallelBufferedSort,1,10100,NearlySorted,2,ParallelBufferedSort,2,27100,NearlySorted,2,ParallelBufferedSort,3,82100,NearlySorted,2,ParallelBufferedSort,4,170100,NearlySorted,2,ParallelBufferedSort,5,314100,NearlySorted,2,ParallelBufferedSort,6,530100,NearlySorted,2,ParallelBufferedSort,7,833100,NearlySorted,2,ParallelBufferedSort,8,1246100,NearlySorted,2,ParallelBufferedSort,9,1764100,NearlySorted,2,ParallelBufferedSort,10,2411100,NearlySorted,2,ParallelRadixSort,0,69100,NearlySorted,2,ParallelRadixSort,1,86100,NearlySorted,2,ParallelRadixSort,2,155100,NearlySorted,2,ParallelRadixSort,3,364100,NearlySorted,2,ParallelRadixSort,4,723100,NearlySorted,2,ParallelRadixSort,5,1316100,NearlySorted,2,ParallelRadixSort,6,2172100,NearlySorted,2,ParallelRadixSort,7,3368100,NearlySorted,2,ParallelRadixSort,8,4954100,NearlySorted,2,ParallelRadixSort,9,7000100,NearlySorted,2,ParallelRadixSort,10,9549100,NearlySorted,2,StdSort,0,6100,NearlySorted,2,StdSort,1,11100,NearlySorted,2,StdSort,2,26100,NearlySorted,2,StdSort,3,80100,NearlySorted,2,StdSort,4,168100,NearlySorted,2,StdSort,5,313100,NearlySorted,2,StdSort,6,528100,NearlySorted,2,StdSort,7,830100,NearlySorted,2,StdSort,8,1241100,NearlySorted,2,StdSort,9,1757100,NearlySorted,2,StdSort,10,2400100,NearlySorted,3,ParallelSort,0,8100,NearlySorted,3,ParallelSort,1,10100,NearlySorted,3,ParallelSort,2,27100,NearlySorted,3,ParallelSort,3,82100,NearlySorted,3,ParallelSort,4,170100,NearlySorted,3,ParallelSort,5,315100,NearlySorted,3,ParallelSort,6,531100,NearlySorted,3,ParallelSort,7,843100,NearlySorted,3,ParallelSort,8,1247100,NearlySorted,3,ParallelSort,9,1763100,NearlySorted,3,ParallelSort,10,2408100,NearlySorted,3,ParallelBufferedSort,0,7100,NearlySorted,3,ParallelBufferedSort,1,10100,NearlySorted,3,ParallelBufferedSort,2,28100,NearlySorted,3,ParallelBufferedSort,3,81100,NearlySorted,3,ParallelBufferedSort,4,170100,NearlySorted,3,ParallelBufferedSort,5,314100,NearlySorted,3,ParallelBufferedSort,6,530100,NearlySorted,3,ParallelBufferedSort,7,844100,NearlySorted,3,ParallelBufferedSort,8,1247100,NearlySorted,3,ParallelBufferedSort,9,1760100,NearlySorted,3,ParallelBufferedSort,10,2410100,NearlySorted,3,ParallelRadixSort,0,88100,NearlySorted,3,ParallelRadixSort,1,107100,NearlySorted,3,ParallelRadixSort,2,181100,NearlySorted,3,ParallelRadixSort,3,386100,NearlySorted,3,ParallelRadixSort,4,745100,NearlySorted,3,ParallelRadixSort,5,1318100,NearlySorted,3,ParallelRadixSort,6,2173100,NearlySorted,3,ParallelRadixSort,7,3368100,NearlySorted,3,ParallelRadixSort,8,4945100,NearlySorted,3,ParallelRadixSort,9,6959100,NearlySorted,3,ParallelRadixSort,10,9499100,NearlySorted,3,StdSort,0,12100,NearlySorted,3,StdSort,1,9100,NearlySorted,3,StdSort,2,26100,NearlySorted,3,StdSort,3,80100,NearlySorted,3,StdSort,4,168100,NearlySorted,3,StdSort,5,313100,NearlySorted,3,StdSort,6,528100,NearlySorted,3,StdSort,7,830100,NearlySorted,3,StdSort,8,1242100,NearlySorted,3,StdSort,9,1757100,NearlySorted,3,StdSort,10,2400100,NearlySorted,4,ParallelSort,0,7100,NearlySorted,4,ParallelSort,1,10100,NearlySorted,4,ParallelSort,2,29100,NearlySorted,4,ParallelSort,3,81100,NearlySorted,4,ParallelSort,4,169100,NearlySorted,4,ParallelSort,5,315100,NearlySorted,4,ParallelSort,6,531100,NearlySorted,4,ParallelSort,7,833100,NearlySorted,4,ParallelSort,8,1253100,NearlySorted,4,ParallelSort,9,1768100,NearlySorted,4,ParallelSort,10,2407100,NearlySorted,4,ParallelBufferedSort,0,8100,NearlySorted,4,ParallelBufferedSort,1,10100,NearlySorted,4,ParallelBufferedSort,2,30100,NearlySorted,4,ParallelBufferedSort,3,82100,NearlySorted,4,ParallelBufferedSort,4,170100,NearlySorted,4,ParallelBufferedSort,5,315100,NearlySorted,4,ParallelBufferedSort,6,531100,NearlySorted,4,ParallelBufferedSort,7,838100,NearlySorted,4,ParallelBufferedSort,8,1247100,NearlySorted,4,ParallelBufferedSort,9,1769100,NearlySorted,4,ParallelBufferedSort,10,2407100,NearlySorted,4,ParallelRadixSort,0,95100,NearlySorted,4,ParallelRadixSort,1,134100,NearlySorted,4,ParallelRadixSort,2,199100,NearlySorted,4,ParallelRadixSort,3,429100,NearlySorted,4,ParallelRadixSort,4,761100,NearlySorted,4,ParallelRadixSort,5,1333100,NearlySorted,4,ParallelRadixSort,6,2175100,NearlySorted,4,ParallelRadixSort,7,3349100,NearlySorted,4,ParallelRadixSort,8,4927100,NearlySorted,4,ParallelRadixSort,9,6929100,NearlySorted,4,ParallelRadixSort,10,9438100,NearlySorted,4,StdSort,0,12100,NearlySorted,4,StdSort,1,9100,NearlySorted,4,StdSort,2,26100,NearlySorted,4,StdSort,3,80100,NearlySorted,4,StdSort,4,168100,NearlySorted,4,StdSort,5,313100,NearlySorted,4,StdSort,6,528100,NearlySorted,4,StdSort,7,830100,NearlySorted,4,StdSort,8,1242100,NearlySorted,4,StdSort,9,1756100,NearlySorted,4,StdSort,10,2400100,NearlySorted,5,ParallelSort,0,7100,NearlySorted,5,ParallelSort,1,10100,NearlySorted,5,ParallelSort,2,27100,NearlySorted,5,ParallelSort,3,81100,NearlySorted,5,ParallelSort,4,169100,NearlySorted,5,ParallelSort,5,314100,NearlySorted,5,ParallelSort,6,531100,NearlySorted,5,ParallelSort,7,833100,NearlySorted,5,ParallelSort,8,1246100,NearlySorted,5,ParallelSort,9,1761100,NearlySorted,5,ParallelSort,10,2411100,NearlySorted,5,ParallelBufferedSort,0,8100,NearlySorted,5,ParallelBufferedSort,1,10100,NearlySorted,5,ParallelBufferedSort,2,27100,NearlySorted,5,ParallelBufferedSort,3,82100,NearlySorted,5,ParallelBufferedSort,4,170100,NearlySorted,5,ParallelBufferedSort,5,315100,NearlySorted,5,ParallelBufferedSort,6,531100,NearlySorted,5,ParallelBufferedSort,7,833100,NearlySorted,5,ParallelBufferedSort,8,1247100,NearlySorted,5,ParallelBufferedSort,9,1771100,NearlySorted,5,ParallelBufferedSort,10,2415100,NearlySorted,5,ParallelRadixSort,0,116100,NearlySorted,5,ParallelRadixSort,1,316100,NearlySorted,5,ParallelRadixSort,2,203100,NearlySorted,5,ParallelRadixSort,3,442100,NearlySorted,5,ParallelRadixSort,4,771100,NearlySorted,5,ParallelRadixSort,5,1342100,NearlySorted,5,ParallelRadixSort,6,2184100,NearlySorted,5,ParallelRadixSort,7,3361100,NearlySorted,5,ParallelRadixSort,8,4933100,NearlySorted,5,ParallelRadixSort,9,6950100,NearlySorted,5,ParallelRadixSort,10,9462100,NearlySorted,5,StdSort,0,12100,NearlySorted,5,StdSort,1,9100,NearlySorted,5,StdSort,2,26100,NearlySorted,5,StdSort,3,80100,NearlySorted,5,StdSort,4,168100,NearlySorted,5,StdSort,5,313100,NearlySorted,5,StdSort,6,528100,NearlySorted,5,StdSort,7,830100,NearlySorted,5,StdSort,8,1242100,NearlySorted,5,StdSort,9,1757100,NearlySorted,5,StdSort,10,2400100,NearlySorted,6,ParallelSort,0,7100,NearlySorted,6,ParallelSort,1,10100,NearlySorted,6,ParallelSort,2,27100,NearlySorted,6,ParallelSort,3,81100,NearlySorted,6,ParallelSort,4,170100,NearlySorted,6,ParallelSort,5,314100,NearlySorted,6,ParallelSort,6,531100,NearlySorted,6,ParallelSort,7,834100,NearlySorted,6,ParallelSort,8,1246100,NearlySorted,6,ParallelSort,9,1761100,NearlySorted,6,ParallelSort,10,2415100,NearlySorted,6,ParallelBufferedSort,0,8100,NearlySorted,6,ParallelBufferedSort,1,10100,NearlySorted,6,ParallelBufferedSort,2,27100,NearlySorted,6,ParallelBufferedSort,3,81100,NearlySorted,6,ParallelBufferedSort,4,170100,NearlySorted,6,ParallelBufferedSort,5,315100,NearlySorted,6,ParallelBufferedSort,6,531100,NearlySorted,6,ParallelBufferedSort,7,833100,NearlySorted,6,ParallelBufferedSort,8,1246100,NearlySorted,6,ParallelBufferedSort,9,1769100,NearlySorted,6,ParallelBufferedSort,10,2416100,NearlySorted,6,ParallelRadixSort,0,140100,NearlySorted,6,ParallelRadixSort,1,363100,NearlySorted,6,ParallelRadixSort,2,395100,NearlySorted,6,ParallelRadixSort,3,429100,NearlySorted,6,ParallelRadixSort,4,779100,NearlySorted,6,ParallelRadixSort,5,1430100,NearlySorted,6,ParallelRadixSort,6,2189100,NearlySorted,6,ParallelRadixSort,7,3362100,NearlySorted,6,ParallelRadixSort,8,4931100,NearlySorted,6,ParallelRadixSort,9,6934100,NearlySorted,6,ParallelRadixSort,10,9447100,NearlySorted,6,StdSort,0,13100,NearlySorted,6,StdSort,1,9100,NearlySorted,6,StdSort,2,26100,NearlySorted,6,StdSort,3,80100,NearlySorted,6,StdSort,4,168100,NearlySorted,6,StdSort,5,313100,NearlySorted,6,StdSort,6,528100,NearlySorted,6,StdSort,7,830100,NearlySorted,6,StdSort,8,1242100,NearlySorted,6,StdSort,9,1756100,NearlySorted,6,StdSort,10,2400100,NearlySorted,7,ParallelSort,0,7100,NearlySorted,7,ParallelSort,1,10100,NearlySorted,7,ParallelSort,2,27100,NearlySorted,7,ParallelSort,3,82100,NearlySorted,7,ParallelSort,4,170100,NearlySorted,7,ParallelSort,5,315100,NearlySorted,7,ParallelSort,6,531100,NearlySorted,7,ParallelSort,7,832100,NearlySorted,7,ParallelSort,8,1247100,NearlySorted,7,ParallelSort,9,1763100,NearlySorted,7,ParallelSort,10,2407100,NearlySorted,7,ParallelBufferedSort,0,7100,NearlySorted,7,ParallelBufferedSort,1,9100,NearlySorted,7,ParallelBufferedSort,2,27100,NearlySorted,7,ParallelBufferedSort,3,81100,NearlySorted,7,ParallelBufferedSort,4,169100,NearlySorted,7,ParallelBufferedSort,5,314100,NearlySorted,7,ParallelBufferedSort,6,531100,NearlySorted,7,ParallelBufferedSort,7,833100,NearlySorted,7,ParallelBufferedSort,8,1247100,NearlySorted,7,ParallelBufferedSort,9,1762100,NearlySorted,7,ParallelBufferedSort,10,2413100,NearlySorted,7,ParallelRadixSort,0,811100,NearlySorted,7,ParallelRadixSort,1,913100,NearlySorted,7,ParallelRadixSort,2,994100,NearlySorted,7,ParallelRadixSort,3,1018100,NearlySorted,7,ParallelRadixSort,4,1186100,NearlySorted,7,ParallelRadixSort,5,1367100,NearlySorted,7,ParallelRadixSort,6,2285100,NearlySorted,7,ParallelRadixSort,7,3371100,NearlySorted,7,ParallelRadixSort,8,4940100,NearlySorted,7,ParallelRadixSort,9,6929100,NearlySorted,7,ParallelRadixSort,10,9428100,NearlySorted,7,StdSort,0,6100,NearlySorted,7,StdSort,1,9100,NearlySorted,7,StdSort,2,26100,NearlySorted,7,StdSort,3,80100,NearlySorted,7,StdSort,4,168100,NearlySorted,7,StdSort,5,313100,NearlySorted,7,StdSort,6,528100,NearlySorted,7,StdSort,7,830100,NearlySorted,7,StdSort,8,1242100,NearlySorted,7,StdSort,9,1756100,NearlySorted,7,StdSort,10,2400100,NearlySorted,8,ParallelSort,0,8100,NearlySorted,8,ParallelSort,1,10100,NearlySorted,8,ParallelSort,2,27100,NearlySorted,8,ParallelSort,3,82100,NearlySorted,8,ParallelSort,4,170100,NearlySorted,8,ParallelSort,5,315100,NearlySorted,8,ParallelSort,6,531100,NearlySorted,8,ParallelSort,7,834100,NearlySorted,8,ParallelSort,8,1247100,NearlySorted,8,ParallelSort,9,1762100,NearlySorted,8,ParallelSort,10,2409100,NearlySorted,8,ParallelBufferedSort,0,7100,NearlySorted,8,ParallelBufferedSort,1,9100,NearlySorted,8,ParallelBufferedSort,2,27100,NearlySorted,8,ParallelBufferedSort,3,82100,NearlySorted,8,ParallelBufferedSort,4,169100,NearlySorted,8,ParallelBufferedSort,5,314100,NearlySorted,8,ParallelBufferedSort,6,530100,NearlySorted,8,ParallelBufferedSort,7,833100,NearlySorted,8,ParallelBufferedSort,8,1245100,NearlySorted,8,ParallelBufferedSort,9,1761100,NearlySorted,8,ParallelBufferedSort,10,2410100,NearlySorted,8,ParallelRadixSort,0,1395100,NearlySorted,8,ParallelRadixSort,1,1359100,NearlySorted,8,ParallelRadixSort,2,1177100,NearlySorted,8,ParallelRadixSort,3,1386100,NearlySorted,8,ParallelRadixSort,4,1168100,NearlySorted,8,ParallelRadixSort,5,1542100,NearlySorted,8,ParallelRadixSort,6,2263100,NearlySorted,8,ParallelRadixSort,7,3537100,NearlySorted,8,ParallelRadixSort,8,4925100,NearlySorted,8,ParallelRadixSort,9,6932100,NearlySorted,8,ParallelRadixSort,10,9424100,NearlySorted,8,StdSort,0,6100,NearlySorted,8,StdSort,1,11100,NearlySorted,8,StdSort,2,26100,NearlySorted,8,StdSort,3,80100,NearlySorted,8,StdSort,4,168100,NearlySorted,8,StdSort,5,313100,NearlySorted,8,StdSort,6,528100,NearlySorted,8,StdSort,7,830100,NearlySorted,8,StdSort,8,1242100,NearlySorted,8,StdSort,9,1756100,NearlySorted,8,StdSort,10,2400100,NormalDistributionWithDups,1,ParallelSort,0,29100,NormalDistributionWithDups,1,ParallelSort,1,38100,NormalDistributionWithDups,1,ParallelSort,2,102100,NormalDistributionWithDups,1,ParallelSort,3,298100,NormalDistributionWithDups,1,ParallelSort,4,620100,NormalDistributionWithDups,1,ParallelSort,5,1162100,NormalDistributionWithDups,1,ParallelSort,6,1958100,NormalDistributionWithDups,1,ParallelSort,7,3063100,NormalDistributionWithDups,1,ParallelSort,8,4531100,NormalDistributionWithDups,1,ParallelSort,9,6424100,NormalDistributionWithDups,1,ParallelSort,10,8797100,NormalDistributionWithDups,1,ParallelBufferedSort,0,29100,NormalDistributionWithDups,1,ParallelBufferedSort,1,39100,NormalDistributionWithDups,1,ParallelBufferedSort,2,103100,NormalDistributionWithDups,1,ParallelBufferedSort,3,302100,NormalDistributionWithDups,1,ParallelBufferedSort,4,623100,NormalDistributionWithDups,1,ParallelBufferedSort,5,1155100,NormalDistributionWithDups,1,ParallelBufferedSort,6,1951100,NormalDistributionWithDups,1,ParallelBufferedSort,7,3059100,NormalDistributionWithDups,1,ParallelBufferedSort,8,4531100,NormalDistributionWithDups,1,ParallelBufferedSort,9,6425100,NormalDistributionWithDups,1,ParallelBufferedSort,10,8789100,NormalDistributionWithDups,1,ParallelRadixSort,0,65100,NormalDistributionWithDups,1,ParallelRadixSort,1,85100,NormalDistributionWithDups,1,ParallelRadixSort,2,185100,NormalDistributionWithDups,1,ParallelRadixSort,3,497100,NormalDistributionWithDups,1,ParallelRadixSort,4,1020100,NormalDistributionWithDups,1,ParallelRadixSort,5,1874100,NormalDistributionWithDups,1,ParallelRadixSort,6,3143100,NormalDistributionWithDups,1,ParallelRadixSort,7,4916100,NormalDistributionWithDups,1,ParallelRadixSort,8,7287100,NormalDistributionWithDups,1,ParallelRadixSort,9,10319100,NormalDistributionWithDups,1,ParallelRadixSort,10,14115100,NormalDistributionWithDups,1,StdSort,0,25100,NormalDistributionWithDups,1,StdSort,1,34100,NormalDistributionWithDups,1,StdSort,2,101100,NormalDistributionWithDups,1,StdSort,3,296100,NormalDistributionWithDups,1,StdSort,4,619100,NormalDistributionWithDups,1,StdSort,5,1158100,NormalDistributionWithDups,1,StdSort,6,1947100,NormalDistributionWithDups,1,StdSort,7,3050100,NormalDistributionWithDups,1,StdSort,8,4526100,NormalDistributionWithDups,1,StdSort,9,6418100,NormalDistributionWithDups,1,StdSort,10,8783100,NormalDistributionWithDups,2,ParallelSort,0,23100,NormalDistributionWithDups,2,ParallelSort,1,29100,NormalDistributionWithDups,2,ParallelSort,2,75100,NormalDistributionWithDups,2,ParallelSort,3,215100,NormalDistributionWithDups,2,ParallelSort,4,450100,NormalDistributionWithDups,2,ParallelSort,5,845100,NormalDistributionWithDups,2,ParallelSort,6,1417100,NormalDistributionWithDups,2,ParallelSort,7,2219100,NormalDistributionWithDups,2,ParallelSort,8,3294100,NormalDistributionWithDups,2,ParallelSort,9,4662100,NormalDistributionWithDups,2,ParallelSort,10,6378100,NormalDistributionWithDups,2,ParallelBufferedSort,0,21100,NormalDistributionWithDups,2,ParallelBufferedSort,1,30100,NormalDistributionWithDups,2,ParallelBufferedSort,2,75100,NormalDistributionWithDups,2,ParallelBufferedSort,3,216100,NormalDistributionWithDups,2,ParallelBufferedSort,4,450100,NormalDistributionWithDups,2,ParallelBufferedSort,5,834100,NormalDistributionWithDups,2,ParallelBufferedSort,6,1419100,NormalDistributionWithDups,2,ParallelBufferedSort,7,2221100,NormalDistributionWithDups,2,ParallelBufferedSort,8,3295100,NormalDistributionWithDups,2,ParallelBufferedSort,9,4661100,NormalDistributionWithDups,2,ParallelBufferedSort,10,6378100,NormalDistributionWithDups,2,ParallelRadixSort,0,73100,NormalDistributionWithDups,2,ParallelRadixSort,1,86100,NormalDistributionWithDups,2,ParallelRadixSort,2,161100,NormalDistributionWithDups,2,ParallelRadixSort,3,375100,NormalDistributionWithDups,2,ParallelRadixSort,4,750100,NormalDistributionWithDups,2,ParallelRadixSort,5,1345100,NormalDistributionWithDups,2,ParallelRadixSort,6,2239100,NormalDistributionWithDups,2,ParallelRadixSort,7,3468100,NormalDistributionWithDups,2,ParallelRadixSort,8,5103100,NormalDistributionWithDups,2,ParallelRadixSort,9,7212100,NormalDistributionWithDups,2,ParallelRadixSort,10,9839100,NormalDistributionWithDups,2,StdSort,0,18100,NormalDistributionWithDups,2,StdSort,1,25100,NormalDistributionWithDups,2,StdSort,2,74100,NormalDistributionWithDups,2,StdSort,3,214100,NormalDistributionWithDups,2,StdSort,4,448100,NormalDistributionWithDups,2,StdSort,5,831100,NormalDistributionWithDups,2,StdSort,6,1415100,NormalDistributionWithDups,2,StdSort,7,2215100,NormalDistributionWithDups,2,StdSort,8,3287100,NormalDistributionWithDups,2,StdSort,9,4654100,NormalDistributionWithDups,2,StdSort,10,6372100,NormalDistributionWithDups,3,ParallelSort,0,29100,NormalDistributionWithDups,3,ParallelSort,1,40100,NormalDistributionWithDups,3,ParallelSort,2,111100,NormalDistributionWithDups,3,ParallelSort,3,321100,NormalDistributionWithDups,3,ParallelSort,4,669100,NormalDistributionWithDups,3,ParallelSort,5,1251100,NormalDistributionWithDups,3,ParallelSort,6,2105100,NormalDistributionWithDups,3,ParallelSort,7,3302100,NormalDistributionWithDups,3,ParallelSort,8,4883100,NormalDistributionWithDups,3,ParallelSort,9,6921100,NormalDistributionWithDups,3,ParallelSort,10,9478100,NormalDistributionWithDups,3,ParallelBufferedSort,0,32100,NormalDistributionWithDups,3,ParallelBufferedSort,1,40100,NormalDistributionWithDups,3,ParallelBufferedSort,2,112100,NormalDistributionWithDups,3,ParallelBufferedSort,3,320100,NormalDistributionWithDups,3,ParallelBufferedSort,4,669100,NormalDistributionWithDups,3,ParallelBufferedSort,5,1250100,NormalDistributionWithDups,3,ParallelBufferedSort,6,2102100,NormalDistributionWithDups,3,ParallelBufferedSort,7,3302100,NormalDistributionWithDups,3,ParallelBufferedSort,8,4882100,NormalDistributionWithDups,3,ParallelBufferedSort,9,6926100,NormalDistributionWithDups,3,ParallelBufferedSort,10,9482100,NormalDistributionWithDups,3,ParallelRadixSort,0,116100,NormalDistributionWithDups,3,ParallelRadixSort,1,133100,NormalDistributionWithDups,3,ParallelRadixSort,2,249100,NormalDistributionWithDups,3,ParallelRadixSort,3,559100,NormalDistributionWithDups,3,ParallelRadixSort,4,1086100,NormalDistributionWithDups,3,ParallelRadixSort,5,1969100,NormalDistributionWithDups,3,ParallelRadixSort,6,3273100,NormalDistributionWithDups,3,ParallelRadixSort,7,5080100,NormalDistributionWithDups,3,ParallelRadixSort,8,7470100,NormalDistributionWithDups,3,ParallelRadixSort,9,10572100,NormalDistributionWithDups,3,ParallelRadixSort,10,14409100,NormalDistributionWithDups,3,StdSort,0,53100,NormalDistributionWithDups,3,StdSort,1,38100,NormalDistributionWithDups,3,StdSort,2,110100,NormalDistributionWithDups,3,StdSort,3,319100,NormalDistributionWithDups,3,StdSort,4,666100,NormalDistributionWithDups,3,StdSort,5,1248100,NormalDistributionWithDups,3,StdSort,6,2097100,NormalDistributionWithDups,3,StdSort,7,3297100,NormalDistributionWithDups,3,StdSort,8,4879100,NormalDistributionWithDups,3,StdSort,9,6915100,NormalDistributionWithDups,3,StdSort,10,9472100,NormalDistributionWithDups,4,ParallelSort,0,22100,NormalDistributionWithDups,4,ParallelSort,1,31100,NormalDistributionWithDups,4,ParallelSort,2,80100,NormalDistributionWithDups,4,ParallelSort,3,237100,NormalDistributionWithDups,4,ParallelSort,4,489100,NormalDistributionWithDups,4,ParallelSort,5,904100,NormalDistributionWithDups,4,ParallelSort,6,1535100,NormalDistributionWithDups,4,ParallelSort,7,2400100,NormalDistributionWithDups,4,ParallelSort,8,3562100,NormalDistributionWithDups,4,ParallelSort,9,5047100,NormalDistributionWithDups,4,ParallelSort,10,6901100,NormalDistributionWithDups,4,ParallelBufferedSort,0,24100,NormalDistributionWithDups,4,ParallelBufferedSort,1,32100,NormalDistributionWithDups,4,ParallelBufferedSort,2,82100,NormalDistributionWithDups,4,ParallelBufferedSort,3,236100,NormalDistributionWithDups,4,ParallelBufferedSort,4,489100,NormalDistributionWithDups,4,ParallelBufferedSort,5,904100,NormalDistributionWithDups,4,ParallelBufferedSort,6,1535100,NormalDistributionWithDups,4,ParallelBufferedSort,7,2400100,NormalDistributionWithDups,4,ParallelBufferedSort,8,3561100,NormalDistributionWithDups,4,ParallelBufferedSort,9,5038100,NormalDistributionWithDups,4,ParallelBufferedSort,10,6896100,NormalDistributionWithDups,4,ParallelRadixSort,0,125100,NormalDistributionWithDups,4,ParallelRadixSort,1,141100,NormalDistributionWithDups,4,ParallelRadixSort,2,214100,NormalDistributionWithDups,4,ParallelRadixSort,3,484100,NormalDistributionWithDups,4,ParallelRadixSort,4,868100,NormalDistributionWithDups,4,ParallelRadixSort,5,1522100,NormalDistributionWithDups,4,ParallelRadixSort,6,2521100,NormalDistributionWithDups,4,ParallelRadixSort,7,3882100,NormalDistributionWithDups,4,ParallelRadixSort,8,5705100,NormalDistributionWithDups,4,ParallelRadixSort,9,8053100,NormalDistributionWithDups,4,ParallelRadixSort,10,10990100,NormalDistributionWithDups,4,StdSort,0,19100,NormalDistributionWithDups,4,StdSort,1,26100,NormalDistributionWithDups,4,StdSort,2,80100,NormalDistributionWithDups,4,StdSort,3,232100,NormalDistributionWithDups,4,StdSort,4,484100,NormalDistributionWithDups,4,StdSort,5,899100,NormalDistributionWithDups,4,StdSort,6,1528100,NormalDistributionWithDups,4,StdSort,7,2395100,NormalDistributionWithDups,4,StdSort,8,3557100,NormalDistributionWithDups,4,StdSort,9,5032100,NormalDistributionWithDups,4,StdSort,10,6890100,NormalDistributionWithDups,5,ParallelSort,0,19100,NormalDistributionWithDups,5,ParallelSort,1,26100,NormalDistributionWithDups,5,ParallelSort,2,74100,NormalDistributionWithDups,5,ParallelSort,3,204100,NormalDistributionWithDups,5,ParallelSort,4,424100,NormalDistributionWithDups,5,ParallelSort,5,784100,NormalDistributionWithDups,5,ParallelSort,6,1333100,NormalDistributionWithDups,5,ParallelSort,7,2085100,NormalDistributionWithDups,5,ParallelSort,8,3093100,NormalDistributionWithDups,5,ParallelSort,9,4378100,NormalDistributionWithDups,5,ParallelSort,10,5989100,NormalDistributionWithDups,5,ParallelBufferedSort,0,18100,NormalDistributionWithDups,5,ParallelBufferedSort,1,26100,NormalDistributionWithDups,5,ParallelBufferedSort,2,71100,NormalDistributionWithDups,5,ParallelBufferedSort,3,203100,NormalDistributionWithDups,5,ParallelBufferedSort,4,423100,NormalDistributionWithDups,5,ParallelBufferedSort,5,785100,NormalDistributionWithDups,5,ParallelBufferedSort,6,1334100,NormalDistributionWithDups,5,ParallelBufferedSort,7,2086100,NormalDistributionWithDups,5,ParallelBufferedSort,8,3090100,NormalDistributionWithDups,5,ParallelBufferedSort,9,4375100,NormalDistributionWithDups,5,ParallelBufferedSort,10,5987100,NormalDistributionWithDups,5,ParallelRadixSort,0,119100,NormalDistributionWithDups,5,ParallelRadixSort,1,176100,NormalDistributionWithDups,5,ParallelRadixSort,2,384100,NormalDistributionWithDups,5,ParallelRadixSort,3,472100,NormalDistributionWithDups,5,ParallelRadixSort,4,874100,NormalDistributionWithDups,5,ParallelRadixSort,5,1494100,NormalDistributionWithDups,5,ParallelRadixSort,6,2430100,NormalDistributionWithDups,5,ParallelRadixSort,7,3755100,NormalDistributionWithDups,5,ParallelRadixSort,8,5504100,NormalDistributionWithDups,5,ParallelRadixSort,9,7761100,NormalDistributionWithDups,5,ParallelRadixSort,10,10567100,NormalDistributionWithDups,5,StdSort,0,18100,NormalDistributionWithDups,5,StdSort,1,25100,NormalDistributionWithDups,5,StdSort,2,70100,NormalDistributionWithDups,5,StdSort,3,202100,NormalDistributionWithDups,5,StdSort,4,421100,NormalDistributionWithDups,5,StdSort,5,781100,NormalDistributionWithDups,5,StdSort,6,1328100,NormalDistributionWithDups,5,StdSort,7,2080100,NormalDistributionWithDups,5,StdSort,8,3077100,NormalDistributionWithDups,5,StdSort,9,4369100,NormalDistributionWithDups,5,StdSort,10,5982100,NormalDistributionWithDups,6,ParallelSort,0,38100,NormalDistributionWithDups,6,ParallelSort,1,50100,NormalDistributionWithDups,6,ParallelSort,2,140100,NormalDistributionWithDups,6,ParallelSort,3,410100,NormalDistributionWithDups,6,ParallelSort,4,860100,NormalDistributionWithDups,6,ParallelSort,5,1594100,NormalDistributionWithDups,6,ParallelSort,6,2677100,NormalDistributionWithDups,6,ParallelSort,7,4206100,NormalDistributionWithDups,6,ParallelSort,8,6232100,NormalDistributionWithDups,6,ParallelSort,9,8837100,NormalDistributionWithDups,6,ParallelSort,10,12091100,NormalDistributionWithDups,6,ParallelBufferedSort,0,39100,NormalDistributionWithDups,6,ParallelBufferedSort,1,51100,NormalDistributionWithDups,6,ParallelBufferedSort,2,140100,NormalDistributionWithDups,6,ParallelBufferedSort,3,410100,NormalDistributionWithDups,6,ParallelBufferedSort,4,854100,NormalDistributionWithDups,6,ParallelBufferedSort,5,1594100,NormalDistributionWithDups,6,ParallelBufferedSort,6,2682100,NormalDistributionWithDups,6,ParallelBufferedSort,7,4208100,NormalDistributionWithDups,6,ParallelBufferedSort,8,6233100,NormalDistributionWithDups,6,ParallelBufferedSort,9,8833100,NormalDistributionWithDups,6,ParallelBufferedSort,10,12093100,NormalDistributionWithDups,6,ParallelRadixSort,0,178100,NormalDistributionWithDups,6,ParallelRadixSort,1,392100,NormalDistributionWithDups,6,ParallelRadixSort,2,573100,NormalDistributionWithDups,6,ParallelRadixSort,3,734100,NormalDistributionWithDups,6,ParallelRadixSort,4,1451100,NormalDistributionWithDups,6,ParallelRadixSort,5,2502100,NormalDistributionWithDups,6,ParallelRadixSort,6,4154100,NormalDistributionWithDups,6,ParallelRadixSort,7,6445100,NormalDistributionWithDups,6,ParallelRadixSort,8,9502100,NormalDistributionWithDups,6,ParallelRadixSort,9,13405100,NormalDistributionWithDups,6,ParallelRadixSort,10,18278100,NormalDistributionWithDups,6,StdSort,0,35100,NormalDistributionWithDups,6,StdSort,1,48100,NormalDistributionWithDups,6,StdSort,2,139100,NormalDistributionWithDups,6,StdSort,3,407100,NormalDistributionWithDups,6,StdSort,4,851100,NormalDistributionWithDups,6,StdSort,5,1589100,NormalDistributionWithDups,6,StdSort,6,2673100,NormalDistributionWithDups,6,StdSort,7,4201100,NormalDistributionWithDups,6,StdSort,8,6240100,NormalDistributionWithDups,6,StdSort,9,8828100,NormalDistributionWithDups,6,StdSort,10,12086100,NormalDistributionWithDups,7,ParallelSort,0,25100,NormalDistributionWithDups,7,ParallelSort,1,33100,NormalDistributionWithDups,7,ParallelSort,2,95100,NormalDistributionWithDups,7,ParallelSort,3,276100,NormalDistributionWithDups,7,ParallelSort,4,575100,NormalDistributionWithDups,7,ParallelSort,5,1070100,NormalDistributionWithDups,7,ParallelSort,6,1813100,NormalDistributionWithDups,7,ParallelSort,7,2838100,NormalDistributionWithDups,7,ParallelSort,8,4200100,NormalDistributionWithDups,7,ParallelSort,9,5954100,NormalDistributionWithDups,7,ParallelSort,10,8145100,NormalDistributionWithDups,7,ParallelBufferedSort,0,25100,NormalDistributionWithDups,7,ParallelBufferedSort,1,35100,NormalDistributionWithDups,7,ParallelBufferedSort,2,94100,NormalDistributionWithDups,7,ParallelBufferedSort,3,276100,NormalDistributionWithDups,7,ParallelBufferedSort,4,575100,NormalDistributionWithDups,7,ParallelBufferedSort,5,1077100,NormalDistributionWithDups,7,ParallelBufferedSort,6,1808100,NormalDistributionWithDups,7,ParallelBufferedSort,7,2840100,NormalDistributionWithDups,7,ParallelBufferedSort,8,4200100,NormalDistributionWithDups,7,ParallelBufferedSort,9,5954100,NormalDistributionWithDups,7,ParallelBufferedSort,10,8157100,NormalDistributionWithDups,7,ParallelRadixSort,0,843100,NormalDistributionWithDups,7,ParallelRadixSort,1,1225100,NormalDistributionWithDups,7,ParallelRadixSort,2,1342100,NormalDistributionWithDups,7,ParallelRadixSort,3,581100,NormalDistributionWithDups,7,ParallelRadixSort,4,1321100,NormalDistributionWithDups,7,ParallelRadixSort,5,1941100,NormalDistributionWithDups,7,ParallelRadixSort,6,2943100,NormalDistributionWithDups,7,ParallelRadixSort,7,4552100,NormalDistributionWithDups,7,ParallelRadixSort,8,6685100,NormalDistributionWithDups,7,ParallelRadixSort,9,9405100,NormalDistributionWithDups,7,ParallelRadixSort,10,12820100,NormalDistributionWithDups,7,StdSort,0,23100,NormalDistributionWithDups,7,StdSort,1,32100,NormalDistributionWithDups,7,StdSort,2,93100,NormalDistributionWithDups,7,StdSort,3,274100,NormalDistributionWithDups,7,StdSort,4,573100,NormalDistributionWithDups,7,StdSort,5,1062100,NormalDistributionWithDups,7,StdSort,6,1804100,NormalDistributionWithDups,7,StdSort,7,2826100,NormalDistributionWithDups,7,StdSort,8,4195100,NormalDistributionWithDups,7,StdSort,9,5950100,NormalDistributionWithDups,7,StdSort,10,8140100,NormalDistributionWithDups,8,ParallelSort,0,33100,NormalDistributionWithDups,8,ParallelSort,1,46100,NormalDistributionWithDups,8,ParallelSort,2,126100,NormalDistributionWithDups,8,ParallelSort,3,362100,NormalDistributionWithDups,8,ParallelSort,4,752100,NormalDistributionWithDups,8,ParallelSort,5,1403100,NormalDistributionWithDups,8,ParallelSort,6,2357100,NormalDistributionWithDups,8,ParallelSort,7,3703100,NormalDistributionWithDups,8,ParallelSort,8,5488100,NormalDistributionWithDups,8,ParallelSort,9,7775100,NormalDistributionWithDups,8,ParallelSort,10,10631100,NormalDistributionWithDups,8,ParallelBufferedSort,0,33100,NormalDistributionWithDups,8,ParallelBufferedSort,1,44100,NormalDistributionWithDups,8,ParallelBufferedSort,2,125100,NormalDistributionWithDups,8,ParallelBufferedSort,3,361100,NormalDistributionWithDups,8,ParallelBufferedSort,4,755100,NormalDistributionWithDups,8,ParallelBufferedSort,5,1404100,NormalDistributionWithDups,8,ParallelBufferedSort,6,2359100,NormalDistributionWithDups,8,ParallelBufferedSort,7,3705100,NormalDistributionWithDups,8,ParallelBufferedSort,8,5486100,NormalDistributionWithDups,8,ParallelBufferedSort,9,7776100,NormalDistributionWithDups,8,ParallelBufferedSort,10,10629100,NormalDistributionWithDups,8,ParallelRadixSort,0,1347100,NormalDistributionWithDups,8,ParallelRadixSort,1,1328100,NormalDistributionWithDups,8,ParallelRadixSort,2,1048100,NormalDistributionWithDups,8,ParallelRadixSort,3,1642100,NormalDistributionWithDups,8,ParallelRadixSort,4,1748100,NormalDistributionWithDups,8,ParallelRadixSort,5,2382100,NormalDistributionWithDups,8,ParallelRadixSort,6,4036100,NormalDistributionWithDups,8,ParallelRadixSort,7,5995100,NormalDistributionWithDups,8,ParallelRadixSort,8,8824100,NormalDistributionWithDups,8,ParallelRadixSort,9,12437100,NormalDistributionWithDups,8,ParallelRadixSort,10,16967100,NormalDistributionWithDups,8,StdSort,0,32100,NormalDistributionWithDups,8,StdSort,1,43100,NormalDistributionWithDups,8,StdSort,2,124100,NormalDistributionWithDups,8,StdSort,3,360100,NormalDistributionWithDups,8,StdSort,4,749100,NormalDistributionWithDups,8,StdSort,5,1399100,NormalDistributionWithDups,8,StdSort,6,2353100,NormalDistributionWithDups,8,StdSort,7,3698100,NormalDistributionWithDups,8,StdSort,8,5482100,NormalDistributionWithDups,8,StdSort,9,7768100,NormalDistributionWithDups,8,StdSort,10,10623100,SawTooth,1,ParallelSort,0,10100,SawTooth,1,ParallelSort,1,13100,SawTooth,1,ParallelSort,2,39100,SawTooth,1,ParallelSort,3,107100,SawTooth,1,ParallelSort,4,222100,SawTooth,1,ParallelSort,5,409100,SawTooth,1,ParallelSort,6,690100,SawTooth,1,ParallelSort,7,1090100,SawTooth,1,ParallelSort,8,1613100,SawTooth,1,ParallelSort,9,2280100,SawTooth,1,ParallelSort,10,3124100,SawTooth,1,ParallelBufferedSort,0,10100,SawTooth,1,ParallelBufferedSort,1,14100,SawTooth,1,ParallelBufferedSort,2,40100,SawTooth,1,ParallelBufferedSort,3,106100,SawTooth,1,ParallelBufferedSort,4,221100,SawTooth,1,ParallelBufferedSort,5,410100,SawTooth,1,ParallelBufferedSort,6,689100,SawTooth,1,ParallelBufferedSort,7,1092100,SawTooth,1,ParallelBufferedSort,8,1614100,SawTooth,1,ParallelBufferedSort,9,2287100,SawTooth,1,ParallelBufferedSort,10,3122100,SawTooth,1,ParallelRadixSort,0,49100,SawTooth,1,ParallelRadixSort,1,64100,SawTooth,1,ParallelRadixSort,2,134100,SawTooth,1,ParallelRadixSort,3,350100,SawTooth,1,ParallelRadixSort,4,708100,SawTooth,1,ParallelRadixSort,5,1305100,SawTooth,1,ParallelRadixSort,6,2188100,SawTooth,1,ParallelRadixSort,7,3423100,SawTooth,1,ParallelRadixSort,8,5060100,SawTooth,1,ParallelRadixSort,9,7158100,SawTooth,1,ParallelRadixSort,10,9786100,SawTooth,1,StdSort,0,9100,SawTooth,1,StdSort,1,12100,SawTooth,1,StdSort,2,36100,SawTooth,1,StdSort,3,105100,SawTooth,1,StdSort,4,219100,SawTooth,1,StdSort,5,406100,SawTooth,1,StdSort,6,686100,SawTooth,1,StdSort,7,1089100,SawTooth,1,StdSort,8,1608100,SawTooth,1,StdSort,9,2275100,SawTooth,1,StdSort,10,3111100,SawTooth,2,ParallelSort,0,12100,SawTooth,2,ParallelSort,1,13100,SawTooth,2,ParallelSort,2,41100,SawTooth,2,ParallelSort,3,107100,SawTooth,2,ParallelSort,4,222100,SawTooth,2,ParallelSort,5,409100,SawTooth,2,ParallelSort,6,689100,SawTooth,2,ParallelSort,7,1089100,SawTooth,2,ParallelSort,8,1613100,SawTooth,2,ParallelSort,9,2283100,SawTooth,2,ParallelSort,10,3123100,SawTooth,2,ParallelBufferedSort,0,10100,SawTooth,2,ParallelBufferedSort,1,13100,SawTooth,2,ParallelBufferedSort,2,40100,SawTooth,2,ParallelBufferedSort,3,107100,SawTooth,2,ParallelBufferedSort,4,222100,SawTooth,2,ParallelBufferedSort,5,409100,SawTooth,2,ParallelBufferedSort,6,690100,SawTooth,2,ParallelBufferedSort,7,1089100,SawTooth,2,ParallelBufferedSort,8,1614100,SawTooth,2,ParallelBufferedSort,9,2282100,SawTooth,2,ParallelBufferedSort,10,3118100,SawTooth,2,ParallelRadixSort,0,70100,SawTooth,2,ParallelRadixSort,1,106100,SawTooth,2,ParallelRadixSort,2,159100,SawTooth,2,ParallelRadixSort,3,365100,SawTooth,2,ParallelRadixSort,4,729100,SawTooth,2,ParallelRadixSort,5,1318100,SawTooth,2,ParallelRadixSort,6,2173100,SawTooth,2,ParallelRadixSort,7,3371100,SawTooth,2,ParallelRadixSort,8,4966100,SawTooth,2,ParallelRadixSort,9,7013100,SawTooth,2,ParallelRadixSort,10,9558100,SawTooth,2,StdSort,0,9100,SawTooth,2,StdSort,1,12100,SawTooth,2,StdSort,2,37100,SawTooth,2,StdSort,3,105100,SawTooth,2,StdSort,4,219100,SawTooth,2,StdSort,5,407100,SawTooth,2,StdSort,6,686100,SawTooth,2,StdSort,7,1089100,SawTooth,2,StdSort,8,1608100,SawTooth,2,StdSort,9,2275100,SawTooth,2,StdSort,10,3109100,SawTooth,3,ParallelSort,0,10100,SawTooth,3,ParallelSort,1,14100,SawTooth,3,ParallelSort,2,38100,SawTooth,3,ParallelSort,3,107100,SawTooth,3,ParallelSort,4,222100,SawTooth,3,ParallelSort,5,409100,SawTooth,3,ParallelSort,6,688100,SawTooth,3,ParallelSort,7,1096100,SawTooth,3,ParallelSort,8,1613100,SawTooth,3,ParallelSort,9,2286100,SawTooth,3,ParallelSort,10,3126100,SawTooth,3,ParallelBufferedSort,0,10100,SawTooth,3,ParallelBufferedSort,1,13100,SawTooth,3,ParallelBufferedSort,2,39100,SawTooth,3,ParallelBufferedSort,3,107100,SawTooth,3,ParallelBufferedSort,4,221100,SawTooth,3,ParallelBufferedSort,5,409100,SawTooth,3,ParallelBufferedSort,6,689100,SawTooth,3,ParallelBufferedSort,7,1091100,SawTooth,3,ParallelBufferedSort,8,1613100,SawTooth,3,ParallelBufferedSort,9,2287100,SawTooth,3,ParallelBufferedSort,10,3127100,SawTooth,3,ParallelRadixSort,0,90100,SawTooth,3,ParallelRadixSort,1,116100,SawTooth,3,ParallelRadixSort,2,190100,SawTooth,3,ParallelRadixSort,3,397100,SawTooth,3,ParallelRadixSort,4,753100,SawTooth,3,ParallelRadixSort,5,1320100,SawTooth,3,ParallelRadixSort,6,2180100,SawTooth,3,ParallelRadixSort,7,3360100,SawTooth,3,ParallelRadixSort,8,4936100,SawTooth,3,ParallelRadixSort,9,6954100,SawTooth,3,ParallelRadixSort,10,9484100,SawTooth,3,StdSort,0,9100,SawTooth,3,StdSort,1,12100,SawTooth,3,StdSort,2,37100,SawTooth,3,StdSort,3,105100,SawTooth,3,StdSort,4,219100,SawTooth,3,StdSort,5,406100,SawTooth,3,StdSort,6,686100,SawTooth,3,StdSort,7,1077100,SawTooth,3,StdSort,8,1608100,SawTooth,3,StdSort,9,2275100,SawTooth,3,StdSort,10,3109100,SawTooth,4,ParallelSort,0,10100,SawTooth,4,ParallelSort,1,16100,SawTooth,4,ParallelSort,2,42100,SawTooth,4,ParallelSort,3,106100,SawTooth,4,ParallelSort,4,221100,SawTooth,4,ParallelSort,5,409100,SawTooth,4,ParallelSort,6,689100,SawTooth,4,ParallelSort,7,1092100,SawTooth,4,ParallelSort,8,1615100,SawTooth,4,ParallelSort,9,2282100,SawTooth,4,ParallelSort,10,3125100,SawTooth,4,ParallelBufferedSort,0,10100,SawTooth,4,ParallelBufferedSort,1,14100,SawTooth,4,ParallelBufferedSort,2,42100,SawTooth,4,ParallelBufferedSort,3,107100,SawTooth,4,ParallelBufferedSort,4,222100,SawTooth,4,ParallelBufferedSort,5,409100,SawTooth,4,ParallelBufferedSort,6,690100,SawTooth,4,ParallelBufferedSort,7,1089100,SawTooth,4,ParallelBufferedSort,8,1616100,SawTooth,4,ParallelBufferedSort,9,2281100,SawTooth,4,ParallelBufferedSort,10,3124100,SawTooth,4,ParallelRadixSort,0,98100,SawTooth,4,ParallelRadixSort,1,135100,SawTooth,4,ParallelRadixSort,2,189100,SawTooth,4,ParallelRadixSort,3,421100,SawTooth,4,ParallelRadixSort,4,755100,SawTooth,4,ParallelRadixSort,5,1344100,SawTooth,4,ParallelRadixSort,6,2170100,SawTooth,4,ParallelRadixSort,7,3363100,SawTooth,4,ParallelRadixSort,8,4922100,SawTooth,4,ParallelRadixSort,9,6945100,SawTooth,4,ParallelRadixSort,10,9476100,SawTooth,4,StdSort,0,9100,SawTooth,4,StdSort,1,12100,SawTooth,4,StdSort,2,37100,SawTooth,4,StdSort,3,105100,SawTooth,4,StdSort,4,219100,SawTooth,4,StdSort,5,407100,SawTooth,4,StdSort,6,686100,SawTooth,4,StdSort,7,1089100,SawTooth,4,StdSort,8,1608100,SawTooth,4,StdSort,9,2275100,SawTooth,4,StdSort,10,3119100,SawTooth,5,ParallelSort,0,10100,SawTooth,5,ParallelSort,1,13100,SawTooth,5,ParallelSort,2,38100,SawTooth,5,ParallelSort,3,107100,SawTooth,5,ParallelSort,4,221100,SawTooth,5,ParallelSort,5,409100,SawTooth,5,ParallelSort,6,689100,SawTooth,5,ParallelSort,7,1092100,SawTooth,5,ParallelSort,8,1614100,SawTooth,5,ParallelSort,9,2285100,SawTooth,5,ParallelSort,10,3126100,SawTooth,5,ParallelBufferedSort,0,10100,SawTooth,5,ParallelBufferedSort,1,14100,SawTooth,5,ParallelBufferedSort,2,38100,SawTooth,5,ParallelBufferedSort,3,107100,SawTooth,5,ParallelBufferedSort,4,222100,SawTooth,5,ParallelBufferedSort,5,409100,SawTooth,5,ParallelBufferedSort,6,690100,SawTooth,5,ParallelBufferedSort,7,1095100,SawTooth,5,ParallelBufferedSort,8,1612100,SawTooth,5,ParallelBufferedSort,9,2283100,SawTooth,5,ParallelBufferedSort,10,3125100,SawTooth,5,ParallelRadixSort,0,115100,SawTooth,5,ParallelRadixSort,1,154100,SawTooth,5,ParallelRadixSort,2,574100,SawTooth,5,ParallelRadixSort,3,428100,SawTooth,5,ParallelRadixSort,4,775100,SawTooth,5,ParallelRadixSort,5,1346100,SawTooth,5,ParallelRadixSort,6,2180100,SawTooth,5,ParallelRadixSort,7,3361100,SawTooth,5,ParallelRadixSort,8,4932100,SawTooth,5,ParallelRadixSort,9,6934100,SawTooth,5,ParallelRadixSort,10,9430100,SawTooth,5,StdSort,0,9100,SawTooth,5,StdSort,1,12100,SawTooth,5,StdSort,2,36100,SawTooth,5,StdSort,3,105100,SawTooth,5,StdSort,4,219100,SawTooth,5,StdSort,5,407100,SawTooth,5,StdSort,6,686100,SawTooth,5,StdSort,7,1089100,SawTooth,5,StdSort,8,1608100,SawTooth,5,StdSort,9,2275100,SawTooth,5,StdSort,10,3109100,SawTooth,6,ParallelSort,0,10100,SawTooth,6,ParallelSort,1,13100,SawTooth,6,ParallelSort,2,38100,SawTooth,6,ParallelSort,3,106100,SawTooth,6,ParallelSort,4,222100,SawTooth,6,ParallelSort,5,409100,SawTooth,6,ParallelSort,6,700100,SawTooth,6,ParallelSort,7,1093100,SawTooth,6,ParallelSort,8,1614100,SawTooth,6,ParallelSort,9,2282100,SawTooth,6,ParallelSort,10,3123100,SawTooth,6,ParallelBufferedSort,0,10100,SawTooth,6,ParallelBufferedSort,1,13100,SawTooth,6,ParallelBufferedSort,2,38100,SawTooth,6,ParallelBufferedSort,3,106100,SawTooth,6,ParallelBufferedSort,4,221100,SawTooth,6,ParallelBufferedSort,5,408100,SawTooth,6,ParallelBufferedSort,6,689100,SawTooth,6,ParallelBufferedSort,7,1092100,SawTooth,6,ParallelBufferedSort,8,1619100,SawTooth,6,ParallelBufferedSort,9,2282100,SawTooth,6,ParallelBufferedSort,10,3121100,SawTooth,6,ParallelRadixSort,0,137100,SawTooth,6,ParallelRadixSort,1,723100,SawTooth,6,ParallelRadixSort,2,686100,SawTooth,6,ParallelRadixSort,3,432100,SawTooth,6,ParallelRadixSort,4,768100,SawTooth,6,ParallelRadixSort,5,1385100,SawTooth,6,ParallelRadixSort,6,2191100,SawTooth,6,ParallelRadixSort,7,3368100,SawTooth,6,ParallelRadixSort,8,4938100,SawTooth,6,ParallelRadixSort,9,6932100,SawTooth,6,ParallelRadixSort,10,9440100,SawTooth,6,StdSort,0,9100,SawTooth,6,StdSort,1,12100,SawTooth,6,StdSort,2,36100,SawTooth,6,StdSort,3,105100,SawTooth,6,StdSort,4,219100,SawTooth,6,StdSort,5,407100,SawTooth,6,StdSort,6,686100,SawTooth,6,StdSort,7,1088100,SawTooth,6,StdSort,8,1608100,SawTooth,6,StdSort,9,2275100,SawTooth,6,StdSort,10,3109100,SawTooth,7,ParallelSort,0,9100,SawTooth,7,ParallelSort,1,13100,SawTooth,7,ParallelSort,2,38100,SawTooth,7,ParallelSort,3,106100,SawTooth,7,ParallelSort,4,221100,SawTooth,7,ParallelSort,5,408100,SawTooth,7,ParallelSort,6,689100,SawTooth,7,ParallelSort,7,1088100,SawTooth,7,ParallelSort,8,1613100,SawTooth,7,ParallelSort,9,2290100,SawTooth,7,ParallelSort,10,3129100,SawTooth,7,ParallelBufferedSort,0,10100,SawTooth,7,ParallelBufferedSort,1,15100,SawTooth,7,ParallelBufferedSort,2,38100,SawTooth,7,ParallelBufferedSort,3,107100,SawTooth,7,ParallelBufferedSort,4,221100,SawTooth,7,ParallelBufferedSort,5,409100,SawTooth,7,ParallelBufferedSort,6,696100,SawTooth,7,ParallelBufferedSort,7,1089100,SawTooth,7,ParallelBufferedSort,8,1619100,SawTooth,7,ParallelBufferedSort,9,2284100,SawTooth,7,ParallelBufferedSort,10,3117100,SawTooth,7,ParallelRadixSort,0,911100,SawTooth,7,ParallelRadixSort,1,878100,SawTooth,7,ParallelRadixSort,2,987100,SawTooth,7,ParallelRadixSort,3,1108100,SawTooth,7,ParallelRadixSort,4,828100,SawTooth,7,ParallelRadixSort,5,1390100,SawTooth,7,ParallelRadixSort,6,2394100,SawTooth,7,ParallelRadixSort,7,3371100,SawTooth,7,ParallelRadixSort,8,4944100,SawTooth,7,ParallelRadixSort,9,6933100,SawTooth,7,ParallelRadixSort,10,9439100,SawTooth,7,StdSort,0,9100,SawTooth,7,StdSort,1,12100,SawTooth,7,StdSort,2,36100,SawTooth,7,StdSort,3,105100,SawTooth,7,StdSort,4,219100,SawTooth,7,StdSort,5,407100,SawTooth,7,StdSort,6,686100,SawTooth,7,StdSort,7,1077100,SawTooth,7,StdSort,8,1608100,SawTooth,7,StdSort,9,2275100,SawTooth,7,StdSort,10,3109100,SawTooth,8,ParallelSort,0,10100,SawTooth,8,ParallelSort,1,13100,SawTooth,8,ParallelSort,2,38100,SawTooth,8,ParallelSort,3,107100,SawTooth,8,ParallelSort,4,221100,SawTooth,8,ParallelSort,5,409100,SawTooth,8,ParallelSort,6,689100,SawTooth,8,ParallelSort,7,1092100,SawTooth,8,ParallelSort,8,1615100,SawTooth,8,ParallelSort,9,2288100,SawTooth,8,ParallelSort,10,3125100,SawTooth,8,ParallelBufferedSort,0,10100,SawTooth,8,ParallelBufferedSort,1,13100,SawTooth,8,ParallelBufferedSort,2,38100,SawTooth,8,ParallelBufferedSort,3,107100,SawTooth,8,ParallelBufferedSort,4,221100,SawTooth,8,ParallelBufferedSort,5,409100,SawTooth,8,ParallelBufferedSort,6,690100,SawTooth,8,ParallelBufferedSort,7,1088100,SawTooth,8,ParallelBufferedSort,8,1616100,SawTooth,8,ParallelBufferedSort,9,2282100,SawTooth,8,ParallelBufferedSort,10,3128100,SawTooth,8,ParallelRadixSort,0,1331100,SawTooth,8,ParallelRadixSort,1,1394100,SawTooth,8,ParallelRadixSort,2,1425100,SawTooth,8,ParallelRadixSort,3,1190100,SawTooth,8,ParallelRadixSort,4,2062100,SawTooth,8,ParallelRadixSort,5,1416100,SawTooth,8,ParallelRadixSort,6,2237100,SawTooth,8,ParallelRadixSort,7,3432100,SawTooth,8,ParallelRadixSort,8,4932100,SawTooth,8,ParallelRadixSort,9,6940100,SawTooth,8,ParallelRadixSort,10,9441100,SawTooth,8,StdSort,0,9100,SawTooth,8,StdSort,1,12100,SawTooth,8,StdSort,2,36100,SawTooth,8,StdSort,3,105100,SawTooth,8,StdSort,4,219100,SawTooth,8,StdSort,5,406100,SawTooth,8,StdSort,6,686100,SawTooth,8,StdSort,7,1077100,SawTooth,8,StdSort,8,1608100,SawTooth,8,StdSort,9,2275100,SawTooth,8,StdSort,10,31091000,Random,1,ParallelSort,0,2681000,Random,1,ParallelSort,1,3591000,Random,1,ParallelSort,2,10171000,Random,1,ParallelSort,3,29551000,Random,1,ParallelSort,4,61641000,Random,1,ParallelSort,5,113851000,Random,1,ParallelSort,6,192011000,Random,1,ParallelSort,7,301531000,Random,1,ParallelSort,8,446791000,Random,1,ParallelSort,9,633881000,Random,1,ParallelSort,10,866841000,Random,1,ParallelBufferedSort,0,2551000,Random,1,ParallelBufferedSort,1,3621000,Random,1,ParallelBufferedSort,2,10301000,Random,1,ParallelBufferedSort,3,29711000,Random,1,ParallelBufferedSort,4,61481000,Random,1,ParallelBufferedSort,5,113771000,Random,1,ParallelBufferedSort,6,191981000,Random,1,ParallelBufferedSort,7,301641000,Random,1,ParallelBufferedSort,8,446981000,Random,1,ParallelBufferedSort,9,633881000,Random,1,ParallelBufferedSort,10,866911000,Random,1,ParallelRadixSort,0,3171000,Random,1,ParallelRadixSort,1,4791000,Random,1,ParallelRadixSort,2,11871000,Random,1,ParallelRadixSort,3,33361000,Random,1,ParallelRadixSort,4,69091000,Random,1,ParallelRadixSort,5,128211000,Random,1,ParallelRadixSort,6,216521000,Random,1,ParallelRadixSort,7,339691000,Random,1,ParallelRadixSort,8,503371000,Random,1,ParallelRadixSort,9,713511000,Random,1,ParallelRadixSort,10,976641000,Random,1,StdSort,0,2581000,Random,1,StdSort,1,3601000,Random,1,StdSort,2,10251000,Random,1,StdSort,3,29321000,Random,1,StdSort,4,61351000,Random,1,StdSort,5,113701000,Random,1,StdSort,6,191991000,Random,1,StdSort,7,301531000,Random,1,StdSort,8,446881000,Random,1,StdSort,9,633581000,Random,1,StdSort,10,866911000,Random,2,ParallelSort,0,2541000,Random,2,ParallelSort,1,3611000,Random,2,ParallelSort,2,10261000,Random,2,ParallelSort,3,29451000,Random,2,ParallelSort,4,61701000,Random,2,ParallelSort,5,113911000,Random,2,ParallelSort,6,192331000,Random,2,ParallelSort,7,301931000,Random,2,ParallelSort,8,447471000,Random,2,ParallelSort,9,634581000,Random,2,ParallelSort,10,868221000,Random,2,ParallelBufferedSort,0,2731000,Random,2,ParallelBufferedSort,1,3611000,Random,2,ParallelBufferedSort,2,10241000,Random,2,ParallelBufferedSort,3,29391000,Random,2,ParallelBufferedSort,4,61541000,Random,2,ParallelBufferedSort,5,114141000,Random,2,ParallelBufferedSort,6,192301000,Random,2,ParallelBufferedSort,7,301861000,Random,2,ParallelBufferedSort,8,447641000,Random,2,ParallelBufferedSort,9,634441000,Random,2,ParallelBufferedSort,10,868091000,Random,2,ParallelRadixSort,0,3351000,Random,2,ParallelRadixSort,1,6041000,Random,2,ParallelRadixSort,2,12071000,Random,2,ParallelRadixSort,3,33081000,Random,2,ParallelRadixSort,4,68031000,Random,2,ParallelRadixSort,5,125171000,Random,2,ParallelRadixSort,6,210811000,Random,2,ParallelRadixSort,7,330451000,Random,2,ParallelRadixSort,8,489441000,Random,2,ParallelRadixSort,9,693751000,Random,2,ParallelRadixSort,10,948781000,Random,2,StdSort,0,4931000,Random,2,StdSort,1,3601000,Random,2,StdSort,2,10261000,Random,2,StdSort,3,29331000,Random,2,StdSort,4,61461000,Random,2,StdSort,5,113911000,Random,2,StdSort,6,192271000,Random,2,StdSort,7,301851000,Random,2,StdSort,8,447441000,Random,2,StdSort,9,634381000,Random,2,StdSort,10,868071000,Random,3,ParallelSort,0,2711000,Random,3,ParallelSort,1,3781000,Random,3,ParallelSort,2,10371000,Random,3,ParallelSort,3,29761000,Random,3,ParallelSort,4,61991000,Random,3,ParallelSort,5,114871000,Random,3,ParallelSort,6,194071000,Random,3,ParallelSort,7,304481000,Random,3,ParallelSort,8,451331000,Random,3,ParallelSort,9,639931000,Random,3,ParallelSort,10,875421000,Random,3,ParallelBufferedSort,0,2601000,Random,3,ParallelBufferedSort,1,3671000,Random,3,ParallelBufferedSort,2,10381000,Random,3,ParallelBufferedSort,3,29701000,Random,3,ParallelBufferedSort,4,61981000,Random,3,ParallelBufferedSort,5,114861000,Random,3,ParallelBufferedSort,6,193961000,Random,3,ParallelBufferedSort,7,304461000,Random,3,ParallelBufferedSort,8,451301000,Random,3,ParallelBufferedSort,9,639701000,Random,3,ParallelBufferedSort,10,875421000,Random,3,ParallelRadixSort,0,3631000,Random,3,ParallelRadixSort,1,5321000,Random,3,ParallelRadixSort,2,12111000,Random,3,ParallelRadixSort,3,32931000,Random,3,ParallelRadixSort,4,67391000,Random,3,ParallelRadixSort,5,124231000,Random,3,ParallelRadixSort,6,209101000,Random,3,ParallelRadixSort,7,327451000,Random,3,ParallelRadixSort,8,485011000,Random,3,ParallelRadixSort,9,687491000,Random,3,ParallelRadixSort,10,939741000,Random,3,StdSort,0,2631000,Random,3,StdSort,1,3671000,Random,3,StdSort,2,10261000,Random,3,StdSort,3,29581000,Random,3,StdSort,4,61981000,Random,3,StdSort,5,114861000,Random,3,StdSort,6,193881000,Random,3,StdSort,7,304371000,Random,3,StdSort,8,451281000,Random,3,StdSort,9,639651000,Random,3,StdSort,10,875381000,Random,4,ParallelSort,0,2501000,Random,4,ParallelSort,1,3541000,Random,4,ParallelSort,2,10131000,Random,4,ParallelSort,3,29001000,Random,4,ParallelSort,4,60571000,Random,4,ParallelSort,5,112201000,Random,4,ParallelSort,6,189121000,Random,4,ParallelSort,7,296901000,Random,4,ParallelSort,8,440091000,Random,4,ParallelSort,9,623991000,Random,4,ParallelSort,10,853941000,Random,4,ParallelBufferedSort,0,2721000,Random,4,ParallelBufferedSort,1,3671000,Random,4,ParallelBufferedSort,2,10111000,Random,4,ParallelBufferedSort,3,28991000,Random,4,ParallelBufferedSort,4,60601000,Random,4,ParallelBufferedSort,5,112251000,Random,4,ParallelBufferedSort,6,189491000,Random,4,ParallelBufferedSort,7,296911000,Random,4,ParallelBufferedSort,8,440161000,Random,4,ParallelBufferedSort,9,624321000,Random,4,ParallelBufferedSort,10,854011000,Random,4,ParallelRadixSort,0,3991000,Random,4,ParallelRadixSort,1,5801000,Random,4,ParallelRadixSort,2,12431000,Random,4,ParallelRadixSort,3,32911000,Random,4,ParallelRadixSort,4,67211000,Random,4,ParallelRadixSort,5,123861000,Random,4,ParallelRadixSort,6,208271000,Random,4,ParallelRadixSort,7,326171000,Random,4,ParallelRadixSort,8,483011000,Random,4,ParallelRadixSort,9,684381000,Random,4,ParallelRadixSort,10,935681000,Random,4,StdSort,0,2511000,Random,4,StdSort,1,3521000,Random,4,StdSort,2,9971000,Random,4,StdSort,3,28901000,Random,4,StdSort,4,60461000,Random,4,StdSort,5,112031000,Random,4,StdSort,6,189091000,Random,4,StdSort,7,296851000,Random,4,StdSort,8,440051000,Random,4,StdSort,9,623961000,Random,4,StdSort,10,853751000,Random,5,ParallelSort,0,2641000,Random,5,ParallelSort,1,3711000,Random,5,ParallelSort,2,10221000,Random,5,ParallelSort,3,29091000,Random,5,ParallelSort,4,60901000,Random,5,ParallelSort,5,112831000,Random,5,ParallelSort,6,190551000,Random,5,ParallelSort,7,298821000,Random,5,ParallelSort,8,442641000,Random,5,ParallelSort,9,627491000,Random,5,ParallelSort,10,858551000,Random,5,ParallelBufferedSort,0,2611000,Random,5,ParallelBufferedSort,1,3741000,Random,5,ParallelBufferedSort,2,10161000,Random,5,ParallelBufferedSort,3,29191000,Random,5,ParallelBufferedSort,4,60801000,Random,5,ParallelBufferedSort,5,112891000,Random,5,ParallelBufferedSort,6,190291000,Random,5,ParallelBufferedSort,7,298611000,Random,5,ParallelBufferedSort,8,442591000,Random,5,ParallelBufferedSort,9,627341000,Random,5,ParallelBufferedSort,10,858691000,Random,5,ParallelRadixSort,0,4021000,Random,5,ParallelRadixSort,1,5601000,Random,5,ParallelRadixSort,2,12411000,Random,5,ParallelRadixSort,3,32801000,Random,5,ParallelRadixSort,4,66991000,Random,5,ParallelRadixSort,5,123711000,Random,5,ParallelRadixSort,6,207891000,Random,5,ParallelRadixSort,7,325191000,Random,5,ParallelRadixSort,8,481701000,Random,5,ParallelRadixSort,9,682311000,Random,5,ParallelRadixSort,10,933421000,Random,5,StdSort,0,2571000,Random,5,StdSort,1,3591000,Random,5,StdSort,2,10191000,Random,5,StdSort,3,29021000,Random,5,StdSort,4,60791000,Random,5,StdSort,5,112671000,Random,5,StdSort,6,190181000,Random,5,StdSort,7,298541000,Random,5,StdSort,8,442521000,Random,5,StdSort,9,627401000,Random,5,StdSort,10,858511000,Random,6,ParallelSort,0,2721000,Random,6,ParallelSort,1,3711000,Random,6,ParallelSort,2,10261000,Random,6,ParallelSort,3,29861000,Random,6,ParallelSort,4,61931000,Random,6,ParallelSort,5,114661000,Random,6,ParallelSort,6,193451000,Random,6,ParallelSort,7,303651000,Random,6,ParallelSort,8,450241000,Random,6,ParallelSort,9,638301000,Random,6,ParallelSort,10,873451000,Random,6,ParallelBufferedSort,0,2671000,Random,6,ParallelBufferedSort,1,3731000,Random,6,ParallelBufferedSort,2,10261000,Random,6,ParallelBufferedSort,3,29651000,Random,6,ParallelBufferedSort,4,61831000,Random,6,ParallelBufferedSort,5,114781000,Random,6,ParallelBufferedSort,6,193431000,Random,6,ParallelBufferedSort,7,303751000,Random,6,ParallelBufferedSort,8,450331000,Random,6,ParallelBufferedSort,9,638371000,Random,6,ParallelBufferedSort,10,873481000,Random,6,ParallelRadixSort,0,4161000,Random,6,ParallelRadixSort,1,8371000,Random,6,ParallelRadixSort,2,13421000,Random,6,ParallelRadixSort,3,33031000,Random,6,ParallelRadixSort,4,67241000,Random,6,ParallelRadixSort,5,123491000,Random,6,ParallelRadixSort,6,207581000,Random,6,ParallelRadixSort,7,324811000,Random,6,ParallelRadixSort,8,480871000,Random,6,ParallelRadixSort,9,681401000,Random,6,ParallelRadixSort,10,931631000,Random,6,StdSort,0,2571000,Random,6,StdSort,1,3591000,Random,6,StdSort,2,10291000,Random,6,StdSort,3,29551000,Random,6,StdSort,4,61831000,Random,6,StdSort,5,114571000,Random,6,StdSort,6,193431000,Random,6,StdSort,7,303691000,Random,6,StdSort,8,450101000,Random,6,StdSort,9,638211000,Random,6,StdSort,10,873251000,Random,7,ParallelSort,0,2681000,Random,7,ParallelSort,1,3631000,Random,7,ParallelSort,2,9981000,Random,7,ParallelSort,3,28581000,Random,7,ParallelSort,4,59581000,Random,7,ParallelSort,5,110251000,Random,7,ParallelSort,6,186121000,Random,7,ParallelSort,7,292141000,Random,7,ParallelSort,8,432681000,Random,7,ParallelSort,9,613811000,Random,7,ParallelSort,10,839531000,Random,7,ParallelBufferedSort,0,2601000,Random,7,ParallelBufferedSort,1,3521000,Random,7,ParallelBufferedSort,2,10031000,Random,7,ParallelBufferedSort,3,28511000,Random,7,ParallelBufferedSort,4,59471000,Random,7,ParallelBufferedSort,5,110221000,Random,7,ParallelBufferedSort,6,186031000,Random,7,ParallelBufferedSort,7,292191000,Random,7,ParallelBufferedSort,8,432941000,Random,7,ParallelBufferedSort,9,613401000,Random,7,ParallelBufferedSort,10,839441000,Random,7,ParallelRadixSort,0,8031000,Random,7,ParallelRadixSort,1,11491000,Random,7,ParallelRadixSort,2,12811000,Random,7,ParallelRadixSort,3,33131000,Random,7,ParallelRadixSort,4,67121000,Random,7,ParallelRadixSort,5,123441000,Random,7,ParallelRadixSort,6,207471000,Random,7,ParallelRadixSort,7,324461000,Random,7,ParallelRadixSort,8,480401000,Random,7,ParallelRadixSort,9,680611000,Random,7,ParallelRadixSort,10,930481000,Random,7,StdSort,0,2501000,Random,7,StdSort,1,3491000,Random,7,StdSort,2,9901000,Random,7,StdSort,3,28451000,Random,7,StdSort,4,59471000,Random,7,StdSort,5,110171000,Random,7,StdSort,6,185961000,Random,7,StdSort,7,291911000,Random,7,StdSort,8,432101000,Random,7,StdSort,9,613351000,Random,7,StdSort,10,839291000,Random,8,ParallelSort,0,2671000,Random,8,ParallelSort,1,3641000,Random,8,ParallelSort,2,10071000,Random,8,ParallelSort,3,29201000,Random,8,ParallelSort,4,60251000,Random,8,ParallelSort,5,111531000,Random,8,ParallelSort,6,188481000,Random,8,ParallelSort,7,295381000,Random,8,ParallelSort,8,437791000,Random,8,ParallelSort,9,620571000,Random,8,ParallelSort,10,849271000,Random,8,ParallelBufferedSort,0,2741000,Random,8,ParallelBufferedSort,1,3681000,Random,8,ParallelBufferedSort,2,10121000,Random,8,ParallelBufferedSort,3,29031000,Random,8,ParallelBufferedSort,4,60131000,Random,8,ParallelBufferedSort,5,111621000,Random,8,ParallelBufferedSort,6,188501000,Random,8,ParallelBufferedSort,7,295671000,Random,8,ParallelBufferedSort,8,437991000,Random,8,ParallelBufferedSort,9,621031000,Random,8,ParallelBufferedSort,10,849481000,Random,8,ParallelRadixSort,0,10761000,Random,8,ParallelRadixSort,1,18431000,Random,8,ParallelRadixSort,2,13641000,Random,8,ParallelRadixSort,3,33741000,Random,8,ParallelRadixSort,4,67261000,Random,8,ParallelRadixSort,5,123481000,Random,8,ParallelRadixSort,6,207301000,Random,8,ParallelRadixSort,7,324381000,Random,8,ParallelRadixSort,8,479761000,Random,8,ParallelRadixSort,9,680111000,Random,8,ParallelRadixSort,10,929711000,Random,8,StdSort,0,2531000,Random,8,StdSort,1,3541000,Random,8,StdSort,2,10011000,Random,8,StdSort,3,28751000,Random,8,StdSort,4,60131000,Random,8,StdSort,5,111411000,Random,8,StdSort,6,188131000,Random,8,StdSort,7,295311000,Random,8,StdSort,8,437711000,Random,8,StdSort,9,620581000,Random,8,StdSort,10,849141000,PreSorted,1,ParallelSort,0,1071000,PreSorted,1,ParallelSort,1,1461000,PreSorted,1,ParallelSort,2,4461000,PreSorted,1,ParallelSort,3,13681000,PreSorted,1,ParallelSort,4,28661000,PreSorted,1,ParallelSort,5,53431000,PreSorted,1,ParallelSort,6,90301000,PreSorted,1,ParallelSort,7,141911000,PreSorted,1,ParallelSort,8,210461000,PreSorted,1,ParallelSort,9,298401000,PreSorted,1,ParallelSort,10,408301000,PreSorted,1,ParallelBufferedSort,0,1071000,PreSorted,1,ParallelBufferedSort,1,1481000,PreSorted,1,ParallelBufferedSort,2,4461000,PreSorted,1,ParallelBufferedSort,3,13721000,PreSorted,1,ParallelBufferedSort,4,28681000,PreSorted,1,ParallelBufferedSort,5,53451000,PreSorted,1,ParallelBufferedSort,6,90391000,PreSorted,1,ParallelBufferedSort,7,141871000,PreSorted,1,ParallelBufferedSort,8,210381000,PreSorted,1,ParallelBufferedSort,9,298251000,PreSorted,1,ParallelBufferedSort,10,408191000,PreSorted,1,ParallelRadixSort,0,3211000,PreSorted,1,ParallelRadixSort,1,4841000,PreSorted,1,ParallelRadixSort,2,11871000,PreSorted,1,ParallelRadixSort,3,33351000,PreSorted,1,ParallelRadixSort,4,69191000,PreSorted,1,ParallelRadixSort,5,128241000,PreSorted,1,ParallelRadixSort,6,216541000,PreSorted,1,ParallelRadixSort,7,339661000,PreSorted,1,ParallelRadixSort,8,503281000,PreSorted,1,ParallelRadixSort,9,713781000,PreSorted,1,ParallelRadixSort,10,976601000,PreSorted,1,StdSort,0,991000,PreSorted,1,StdSort,1,1421000,PreSorted,1,StdSort,2,4461000,PreSorted,1,StdSort,3,13671000,PreSorted,1,StdSort,4,28761000,PreSorted,1,StdSort,5,53421000,PreSorted,1,StdSort,6,90291000,PreSorted,1,StdSort,7,141891000,PreSorted,1,StdSort,8,210341000,PreSorted,1,StdSort,9,298261000,PreSorted,1,StdSort,10,408191000,PreSorted,2,ParallelSort,0,1061000,PreSorted,2,ParallelSort,1,1451000,PreSorted,2,ParallelSort,2,4461000,PreSorted,2,ParallelSort,3,13681000,PreSorted,2,ParallelSort,4,28721000,PreSorted,2,ParallelSort,5,53381000,PreSorted,2,ParallelSort,6,90321000,PreSorted,2,ParallelSort,7,141921000,PreSorted,2,ParallelSort,8,210311000,PreSorted,2,ParallelSort,9,298381000,PreSorted,2,ParallelSort,10,408271000,PreSorted,2,ParallelBufferedSort,0,1001000,PreSorted,2,ParallelBufferedSort,1,1431000,PreSorted,2,ParallelBufferedSort,2,4471000,PreSorted,2,ParallelBufferedSort,3,13711000,PreSorted,2,ParallelBufferedSort,4,28811000,PreSorted,2,ParallelBufferedSort,5,53461000,PreSorted,2,ParallelBufferedSort,6,90281000,PreSorted,2,ParallelBufferedSort,7,141941000,PreSorted,2,ParallelBufferedSort,8,210481000,PreSorted,2,ParallelBufferedSort,9,298311000,PreSorted,2,ParallelBufferedSort,10,408251000,PreSorted,2,ParallelRadixSort,0,3411000,PreSorted,2,ParallelRadixSort,1,5051000,PreSorted,2,ParallelRadixSort,2,12141000,PreSorted,2,ParallelRadixSort,3,32951000,PreSorted,2,ParallelRadixSort,4,67781000,PreSorted,2,ParallelRadixSort,5,125241000,PreSorted,2,ParallelRadixSort,6,210901000,PreSorted,2,ParallelRadixSort,7,330521000,PreSorted,2,ParallelRadixSort,8,489471000,PreSorted,2,ParallelRadixSort,9,693971000,PreSorted,2,ParallelRadixSort,10,948961000,PreSorted,2,StdSort,0,991000,PreSorted,2,StdSort,1,1431000,PreSorted,2,StdSort,2,4461000,PreSorted,2,StdSort,3,13671000,PreSorted,2,StdSort,4,28641000,PreSorted,2,StdSort,5,53321000,PreSorted,2,StdSort,6,90211000,PreSorted,2,StdSort,7,141831000,PreSorted,2,StdSort,8,210341000,PreSorted,2,StdSort,9,298261000,PreSorted,2,StdSort,10,408261000,PreSorted,3,ParallelSort,0,1001000,PreSorted,3,ParallelSort,1,1571000,PreSorted,3,ParallelSort,2,4471000,PreSorted,3,ParallelSort,3,13711000,PreSorted,3,ParallelSort,4,28731000,PreSorted,3,ParallelSort,5,53501000,PreSorted,3,ParallelSort,6,90321000,PreSorted,3,ParallelSort,7,141861000,PreSorted,3,ParallelSort,8,210401000,PreSorted,3,ParallelSort,9,298391000,PreSorted,3,ParallelSort,10,408331000,PreSorted,3,ParallelBufferedSort,0,1081000,PreSorted,3,ParallelBufferedSort,1,1581000,PreSorted,3,ParallelBufferedSort,2,4461000,PreSorted,3,ParallelBufferedSort,3,13721000,PreSorted,3,ParallelBufferedSort,4,28821000,PreSorted,3,ParallelBufferedSort,5,53481000,PreSorted,3,ParallelBufferedSort,6,90431000,PreSorted,3,ParallelBufferedSort,7,141911000,PreSorted,3,ParallelBufferedSort,8,210401000,PreSorted,3,ParallelBufferedSort,9,298351000,PreSorted,3,ParallelBufferedSort,10,408301000,PreSorted,3,ParallelRadixSort,0,3691000,PreSorted,3,ParallelRadixSort,1,5251000,PreSorted,3,ParallelRadixSort,2,12111000,PreSorted,3,ParallelRadixSort,3,32871000,PreSorted,3,ParallelRadixSort,4,67471000,PreSorted,3,ParallelRadixSort,5,124201000,PreSorted,3,ParallelRadixSort,6,209061000,PreSorted,3,ParallelRadixSort,7,327471000,PreSorted,3,ParallelRadixSort,8,484911000,PreSorted,3,ParallelRadixSort,9,687231000,PreSorted,3,ParallelRadixSort,10,939691000,PreSorted,3,StdSort,0,991000,PreSorted,3,StdSort,1,1431000,PreSorted,3,StdSort,2,4461000,PreSorted,3,StdSort,3,13671000,PreSorted,3,StdSort,4,28641000,PreSorted,3,StdSort,5,53421000,PreSorted,3,StdSort,6,90211000,PreSorted,3,StdSort,7,141821000,PreSorted,3,StdSort,8,210341000,PreSorted,3,StdSort,9,298261000,PreSorted,3,StdSort,10,408151000,PreSorted,4,ParallelSort,0,1071000,PreSorted,4,ParallelSort,1,1461000,PreSorted,4,ParallelSort,2,4451000,PreSorted,4,ParallelSort,3,13851000,PreSorted,4,ParallelSort,4,28741000,PreSorted,4,ParallelSort,5,53481000,PreSorted,4,ParallelSort,6,90391000,PreSorted,4,ParallelSort,7,141911000,PreSorted,4,ParallelSort,8,210321000,PreSorted,4,ParallelSort,9,298341000,PreSorted,4,ParallelSort,10,408291000,PreSorted,4,ParallelBufferedSort,0,1071000,PreSorted,4,ParallelBufferedSort,1,1461000,PreSorted,4,ParallelBufferedSort,2,4471000,PreSorted,4,ParallelBufferedSort,3,13811000,PreSorted,4,ParallelBufferedSort,4,28821000,PreSorted,4,ParallelBufferedSort,5,53481000,PreSorted,4,ParallelBufferedSort,6,90321000,PreSorted,4,ParallelBufferedSort,7,141981000,PreSorted,4,ParallelBufferedSort,8,210391000,PreSorted,4,ParallelBufferedSort,9,298391000,PreSorted,4,ParallelBufferedSort,10,408241000,PreSorted,4,ParallelRadixSort,0,3921000,PreSorted,4,ParallelRadixSort,1,5631000,PreSorted,4,ParallelRadixSort,2,12351000,PreSorted,4,ParallelRadixSort,3,32861000,PreSorted,4,ParallelRadixSort,4,67221000,PreSorted,4,ParallelRadixSort,5,123791000,PreSorted,4,ParallelRadixSort,6,208121000,PreSorted,4,ParallelRadixSort,7,326051000,PreSorted,4,ParallelRadixSort,8,483001000,PreSorted,4,ParallelRadixSort,9,684011000,PreSorted,4,ParallelRadixSort,10,935371000,PreSorted,4,StdSort,0,991000,PreSorted,4,StdSort,1,1431000,PreSorted,4,StdSort,2,4451000,PreSorted,4,StdSort,3,13671000,PreSorted,4,StdSort,4,28641000,PreSorted,4,StdSort,5,53321000,PreSorted,4,StdSort,6,90281000,PreSorted,4,StdSort,7,141891000,PreSorted,4,StdSort,8,210341000,PreSorted,4,StdSort,9,298261000,PreSorted,4,StdSort,10,408151000,PreSorted,5,ParallelSort,0,1071000,PreSorted,5,ParallelSort,1,1461000,PreSorted,5,ParallelSort,2,4461000,PreSorted,5,ParallelSort,3,13711000,PreSorted,5,ParallelSort,4,28751000,PreSorted,5,ParallelSort,5,53601000,PreSorted,5,ParallelSort,6,90331000,PreSorted,5,ParallelSort,7,141871000,PreSorted,5,ParallelSort,8,210371000,PreSorted,5,ParallelSort,9,298341000,PreSorted,5,ParallelSort,10,408321000,PreSorted,5,ParallelBufferedSort,0,1071000,PreSorted,5,ParallelBufferedSort,1,1461000,PreSorted,5,ParallelBufferedSort,2,4461000,PreSorted,5,ParallelBufferedSort,3,13781000,PreSorted,5,ParallelBufferedSort,4,28701000,PreSorted,5,ParallelBufferedSort,5,53531000,PreSorted,5,ParallelBufferedSort,6,90241000,PreSorted,5,ParallelBufferedSort,7,141871000,PreSorted,5,ParallelBufferedSort,8,210431000,PreSorted,5,ParallelBufferedSort,9,298321000,PreSorted,5,ParallelBufferedSort,10,408311000,PreSorted,5,ParallelRadixSort,0,3921000,PreSorted,5,ParallelRadixSort,1,5851000,PreSorted,5,ParallelRadixSort,2,12511000,PreSorted,5,ParallelRadixSort,3,32941000,PreSorted,5,ParallelRadixSort,4,67231000,PreSorted,5,ParallelRadixSort,5,123661000,PreSorted,5,ParallelRadixSort,6,207701000,PreSorted,5,ParallelRadixSort,7,325451000,PreSorted,5,ParallelRadixSort,8,481591000,PreSorted,5,ParallelRadixSort,9,682241000,PreSorted,5,ParallelRadixSort,10,933091000,PreSorted,5,StdSort,0,991000,PreSorted,5,StdSort,1,1421000,PreSorted,5,StdSort,2,4451000,PreSorted,5,StdSort,3,13671000,PreSorted,5,StdSort,4,28651000,PreSorted,5,StdSort,5,53501000,PreSorted,5,StdSort,6,90281000,PreSorted,5,StdSort,7,141821000,PreSorted,5,StdSort,8,210341000,PreSorted,5,StdSort,9,298261000,PreSorted,5,StdSort,10,408171000,PreSorted,6,ParallelSort,0,1071000,PreSorted,6,ParallelSort,1,1461000,PreSorted,6,ParallelSort,2,4461000,PreSorted,6,ParallelSort,3,13731000,PreSorted,6,ParallelSort,4,28811000,PreSorted,6,ParallelSort,5,53421000,PreSorted,6,ParallelSort,6,90331000,PreSorted,6,ParallelSort,7,142011000,PreSorted,6,ParallelSort,8,210531000,PreSorted,6,ParallelSort,9,298321000,PreSorted,6,ParallelSort,10,408261000,PreSorted,6,ParallelBufferedSort,0,1141000,PreSorted,6,ParallelBufferedSort,1,1461000,PreSorted,6,ParallelBufferedSort,2,4461000,PreSorted,6,ParallelBufferedSort,3,13701000,PreSorted,6,ParallelBufferedSort,4,28681000,PreSorted,6,ParallelBufferedSort,5,53511000,PreSorted,6,ParallelBufferedSort,6,90421000,PreSorted,6,ParallelBufferedSort,7,141961000,PreSorted,6,ParallelBufferedSort,8,210421000,PreSorted,6,ParallelBufferedSort,9,298401000,PreSorted,6,ParallelBufferedSort,10,408241000,PreSorted,6,ParallelRadixSort,0,4041000,PreSorted,6,ParallelRadixSort,1,7441000,PreSorted,6,ParallelRadixSort,2,12961000,PreSorted,6,ParallelRadixSort,3,33001000,PreSorted,6,ParallelRadixSort,4,67121000,PreSorted,6,ParallelRadixSort,5,123451000,PreSorted,6,ParallelRadixSort,6,207381000,PreSorted,6,ParallelRadixSort,7,324561000,PreSorted,6,ParallelRadixSort,8,480631000,PreSorted,6,ParallelRadixSort,9,681221000,PreSorted,6,ParallelRadixSort,10,931111000,PreSorted,6,StdSort,0,1011000,PreSorted,6,StdSort,1,1431000,PreSorted,6,StdSort,2,4451000,PreSorted,6,StdSort,3,13671000,PreSorted,6,StdSort,4,28651000,PreSorted,6,StdSort,5,53431000,PreSorted,6,StdSort,6,90211000,PreSorted,6,StdSort,7,141891000,PreSorted,6,StdSort,8,210281000,PreSorted,6,StdSort,9,298261000,PreSorted,6,StdSort,10,408161000,PreSorted,7,ParallelSort,0,1071000,PreSorted,7,ParallelSort,1,1501000,PreSorted,7,ParallelSort,2,4471000,PreSorted,7,ParallelSort,3,13701000,PreSorted,7,ParallelSort,4,28741000,PreSorted,7,ParallelSort,5,53421000,PreSorted,7,ParallelSort,6,90311000,PreSorted,7,ParallelSort,7,141931000,PreSorted,7,ParallelSort,8,210411000,PreSorted,7,ParallelSort,9,298311000,PreSorted,7,ParallelSort,10,408241000,PreSorted,7,ParallelBufferedSort,0,1161000,PreSorted,7,ParallelBufferedSort,1,1451000,PreSorted,7,ParallelBufferedSort,2,4461000,PreSorted,7,ParallelBufferedSort,3,13691000,PreSorted,7,ParallelBufferedSort,4,28751000,PreSorted,7,ParallelBufferedSort,5,53601000,PreSorted,7,ParallelBufferedSort,6,90281000,PreSorted,7,ParallelBufferedSort,7,141861000,PreSorted,7,ParallelBufferedSort,8,210341000,PreSorted,7,ParallelBufferedSort,9,298321000,PreSorted,7,ParallelBufferedSort,10,408351000,PreSorted,7,ParallelRadixSort,0,8111000,PreSorted,7,ParallelRadixSort,1,16181000,PreSorted,7,ParallelRadixSort,2,13011000,PreSorted,7,ParallelRadixSort,3,33081000,PreSorted,7,ParallelRadixSort,4,67141000,PreSorted,7,ParallelRadixSort,5,123311000,PreSorted,7,ParallelRadixSort,6,207191000,PreSorted,7,ParallelRadixSort,7,324281000,PreSorted,7,ParallelRadixSort,8,480151000,PreSorted,7,ParallelRadixSort,9,680171000,PreSorted,7,ParallelRadixSort,10,929981000,PreSorted,7,StdSort,0,991000,PreSorted,7,StdSort,1,1421000,PreSorted,7,StdSort,2,4461000,PreSorted,7,StdSort,3,13671000,PreSorted,7,StdSort,4,28721000,PreSorted,7,StdSort,5,53501000,PreSorted,7,StdSort,6,90281000,PreSorted,7,StdSort,7,141891000,PreSorted,7,StdSort,8,210331000,PreSorted,7,StdSort,9,298191000,PreSorted,7,StdSort,10,408231000,PreSorted,8,ParallelSort,0,1071000,PreSorted,8,ParallelSort,1,1461000,PreSorted,8,ParallelSort,2,4461000,PreSorted,8,ParallelSort,3,13721000,PreSorted,8,ParallelSort,4,28811000,PreSorted,8,ParallelSort,5,53651000,PreSorted,8,ParallelSort,6,90461000,PreSorted,8,ParallelSort,7,141861000,PreSorted,8,ParallelSort,8,210521000,PreSorted,8,ParallelSort,9,298351000,PreSorted,8,ParallelSort,10,408341000,PreSorted,8,ParallelBufferedSort,0,1081000,PreSorted,8,ParallelBufferedSort,1,1501000,PreSorted,8,ParallelBufferedSort,2,4461000,PreSorted,8,ParallelBufferedSort,3,13781000,PreSorted,8,ParallelBufferedSort,4,28811000,PreSorted,8,ParallelBufferedSort,5,53551000,PreSorted,8,ParallelBufferedSort,6,90321000,PreSorted,8,ParallelBufferedSort,7,141861000,PreSorted,8,ParallelBufferedSort,8,210391000,PreSorted,8,ParallelBufferedSort,9,298341000,PreSorted,8,ParallelBufferedSort,10,408331000,PreSorted,8,ParallelRadixSort,0,10581000,PreSorted,8,ParallelRadixSort,1,18861000,PreSorted,8,ParallelRadixSort,2,14971000,PreSorted,8,ParallelRadixSort,3,34741000,PreSorted,8,ParallelRadixSort,4,67181000,PreSorted,8,ParallelRadixSort,5,123281000,PreSorted,8,ParallelRadixSort,6,207151000,PreSorted,8,ParallelRadixSort,7,324001000,PreSorted,8,ParallelRadixSort,8,479501000,PreSorted,8,ParallelRadixSort,9,679611000,PreSorted,8,ParallelRadixSort,10,928901000,PreSorted,8,StdSort,0,1001000,PreSorted,8,StdSort,1,1421000,PreSorted,8,StdSort,2,4461000,PreSorted,8,StdSort,3,13671000,PreSorted,8,StdSort,4,28641000,PreSorted,8,StdSort,5,53421000,PreSorted,8,StdSort,6,90211000,PreSorted,8,StdSort,7,141891000,PreSorted,8,StdSort,8,210341000,PreSorted,8,StdSort,9,298271000,PreSorted,8,StdSort,10,408191000,NearlySorted,1,ParallelSort,0,1071000,NearlySorted,1,ParallelSort,1,1461000,NearlySorted,1,ParallelSort,2,4291000,NearlySorted,1,ParallelSort,3,13711000,NearlySorted,1,ParallelSort,4,28751000,NearlySorted,1,ParallelSort,5,53601000,NearlySorted,1,ParallelSort,6,90381000,NearlySorted,1,ParallelSort,7,141881000,NearlySorted,1,ParallelSort,8,210461000,NearlySorted,1,ParallelSort,9,298351000,NearlySorted,1,ParallelSort,10,408281000,NearlySorted,1,ParallelBufferedSort,0,1071000,NearlySorted,1,ParallelBufferedSort,1,1621000,NearlySorted,1,ParallelBufferedSort,2,4291000,NearlySorted,1,ParallelBufferedSort,3,13781000,NearlySorted,1,ParallelBufferedSort,4,28801000,NearlySorted,1,ParallelBufferedSort,5,53481000,NearlySorted,1,ParallelBufferedSort,6,90401000,NearlySorted,1,ParallelBufferedSort,7,141891000,NearlySorted,1,ParallelBufferedSort,8,210351000,NearlySorted,1,ParallelBufferedSort,9,298311000,NearlySorted,1,ParallelBufferedSort,10,408331000,NearlySorted,1,ParallelRadixSort,0,3181000,NearlySorted,1,ParallelRadixSort,1,4771000,NearlySorted,1,ParallelRadixSort,2,11861000,NearlySorted,1,ParallelRadixSort,3,33301000,NearlySorted,1,ParallelRadixSort,4,69161000,NearlySorted,1,ParallelRadixSort,5,128251000,NearlySorted,1,ParallelRadixSort,6,216461000,NearlySorted,1,ParallelRadixSort,7,339601000,NearlySorted,1,ParallelRadixSort,8,503321000,NearlySorted,1,ParallelRadixSort,9,713821000,NearlySorted,1,ParallelRadixSort,10,976431000,NearlySorted,1,StdSort,0,991000,NearlySorted,1,StdSort,1,1431000,NearlySorted,1,StdSort,2,4281000,NearlySorted,1,StdSort,3,13681000,NearlySorted,1,StdSort,4,28651000,NearlySorted,1,StdSort,5,53441000,NearlySorted,1,StdSort,6,90221000,NearlySorted,1,StdSort,7,141841000,NearlySorted,1,StdSort,8,210301000,NearlySorted,1,StdSort,9,298301000,NearlySorted,1,StdSort,10,408221000,NearlySorted,2,ParallelSort,0,1071000,NearlySorted,2,ParallelSort,1,1471000,NearlySorted,2,ParallelSort,2,4291000,NearlySorted,2,ParallelSort,3,13691000,NearlySorted,2,ParallelSort,4,28801000,NearlySorted,2,ParallelSort,5,53481000,NearlySorted,2,ParallelSort,6,90481000,NearlySorted,2,ParallelSort,7,142091000,NearlySorted,2,ParallelSort,8,210491000,NearlySorted,2,ParallelSort,9,298451000,NearlySorted,2,ParallelSort,10,408331000,NearlySorted,2,ParallelBufferedSort,0,1011000,NearlySorted,2,ParallelBufferedSort,1,1441000,NearlySorted,2,ParallelBufferedSort,2,4301000,NearlySorted,2,ParallelBufferedSort,3,13711000,NearlySorted,2,ParallelBufferedSort,4,28811000,NearlySorted,2,ParallelBufferedSort,5,53501000,NearlySorted,2,ParallelBufferedSort,6,90371000,NearlySorted,2,ParallelBufferedSort,7,142041000,NearlySorted,2,ParallelBufferedSort,8,210491000,NearlySorted,2,ParallelBufferedSort,9,298391000,NearlySorted,2,ParallelBufferedSort,10,408281000,NearlySorted,2,ParallelRadixSort,0,3451000,NearlySorted,2,ParallelRadixSort,1,5051000,NearlySorted,2,ParallelRadixSort,2,12131000,NearlySorted,2,ParallelRadixSort,3,32941000,NearlySorted,2,ParallelRadixSort,4,67821000,NearlySorted,2,ParallelRadixSort,5,125171000,NearlySorted,2,ParallelRadixSort,6,210911000,NearlySorted,2,ParallelRadixSort,7,330401000,NearlySorted,2,ParallelRadixSort,8,489601000,NearlySorted,2,ParallelRadixSort,9,693791000,NearlySorted,2,ParallelRadixSort,10,948871000,NearlySorted,2,StdSort,0,991000,NearlySorted,2,StdSort,1,1431000,NearlySorted,2,StdSort,2,4281000,NearlySorted,2,StdSort,3,13671000,NearlySorted,2,StdSort,4,28721000,NearlySorted,2,StdSort,5,53441000,NearlySorted,2,StdSort,6,90291000,NearlySorted,2,StdSort,7,141841000,NearlySorted,2,StdSort,8,210291000,NearlySorted,2,StdSort,9,298231000,NearlySorted,2,StdSort,10,408241000,NearlySorted,3,ParallelSort,0,1131000,NearlySorted,3,ParallelSort,1,1471000,NearlySorted,3,ParallelSort,2,4301000,NearlySorted,3,ParallelSort,3,13781000,NearlySorted,3,ParallelSort,4,28731000,NearlySorted,3,ParallelSort,5,53501000,NearlySorted,3,ParallelSort,6,90331000,NearlySorted,3,ParallelSort,7,142011000,NearlySorted,3,ParallelSort,8,210391000,NearlySorted,3,ParallelSort,9,298391000,NearlySorted,3,ParallelSort,10,408321000,NearlySorted,3,ParallelBufferedSort,0,1131000,NearlySorted,3,ParallelBufferedSort,1,1461000,NearlySorted,3,ParallelBufferedSort,2,4291000,NearlySorted,3,ParallelBufferedSort,3,13731000,NearlySorted,3,ParallelBufferedSort,4,28731000,NearlySorted,3,ParallelBufferedSort,5,53491000,NearlySorted,3,ParallelBufferedSort,6,90391000,NearlySorted,3,ParallelBufferedSort,7,142001000,NearlySorted,3,ParallelBufferedSort,8,210481000,NearlySorted,3,ParallelBufferedSort,9,298351000,NearlySorted,3,ParallelBufferedSort,10,408301000,NearlySorted,3,ParallelRadixSort,0,3611000,NearlySorted,3,ParallelRadixSort,1,5251000,NearlySorted,3,ParallelRadixSort,2,12171000,NearlySorted,3,ParallelRadixSort,3,32881000,NearlySorted,3,ParallelRadixSort,4,67401000,NearlySorted,3,ParallelRadixSort,5,124321000,NearlySorted,3,ParallelRadixSort,6,209271000,NearlySorted,3,ParallelRadixSort,7,327531000,NearlySorted,3,ParallelRadixSort,8,484941000,NearlySorted,3,ParallelRadixSort,9,687501000,NearlySorted,3,ParallelRadixSort,10,940071000,NearlySorted,3,StdSort,0,991000,NearlySorted,3,StdSort,1,1431000,NearlySorted,3,StdSort,2,4281000,NearlySorted,3,StdSort,3,13681000,NearlySorted,3,StdSort,4,28721000,NearlySorted,3,StdSort,5,53401000,NearlySorted,3,StdSort,6,90291000,NearlySorted,3,StdSort,7,141911000,NearlySorted,3,StdSort,8,210301000,NearlySorted,3,StdSort,9,298301000,NearlySorted,3,StdSort,10,408321000,NearlySorted,4,ParallelSort,0,1071000,NearlySorted,4,ParallelSort,1,1461000,NearlySorted,4,ParallelSort,2,4291000,NearlySorted,4,ParallelSort,3,13741000,NearlySorted,4,ParallelSort,4,28741000,NearlySorted,4,ParallelSort,5,53511000,NearlySorted,4,ParallelSort,6,90341000,NearlySorted,4,ParallelSort,7,142041000,NearlySorted,4,ParallelSort,8,210531000,NearlySorted,4,ParallelSort,9,298391000,NearlySorted,4,ParallelSort,10,408371000,NearlySorted,4,ParallelBufferedSort,0,1151000,NearlySorted,4,ParallelBufferedSort,1,1461000,NearlySorted,4,ParallelBufferedSort,2,4291000,NearlySorted,4,ParallelBufferedSort,3,13721000,NearlySorted,4,ParallelBufferedSort,4,28751000,NearlySorted,4,ParallelBufferedSort,5,53621000,NearlySorted,4,ParallelBufferedSort,6,90371000,NearlySorted,4,ParallelBufferedSort,7,141891000,NearlySorted,4,ParallelBufferedSort,8,210411000,NearlySorted,4,ParallelBufferedSort,9,298311000,NearlySorted,4,ParallelBufferedSort,10,408291000,NearlySorted,4,ParallelRadixSort,0,3961000,NearlySorted,4,ParallelRadixSort,1,5621000,NearlySorted,4,ParallelRadixSort,2,12381000,NearlySorted,4,ParallelRadixSort,3,32881000,NearlySorted,4,ParallelRadixSort,4,67251000,NearlySorted,4,ParallelRadixSort,5,123881000,NearlySorted,4,ParallelRadixSort,6,208151000,NearlySorted,4,ParallelRadixSort,7,326021000,NearlySorted,4,ParallelRadixSort,8,482581000,NearlySorted,4,ParallelRadixSort,9,683931000,NearlySorted,4,ParallelRadixSort,10,935201000,NearlySorted,4,StdSort,0,991000,NearlySorted,4,StdSort,1,1431000,NearlySorted,4,StdSort,2,4281000,NearlySorted,4,StdSort,3,13751000,NearlySorted,4,StdSort,4,28721000,NearlySorted,4,StdSort,5,53401000,NearlySorted,4,StdSort,6,90221000,NearlySorted,4,StdSort,7,141911000,NearlySorted,4,StdSort,8,210371000,NearlySorted,4,StdSort,9,298301000,NearlySorted,4,StdSort,10,408231000,NearlySorted,5,ParallelSort,0,1081000,NearlySorted,5,ParallelSort,1,1481000,NearlySorted,5,ParallelSort,2,4291000,NearlySorted,5,ParallelSort,3,13701000,NearlySorted,5,ParallelSort,4,28751000,NearlySorted,5,ParallelSort,5,53531000,NearlySorted,5,ParallelSort,6,90331000,NearlySorted,5,ParallelSort,7,142291000,NearlySorted,5,ParallelSort,8,210461000,NearlySorted,5,ParallelSort,9,298351000,NearlySorted,5,ParallelSort,10,408421000,NearlySorted,5,ParallelBufferedSort,0,1001000,NearlySorted,5,ParallelBufferedSort,1,1461000,NearlySorted,5,ParallelBufferedSort,2,4291000,NearlySorted,5,ParallelBufferedSort,3,13701000,NearlySorted,5,ParallelBufferedSort,4,28811000,NearlySorted,5,ParallelBufferedSort,5,53491000,NearlySorted,5,ParallelBufferedSort,6,90401000,NearlySorted,5,ParallelBufferedSort,7,141941000,NearlySorted,5,ParallelBufferedSort,8,210431000,NearlySorted,5,ParallelBufferedSort,9,298391000,NearlySorted,5,ParallelBufferedSort,10,408441000,NearlySorted,5,ParallelRadixSort,0,3971000,NearlySorted,5,ParallelRadixSort,1,5561000,NearlySorted,5,ParallelRadixSort,2,12461000,NearlySorted,5,ParallelRadixSort,3,33041000,NearlySorted,5,ParallelRadixSort,4,67011000,NearlySorted,5,ParallelRadixSort,5,123471000,NearlySorted,5,ParallelRadixSort,6,207801000,NearlySorted,5,ParallelRadixSort,7,325261000,NearlySorted,5,ParallelRadixSort,8,481581000,NearlySorted,5,ParallelRadixSort,9,681951000,NearlySorted,5,ParallelRadixSort,10,932631000,NearlySorted,5,StdSort,0,991000,NearlySorted,5,StdSort,1,1431000,NearlySorted,5,StdSort,2,4291000,NearlySorted,5,StdSort,3,13671000,NearlySorted,5,StdSort,4,28651000,NearlySorted,5,StdSort,5,53431000,NearlySorted,5,StdSort,6,90231000,NearlySorted,5,StdSort,7,141911000,NearlySorted,5,StdSort,8,210371000,NearlySorted,5,StdSort,9,298311000,NearlySorted,5,StdSort,10,408141000,NearlySorted,6,ParallelSort,0,1141000,NearlySorted,6,ParallelSort,1,1471000,NearlySorted,6,ParallelSort,2,4291000,NearlySorted,6,ParallelSort,3,13841000,NearlySorted,6,ParallelSort,4,28861000,NearlySorted,6,ParallelSort,5,53621000,NearlySorted,6,ParallelSort,6,90471000,NearlySorted,6,ParallelSort,7,141921000,NearlySorted,6,ParallelSort,8,210411000,NearlySorted,6,ParallelSort,9,298391000,NearlySorted,6,ParallelSort,10,408391000,NearlySorted,6,ParallelBufferedSort,0,1081000,NearlySorted,6,ParallelBufferedSort,1,1461000,NearlySorted,6,ParallelBufferedSort,2,4291000,NearlySorted,6,ParallelBufferedSort,3,13711000,NearlySorted,6,ParallelBufferedSort,4,28711000,NearlySorted,6,ParallelBufferedSort,5,53411000,NearlySorted,6,ParallelBufferedSort,6,90311000,NearlySorted,6,ParallelBufferedSort,7,142021000,NearlySorted,6,ParallelBufferedSort,8,210421000,NearlySorted,6,ParallelBufferedSort,9,298351000,NearlySorted,6,ParallelBufferedSort,10,408391000,NearlySorted,6,ParallelRadixSort,0,4271000,NearlySorted,6,ParallelRadixSort,1,8291000,NearlySorted,6,ParallelRadixSort,2,13051000,NearlySorted,6,ParallelRadixSort,3,33001000,NearlySorted,6,ParallelRadixSort,4,67101000,NearlySorted,6,ParallelRadixSort,5,123501000,NearlySorted,6,ParallelRadixSort,6,207481000,NearlySorted,6,ParallelRadixSort,7,324621000,NearlySorted,6,ParallelRadixSort,8,480401000,NearlySorted,6,ParallelRadixSort,9,680961000,NearlySorted,6,ParallelRadixSort,10,930891000,NearlySorted,6,StdSort,0,991000,NearlySorted,6,StdSort,1,1431000,NearlySorted,6,StdSort,2,4281000,NearlySorted,6,StdSort,3,13671000,NearlySorted,6,StdSort,4,28651000,NearlySorted,6,StdSort,5,53431000,NearlySorted,6,StdSort,6,90231000,NearlySorted,6,StdSort,7,141841000,NearlySorted,6,StdSort,8,210301000,NearlySorted,6,StdSort,9,298271000,NearlySorted,6,StdSort,10,408211000,NearlySorted,7,ParallelSort,0,1141000,NearlySorted,7,ParallelSort,1,1611000,NearlySorted,7,ParallelSort,2,4291000,NearlySorted,7,ParallelSort,3,13781000,NearlySorted,7,ParallelSort,4,28691000,NearlySorted,7,ParallelSort,5,53411000,NearlySorted,7,ParallelSort,6,90321000,NearlySorted,7,ParallelSort,7,141891000,NearlySorted,7,ParallelSort,8,210411000,NearlySorted,7,ParallelSort,9,298311000,NearlySorted,7,ParallelSort,10,408261000,NearlySorted,7,ParallelBufferedSort,0,1141000,NearlySorted,7,ParallelBufferedSort,1,1461000,NearlySorted,7,ParallelBufferedSort,2,4291000,NearlySorted,7,ParallelBufferedSort,3,13701000,NearlySorted,7,ParallelBufferedSort,4,28781000,NearlySorted,7,ParallelBufferedSort,5,53511000,NearlySorted,7,ParallelBufferedSort,6,90321000,NearlySorted,7,ParallelBufferedSort,7,141871000,NearlySorted,7,ParallelBufferedSort,8,210331000,NearlySorted,7,ParallelBufferedSort,9,298381000,NearlySorted,7,ParallelBufferedSort,10,408421000,NearlySorted,7,ParallelRadixSort,0,8011000,NearlySorted,7,ParallelRadixSort,1,7931000,NearlySorted,7,ParallelRadixSort,2,13951000,NearlySorted,7,ParallelRadixSort,3,32901000,NearlySorted,7,ParallelRadixSort,4,67091000,NearlySorted,7,ParallelRadixSort,5,123271000,NearlySorted,7,ParallelRadixSort,6,207731000,NearlySorted,7,ParallelRadixSort,7,324411000,NearlySorted,7,ParallelRadixSort,8,480051000,NearlySorted,7,ParallelRadixSort,9,680031000,NearlySorted,7,ParallelRadixSort,10,929681000,NearlySorted,7,StdSort,0,991000,NearlySorted,7,StdSort,1,1431000,NearlySorted,7,StdSort,2,4281000,NearlySorted,7,StdSort,3,13671000,NearlySorted,7,StdSort,4,28651000,NearlySorted,7,StdSort,5,53511000,NearlySorted,7,StdSort,6,90291000,NearlySorted,7,StdSort,7,141911000,NearlySorted,7,StdSort,8,210371000,NearlySorted,7,StdSort,9,298301000,NearlySorted,7,StdSort,10,408151000,NearlySorted,8,ParallelSort,0,1141000,NearlySorted,8,ParallelSort,1,1691000,NearlySorted,8,ParallelSort,2,4291000,NearlySorted,8,ParallelSort,3,13751000,NearlySorted,8,ParallelSort,4,28871000,NearlySorted,8,ParallelSort,5,53551000,NearlySorted,8,ParallelSort,6,90381000,NearlySorted,8,ParallelSort,7,141951000,NearlySorted,8,ParallelSort,8,210391000,NearlySorted,8,ParallelSort,9,298391000,NearlySorted,8,ParallelSort,10,408471000,NearlySorted,8,ParallelBufferedSort,0,1151000,NearlySorted,8,ParallelBufferedSort,1,1461000,NearlySorted,8,ParallelBufferedSort,2,4291000,NearlySorted,8,ParallelBufferedSort,3,13821000,NearlySorted,8,ParallelBufferedSort,4,28801000,NearlySorted,8,ParallelBufferedSort,5,53471000,NearlySorted,8,ParallelBufferedSort,6,90411000,NearlySorted,8,ParallelBufferedSort,7,141881000,NearlySorted,8,ParallelBufferedSort,8,210431000,NearlySorted,8,ParallelBufferedSort,9,298411000,NearlySorted,8,ParallelBufferedSort,10,408331000,NearlySorted,8,ParallelRadixSort,0,10671000,NearlySorted,8,ParallelRadixSort,1,18721000,NearlySorted,8,ParallelRadixSort,2,12961000,NearlySorted,8,ParallelRadixSort,3,34371000,NearlySorted,8,ParallelRadixSort,4,67101000,NearlySorted,8,ParallelRadixSort,5,123281000,NearlySorted,8,ParallelRadixSort,6,207311000,NearlySorted,8,ParallelRadixSort,7,324151000,NearlySorted,8,ParallelRadixSort,8,479901000,NearlySorted,8,ParallelRadixSort,9,679611000,NearlySorted,8,ParallelRadixSort,10,929001000,NearlySorted,8,StdSort,0,991000,NearlySorted,8,StdSort,1,1431000,NearlySorted,8,StdSort,2,4291000,NearlySorted,8,StdSort,3,13671000,NearlySorted,8,StdSort,4,28651000,NearlySorted,8,StdSort,5,53511000,NearlySorted,8,StdSort,6,90301000,NearlySorted,8,StdSort,7,141841000,NearlySorted,8,StdSort,8,210371000,NearlySorted,8,StdSort,9,298331000,NearlySorted,8,StdSort,10,408221000,NormalDistributionWithDups,1,ParallelSort,0,3471000,NormalDistributionWithDups,1,ParallelSort,1,4971000,NormalDistributionWithDups,1,ParallelSort,2,13741000,NormalDistributionWithDups,1,ParallelSort,3,40101000,NormalDistributionWithDups,1,ParallelSort,4,83651000,NormalDistributionWithDups,1,ParallelSort,5,155041000,NormalDistributionWithDups,1,ParallelSort,6,261651000,NormalDistributionWithDups,1,ParallelSort,7,410681000,NormalDistributionWithDups,1,ParallelSort,8,608591000,NormalDistributionWithDups,1,ParallelSort,9,862981000,NormalDistributionWithDups,1,ParallelSort,10,1181021000,NormalDistributionWithDups,1,ParallelBufferedSort,0,3601000,NormalDistributionWithDups,1,ParallelBufferedSort,1,4811000,NormalDistributionWithDups,1,ParallelBufferedSort,2,13751000,NormalDistributionWithDups,1,ParallelBufferedSort,3,40181000,NormalDistributionWithDups,1,ParallelBufferedSort,4,83691000,NormalDistributionWithDups,1,ParallelBufferedSort,5,155141000,NormalDistributionWithDups,1,ParallelBufferedSort,6,261771000,NormalDistributionWithDups,1,ParallelBufferedSort,7,410951000,NormalDistributionWithDups,1,ParallelBufferedSort,8,608741000,NormalDistributionWithDups,1,ParallelBufferedSort,9,862991000,NormalDistributionWithDups,1,ParallelBufferedSort,10,1180971000,NormalDistributionWithDups,1,ParallelRadixSort,0,4171000,NormalDistributionWithDups,1,ParallelRadixSort,1,6431000,NormalDistributionWithDups,1,ParallelRadixSort,2,15721000,NormalDistributionWithDups,1,ParallelRadixSort,3,44171000,NormalDistributionWithDups,1,ParallelRadixSort,4,91581000,NormalDistributionWithDups,1,ParallelRadixSort,5,169961000,NormalDistributionWithDups,1,ParallelRadixSort,6,286921000,NormalDistributionWithDups,1,ParallelRadixSort,7,450181000,NormalDistributionWithDups,1,ParallelRadixSort,8,667161000,NormalDistributionWithDups,1,ParallelRadixSort,9,945971000,NormalDistributionWithDups,1,ParallelRadixSort,10,1293981000,NormalDistributionWithDups,1,StdSort,0,3541000,NormalDistributionWithDups,1,StdSort,1,4811000,NormalDistributionWithDups,1,StdSort,2,13691000,NormalDistributionWithDups,1,StdSort,3,40541000,NormalDistributionWithDups,1,StdSort,4,84041000,NormalDistributionWithDups,1,StdSort,5,155271000,NormalDistributionWithDups,1,StdSort,6,261981000,NormalDistributionWithDups,1,StdSort,7,411061000,NormalDistributionWithDups,1,StdSort,8,608871000,NormalDistributionWithDups,1,StdSort,9,863241000,NormalDistributionWithDups,1,StdSort,10,1180961000,NormalDistributionWithDups,2,ParallelSort,0,3241000,NormalDistributionWithDups,2,ParallelSort,1,4441000,NormalDistributionWithDups,2,ParallelSort,2,12321000,NormalDistributionWithDups,2,ParallelSort,3,35831000,NormalDistributionWithDups,2,ParallelSort,4,74611000,NormalDistributionWithDups,2,ParallelSort,5,138301000,NormalDistributionWithDups,2,ParallelSort,6,233231000,NormalDistributionWithDups,2,ParallelSort,7,366111000,NormalDistributionWithDups,2,ParallelSort,8,542551000,NormalDistributionWithDups,2,ParallelSort,9,769231000,NormalDistributionWithDups,2,ParallelSort,10,1052701000,NormalDistributionWithDups,2,ParallelBufferedSort,0,3401000,NormalDistributionWithDups,2,ParallelBufferedSort,1,4451000,NormalDistributionWithDups,2,ParallelBufferedSort,2,12321000,NormalDistributionWithDups,2,ParallelBufferedSort,3,35831000,NormalDistributionWithDups,2,ParallelBufferedSort,4,74611000,NormalDistributionWithDups,2,ParallelBufferedSort,5,138441000,NormalDistributionWithDups,2,ParallelBufferedSort,6,233601000,NormalDistributionWithDups,2,ParallelBufferedSort,7,366151000,NormalDistributionWithDups,2,ParallelBufferedSort,8,542581000,NormalDistributionWithDups,2,ParallelBufferedSort,9,769221000,NormalDistributionWithDups,2,ParallelBufferedSort,10,1052511000,NormalDistributionWithDups,2,ParallelRadixSort,0,4111000,NormalDistributionWithDups,2,ParallelRadixSort,1,6111000,NormalDistributionWithDups,2,ParallelRadixSort,2,15051000,NormalDistributionWithDups,2,ParallelRadixSort,3,40651000,NormalDistributionWithDups,2,ParallelRadixSort,4,83581000,NormalDistributionWithDups,2,ParallelRadixSort,5,154491000,NormalDistributionWithDups,2,ParallelRadixSort,6,260361000,NormalDistributionWithDups,2,ParallelRadixSort,7,407851000,NormalDistributionWithDups,2,ParallelRadixSort,8,604401000,NormalDistributionWithDups,2,ParallelRadixSort,9,856621000,NormalDistributionWithDups,2,ParallelRadixSort,10,1171371000,NormalDistributionWithDups,2,StdSort,0,3211000,NormalDistributionWithDups,2,StdSort,1,4341000,NormalDistributionWithDups,2,StdSort,2,12301000,NormalDistributionWithDups,2,StdSort,3,35801000,NormalDistributionWithDups,2,StdSort,4,74651000,NormalDistributionWithDups,2,StdSort,5,138271000,NormalDistributionWithDups,2,StdSort,6,233191000,NormalDistributionWithDups,2,StdSort,7,365991000,NormalDistributionWithDups,2,StdSort,8,542501000,NormalDistributionWithDups,2,StdSort,9,769121000,NormalDistributionWithDups,2,StdSort,10,1052331000,NormalDistributionWithDups,3,ParallelSort,0,4041000,NormalDistributionWithDups,3,ParallelSort,1,5321000,NormalDistributionWithDups,3,ParallelSort,2,15141000,NormalDistributionWithDups,3,ParallelSort,3,44231000,NormalDistributionWithDups,3,ParallelSort,4,92361000,NormalDistributionWithDups,3,ParallelSort,5,171021000,NormalDistributionWithDups,3,ParallelSort,6,288671000,NormalDistributionWithDups,3,ParallelSort,7,453111000,NormalDistributionWithDups,3,ParallelSort,8,671661000,NormalDistributionWithDups,3,ParallelSort,9,952171000,NormalDistributionWithDups,3,ParallelSort,10,1303091000,NormalDistributionWithDups,3,ParallelBufferedSort,0,4041000,NormalDistributionWithDups,3,ParallelBufferedSort,1,5321000,NormalDistributionWithDups,3,ParallelBufferedSort,2,15121000,NormalDistributionWithDups,3,ParallelBufferedSort,3,44711000,NormalDistributionWithDups,3,ParallelBufferedSort,4,92461000,NormalDistributionWithDups,3,ParallelBufferedSort,5,171321000,NormalDistributionWithDups,3,ParallelBufferedSort,6,288911000,NormalDistributionWithDups,3,ParallelBufferedSort,7,453581000,NormalDistributionWithDups,3,ParallelBufferedSort,8,671601000,NormalDistributionWithDups,3,ParallelBufferedSort,9,952131000,NormalDistributionWithDups,3,ParallelBufferedSort,10,1302961000,NormalDistributionWithDups,3,ParallelRadixSort,0,5061000,NormalDistributionWithDups,3,ParallelRadixSort,1,7361000,NormalDistributionWithDups,3,ParallelRadixSort,2,17081000,NormalDistributionWithDups,3,ParallelRadixSort,3,47131000,NormalDistributionWithDups,3,ParallelRadixSort,4,96441000,NormalDistributionWithDups,3,ParallelRadixSort,5,178161000,NormalDistributionWithDups,3,ParallelRadixSort,6,300201000,NormalDistributionWithDups,3,ParallelRadixSort,7,470181000,NormalDistributionWithDups,3,ParallelRadixSort,8,696591000,NormalDistributionWithDups,3,ParallelRadixSort,9,987571000,NormalDistributionWithDups,3,ParallelRadixSort,10,1350501000,NormalDistributionWithDups,3,StdSort,0,7101000,NormalDistributionWithDups,3,StdSort,1,5261000,NormalDistributionWithDups,3,StdSort,2,15061000,NormalDistributionWithDups,3,StdSort,3,44261000,NormalDistributionWithDups,3,StdSort,4,92311000,NormalDistributionWithDups,3,StdSort,5,171031000,NormalDistributionWithDups,3,StdSort,6,288701000,NormalDistributionWithDups,3,StdSort,7,453061000,NormalDistributionWithDups,3,StdSort,8,671491000,NormalDistributionWithDups,3,StdSort,9,952011000,NormalDistributionWithDups,3,StdSort,10,1302681000,NormalDistributionWithDups,4,ParallelSort,0,2961000,NormalDistributionWithDups,4,ParallelSort,1,4181000,NormalDistributionWithDups,4,ParallelSort,2,11601000,NormalDistributionWithDups,4,ParallelSort,3,34071000,NormalDistributionWithDups,4,ParallelSort,4,70331000,NormalDistributionWithDups,4,ParallelSort,5,130291000,NormalDistributionWithDups,4,ParallelSort,6,219771000,NormalDistributionWithDups,4,ParallelSort,7,345071000,NormalDistributionWithDups,4,ParallelSort,8,511211000,NormalDistributionWithDups,4,ParallelSort,9,724821000,NormalDistributionWithDups,4,ParallelSort,10,991671000,NormalDistributionWithDups,4,ParallelBufferedSort,0,3131000,NormalDistributionWithDups,4,ParallelBufferedSort,1,4211000,NormalDistributionWithDups,4,ParallelBufferedSort,2,11661000,NormalDistributionWithDups,4,ParallelBufferedSort,3,34021000,NormalDistributionWithDups,4,ParallelBufferedSort,4,70411000,NormalDistributionWithDups,4,ParallelBufferedSort,5,130271000,NormalDistributionWithDups,4,ParallelBufferedSort,6,219871000,NormalDistributionWithDups,4,ParallelBufferedSort,7,344921000,NormalDistributionWithDups,4,ParallelBufferedSort,8,511311000,NormalDistributionWithDups,4,ParallelBufferedSort,9,725011000,NormalDistributionWithDups,4,ParallelBufferedSort,10,991711000,NormalDistributionWithDups,4,ParallelRadixSort,0,4801000,NormalDistributionWithDups,4,ParallelRadixSort,1,6591000,NormalDistributionWithDups,4,ParallelRadixSort,2,14411000,NormalDistributionWithDups,4,ParallelRadixSort,3,38851000,NormalDistributionWithDups,4,ParallelRadixSort,4,79081000,NormalDistributionWithDups,4,ParallelRadixSort,5,145741000,NormalDistributionWithDups,4,ParallelRadixSort,6,245151000,NormalDistributionWithDups,4,ParallelRadixSort,7,383761000,NormalDistributionWithDups,4,ParallelRadixSort,8,568341000,NormalDistributionWithDups,4,ParallelRadixSort,9,805891000,NormalDistributionWithDups,4,ParallelRadixSort,10,1101331000,NormalDistributionWithDups,4,StdSort,0,3031000,NormalDistributionWithDups,4,StdSort,1,4081000,NormalDistributionWithDups,4,StdSort,2,11571000,NormalDistributionWithDups,4,StdSort,3,33761000,NormalDistributionWithDups,4,StdSort,4,70261000,NormalDistributionWithDups,4,StdSort,5,130491000,NormalDistributionWithDups,4,StdSort,6,219891000,NormalDistributionWithDups,4,StdSort,7,345041000,NormalDistributionWithDups,4,StdSort,8,511261000,NormalDistributionWithDups,4,StdSort,9,724831000,NormalDistributionWithDups,4,StdSort,10,991581000,NormalDistributionWithDups,5,ParallelSort,0,5141000,NormalDistributionWithDups,5,ParallelSort,1,6851000,NormalDistributionWithDups,5,ParallelSort,2,18751000,NormalDistributionWithDups,5,ParallelSort,3,54541000,NormalDistributionWithDups,5,ParallelSort,4,113651000,NormalDistributionWithDups,5,ParallelSort,5,210531000,NormalDistributionWithDups,5,ParallelSort,6,355871000,NormalDistributionWithDups,5,ParallelSort,7,557461000,NormalDistributionWithDups,5,ParallelSort,8,826101000,NormalDistributionWithDups,5,ParallelSort,9,1171161000,NormalDistributionWithDups,5,ParallelSort,10,1602751000,NormalDistributionWithDups,5,ParallelBufferedSort,0,5281000,NormalDistributionWithDups,5,ParallelBufferedSort,1,6861000,NormalDistributionWithDups,5,ParallelBufferedSort,2,18751000,NormalDistributionWithDups,5,ParallelBufferedSort,3,54671000,NormalDistributionWithDups,5,ParallelBufferedSort,4,113571000,NormalDistributionWithDups,5,ParallelBufferedSort,5,210541000,NormalDistributionWithDups,5,ParallelBufferedSort,6,355171000,NormalDistributionWithDups,5,ParallelBufferedSort,7,557971000,NormalDistributionWithDups,5,ParallelBufferedSort,8,826121000,NormalDistributionWithDups,5,ParallelBufferedSort,9,1171521000,NormalDistributionWithDups,5,ParallelBufferedSort,10,1602491000,NormalDistributionWithDups,5,ParallelRadixSort,0,6471000,NormalDistributionWithDups,5,ParallelRadixSort,1,9661000,NormalDistributionWithDups,5,ParallelRadixSort,2,21701000,NormalDistributionWithDups,5,ParallelRadixSort,3,59051000,NormalDistributionWithDups,5,ParallelRadixSort,4,121601000,NormalDistributionWithDups,5,ParallelRadixSort,5,224391000,NormalDistributionWithDups,5,ParallelRadixSort,6,377911000,NormalDistributionWithDups,5,ParallelRadixSort,7,592111000,NormalDistributionWithDups,5,ParallelRadixSort,8,876781000,NormalDistributionWithDups,5,ParallelRadixSort,9,1242821000,NormalDistributionWithDups,5,ParallelRadixSort,10,1699991000,NormalDistributionWithDups,5,StdSort,0,6911000,NormalDistributionWithDups,5,StdSort,1,6641000,NormalDistributionWithDups,5,StdSort,2,18701000,NormalDistributionWithDups,5,StdSort,3,54641000,NormalDistributionWithDups,5,StdSort,4,113631000,NormalDistributionWithDups,5,StdSort,5,210511000,NormalDistributionWithDups,5,StdSort,6,355241000,NormalDistributionWithDups,5,StdSort,7,557411000,NormalDistributionWithDups,5,StdSort,8,826051000,NormalDistributionWithDups,5,StdSort,9,1171271000,NormalDistributionWithDups,5,StdSort,10,1602521000,NormalDistributionWithDups,6,ParallelSort,0,2951000,NormalDistributionWithDups,6,ParallelSort,1,4161000,NormalDistributionWithDups,6,ParallelSort,2,11741000,NormalDistributionWithDups,6,ParallelSort,3,34191000,NormalDistributionWithDups,6,ParallelSort,4,71181000,NormalDistributionWithDups,6,ParallelSort,5,131731000,NormalDistributionWithDups,6,ParallelSort,6,222291000,NormalDistributionWithDups,6,ParallelSort,7,348981000,NormalDistributionWithDups,6,ParallelSort,8,517151000,NormalDistributionWithDups,6,ParallelSort,9,733131000,NormalDistributionWithDups,6,ParallelSort,10,1003271000,NormalDistributionWithDups,6,ParallelBufferedSort,0,3161000,NormalDistributionWithDups,6,ParallelBufferedSort,1,4141000,NormalDistributionWithDups,6,ParallelBufferedSort,2,11731000,NormalDistributionWithDups,6,ParallelBufferedSort,3,34141000,NormalDistributionWithDups,6,ParallelBufferedSort,4,71171000,NormalDistributionWithDups,6,ParallelBufferedSort,5,131981000,NormalDistributionWithDups,6,ParallelBufferedSort,6,222341000,NormalDistributionWithDups,6,ParallelBufferedSort,7,348961000,NormalDistributionWithDups,6,ParallelBufferedSort,8,517201000,NormalDistributionWithDups,6,ParallelBufferedSort,9,733141000,NormalDistributionWithDups,6,ParallelBufferedSort,10,1003171000,NormalDistributionWithDups,6,ParallelRadixSort,0,5561000,NormalDistributionWithDups,6,ParallelRadixSort,1,7621000,NormalDistributionWithDups,6,ParallelRadixSort,2,14951000,NormalDistributionWithDups,6,ParallelRadixSort,3,38391000,NormalDistributionWithDups,6,ParallelRadixSort,4,78391000,NormalDistributionWithDups,6,ParallelRadixSort,5,144641000,NormalDistributionWithDups,6,ParallelRadixSort,6,242691000,NormalDistributionWithDups,6,ParallelRadixSort,7,380041000,NormalDistributionWithDups,6,ParallelRadixSort,8,562791000,NormalDistributionWithDups,6,ParallelRadixSort,9,797461000,NormalDistributionWithDups,6,ParallelRadixSort,10,1090141000,NormalDistributionWithDups,6,StdSort,0,3031000,NormalDistributionWithDups,6,StdSort,1,4091000,NormalDistributionWithDups,6,StdSort,2,11711000,NormalDistributionWithDups,6,StdSort,3,34181000,NormalDistributionWithDups,6,StdSort,4,71081000,NormalDistributionWithDups,6,StdSort,5,131711000,NormalDistributionWithDups,6,StdSort,6,222361000,NormalDistributionWithDups,6,StdSort,7,348971000,NormalDistributionWithDups,6,StdSort,8,517091000,NormalDistributionWithDups,6,StdSort,9,733131000,NormalDistributionWithDups,6,StdSort,10,1004121000,NormalDistributionWithDups,7,ParallelSort,0,3831000,NormalDistributionWithDups,7,ParallelSort,1,5361000,NormalDistributionWithDups,7,ParallelSort,2,15201000,NormalDistributionWithDups,7,ParallelSort,3,44601000,NormalDistributionWithDups,7,ParallelSort,4,93081000,NormalDistributionWithDups,7,ParallelSort,5,172561000,NormalDistributionWithDups,7,ParallelSort,6,291221000,NormalDistributionWithDups,7,ParallelSort,7,457091000,NormalDistributionWithDups,7,ParallelSort,8,677541000,NormalDistributionWithDups,7,ParallelSort,9,960471000,NormalDistributionWithDups,7,ParallelSort,10,1314401000,NormalDistributionWithDups,7,ParallelBufferedSort,0,4071000,NormalDistributionWithDups,7,ParallelBufferedSort,1,5401000,NormalDistributionWithDups,7,ParallelBufferedSort,2,15291000,NormalDistributionWithDups,7,ParallelBufferedSort,3,44601000,NormalDistributionWithDups,7,ParallelBufferedSort,4,93111000,NormalDistributionWithDups,7,ParallelBufferedSort,5,172651000,NormalDistributionWithDups,7,ParallelBufferedSort,6,291291000,NormalDistributionWithDups,7,ParallelBufferedSort,7,457321000,NormalDistributionWithDups,7,ParallelBufferedSort,8,677681000,NormalDistributionWithDups,7,ParallelBufferedSort,9,960481000,NormalDistributionWithDups,7,ParallelBufferedSort,10,1314331000,NormalDistributionWithDups,7,ParallelRadixSort,0,6571000,NormalDistributionWithDups,7,ParallelRadixSort,1,9691000,NormalDistributionWithDups,7,ParallelRadixSort,2,18531000,NormalDistributionWithDups,7,ParallelRadixSort,3,47541000,NormalDistributionWithDups,7,ParallelRadixSort,4,97491000,NormalDistributionWithDups,7,ParallelRadixSort,5,179621000,NormalDistributionWithDups,7,ParallelRadixSort,6,301951000,NormalDistributionWithDups,7,ParallelRadixSort,7,472941000,NormalDistributionWithDups,7,ParallelRadixSort,8,700161000,NormalDistributionWithDups,7,ParallelRadixSort,9,992381000,NormalDistributionWithDups,7,ParallelRadixSort,10,1356941000,NormalDistributionWithDups,7,StdSort,0,3941000,NormalDistributionWithDups,7,StdSort,1,5351000,NormalDistributionWithDups,7,StdSort,2,15241000,NormalDistributionWithDups,7,StdSort,3,44561000,NormalDistributionWithDups,7,StdSort,4,93011000,NormalDistributionWithDups,7,StdSort,5,172501000,NormalDistributionWithDups,7,StdSort,6,291141000,NormalDistributionWithDups,7,StdSort,7,457051000,NormalDistributionWithDups,7,StdSort,8,677391000,NormalDistributionWithDups,7,StdSort,9,960391000,NormalDistributionWithDups,7,StdSort,10,1314141000,NormalDistributionWithDups,8,ParallelSort,0,3611000,NormalDistributionWithDups,8,ParallelSort,1,4941000,NormalDistributionWithDups,8,ParallelSort,2,14141000,NormalDistributionWithDups,8,ParallelSort,3,41471000,NormalDistributionWithDups,8,ParallelSort,4,86361000,NormalDistributionWithDups,8,ParallelSort,5,160251000,NormalDistributionWithDups,8,ParallelSort,6,270311000,NormalDistributionWithDups,8,ParallelSort,7,424301000,NormalDistributionWithDups,8,ParallelSort,8,628831000,NormalDistributionWithDups,8,ParallelSort,9,891411000,NormalDistributionWithDups,8,ParallelSort,10,1220001000,NormalDistributionWithDups,8,ParallelBufferedSort,0,3811000,NormalDistributionWithDups,8,ParallelBufferedSort,1,5091000,NormalDistributionWithDups,8,ParallelBufferedSort,2,14061000,NormalDistributionWithDups,8,ParallelBufferedSort,3,41911000,NormalDistributionWithDups,8,ParallelBufferedSort,4,86811000,NormalDistributionWithDups,8,ParallelBufferedSort,5,160221000,NormalDistributionWithDups,8,ParallelBufferedSort,6,270271000,NormalDistributionWithDups,8,ParallelBufferedSort,7,424191000,NormalDistributionWithDups,8,ParallelBufferedSort,8,628801000,NormalDistributionWithDups,8,ParallelBufferedSort,9,891861000,NormalDistributionWithDups,8,ParallelBufferedSort,10,1219711000,NormalDistributionWithDups,8,ParallelRadixSort,0,12511000,NormalDistributionWithDups,8,ParallelRadixSort,1,12301000,NormalDistributionWithDups,8,ParallelRadixSort,2,16851000,NormalDistributionWithDups,8,ParallelRadixSort,3,43251000,NormalDistributionWithDups,8,ParallelRadixSort,4,87881000,NormalDistributionWithDups,8,ParallelRadixSort,5,162161000,NormalDistributionWithDups,8,ParallelRadixSort,6,273671000,NormalDistributionWithDups,8,ParallelRadixSort,7,426651000,NormalDistributionWithDups,8,ParallelRadixSort,8,631121000,NormalDistributionWithDups,8,ParallelRadixSort,9,894231000,NormalDistributionWithDups,8,ParallelRadixSort,10,1224751000,NormalDistributionWithDups,8,StdSort,0,3531000,NormalDistributionWithDups,8,StdSort,1,4921000,NormalDistributionWithDups,8,StdSort,2,14081000,NormalDistributionWithDups,8,StdSort,3,41381000,NormalDistributionWithDups,8,StdSort,4,86371000,NormalDistributionWithDups,8,StdSort,5,160111000,NormalDistributionWithDups,8,StdSort,6,269911000,NormalDistributionWithDups,8,StdSort,7,423531000,NormalDistributionWithDups,8,StdSort,8,629051000,NormalDistributionWithDups,8,StdSort,9,891381000,NormalDistributionWithDups,8,StdSort,10,1219641000,SawTooth,1,ParallelSort,0,1671000,SawTooth,1,ParallelSort,1,2431000,SawTooth,1,ParallelSort,2,6831000,SawTooth,1,ParallelSort,3,20801000,SawTooth,1,ParallelSort,4,43151000,SawTooth,1,ParallelSort,5,80051000,SawTooth,1,ParallelSort,6,135111000,SawTooth,1,ParallelSort,7,212001000,SawTooth,1,ParallelSort,8,313991000,SawTooth,1,ParallelSort,9,445231000,SawTooth,1,ParallelSort,10,609131000,SawTooth,1,ParallelBufferedSort,0,1821000,SawTooth,1,ParallelBufferedSort,1,2421000,SawTooth,1,ParallelBufferedSort,2,6821000,SawTooth,1,ParallelBufferedSort,3,20701000,SawTooth,1,ParallelBufferedSort,4,43121000,SawTooth,1,ParallelBufferedSort,5,79981000,SawTooth,1,ParallelBufferedSort,6,135131000,SawTooth,1,ParallelBufferedSort,7,211831000,SawTooth,1,ParallelBufferedSort,8,314021000,SawTooth,1,ParallelBufferedSort,9,445151000,SawTooth,1,ParallelBufferedSort,10,609141000,SawTooth,1,ParallelRadixSort,0,3221000,SawTooth,1,ParallelRadixSort,1,4801000,SawTooth,1,ParallelRadixSort,2,11891000,SawTooth,1,ParallelRadixSort,3,33281000,SawTooth,1,ParallelRadixSort,4,69201000,SawTooth,1,ParallelRadixSort,5,128271000,SawTooth,1,ParallelRadixSort,6,216571000,SawTooth,1,ParallelRadixSort,7,339591000,SawTooth,1,ParallelRadixSort,8,503361000,SawTooth,1,ParallelRadixSort,9,713721000,SawTooth,1,ParallelRadixSort,10,976521000,SawTooth,1,StdSort,0,1701000,SawTooth,1,StdSort,1,2391000,SawTooth,1,StdSort,2,6811000,SawTooth,1,StdSort,3,20601000,SawTooth,1,StdSort,4,43051000,SawTooth,1,StdSort,5,79911000,SawTooth,1,StdSort,6,134841000,SawTooth,1,StdSort,7,211761000,SawTooth,1,StdSort,8,313931000,SawTooth,1,StdSort,9,445121000,SawTooth,1,StdSort,10,609111000,SawTooth,2,ParallelSort,0,1741000,SawTooth,2,ParallelSort,1,2391000,SawTooth,2,ParallelSort,2,6861000,SawTooth,2,ParallelSort,3,20651000,SawTooth,2,ParallelSort,4,43131000,SawTooth,2,ParallelSort,5,80001000,SawTooth,2,ParallelSort,6,134941000,SawTooth,2,ParallelSort,7,211821000,SawTooth,2,ParallelSort,8,313971000,SawTooth,2,ParallelSort,9,445211000,SawTooth,2,ParallelSort,10,609141000,SawTooth,2,ParallelBufferedSort,0,1731000,SawTooth,2,ParallelBufferedSort,1,2371000,SawTooth,2,ParallelBufferedSort,2,6851000,SawTooth,2,ParallelBufferedSort,3,20641000,SawTooth,2,ParallelBufferedSort,4,43121000,SawTooth,2,ParallelBufferedSort,5,79951000,SawTooth,2,ParallelBufferedSort,6,134991000,SawTooth,2,ParallelBufferedSort,7,211851000,SawTooth,2,ParallelBufferedSort,8,314021000,SawTooth,2,ParallelBufferedSort,9,445311000,SawTooth,2,ParallelBufferedSort,10,609231000,SawTooth,2,ParallelRadixSort,0,3381000,SawTooth,2,ParallelRadixSort,1,5011000,SawTooth,2,ParallelRadixSort,2,12041000,SawTooth,2,ParallelRadixSort,3,32991000,SawTooth,2,ParallelRadixSort,4,67781000,SawTooth,2,ParallelRadixSort,5,125221000,SawTooth,2,ParallelRadixSort,6,210741000,SawTooth,2,ParallelRadixSort,7,330451000,SawTooth,2,ParallelRadixSort,8,489481000,SawTooth,2,ParallelRadixSort,9,693821000,SawTooth,2,ParallelRadixSort,10,948991000,SawTooth,2,StdSort,0,1701000,SawTooth,2,StdSort,1,2391000,SawTooth,2,StdSort,2,6811000,SawTooth,2,StdSort,3,20601000,SawTooth,2,StdSort,4,43051000,SawTooth,2,StdSort,5,79901000,SawTooth,2,StdSort,6,134841000,SawTooth,2,StdSort,7,211761000,SawTooth,2,StdSort,8,313911000,SawTooth,2,StdSort,9,445081000,SawTooth,2,StdSort,10,609061000,SawTooth,3,ParallelSort,0,1751000,SawTooth,3,ParallelSort,1,2421000,SawTooth,3,ParallelSort,2,6821000,SawTooth,3,ParallelSort,3,20781000,SawTooth,3,ParallelSort,4,43161000,SawTooth,3,ParallelSort,5,79991000,SawTooth,3,ParallelSort,6,134911000,SawTooth,3,ParallelSort,7,211921000,SawTooth,3,ParallelSort,8,314121000,SawTooth,3,ParallelSort,9,445171000,SawTooth,3,ParallelSort,10,609181000,SawTooth,3,ParallelBufferedSort,0,1781000,SawTooth,3,ParallelBufferedSort,1,2391000,SawTooth,3,ParallelBufferedSort,2,6841000,SawTooth,3,ParallelBufferedSort,3,20781000,SawTooth,3,ParallelBufferedSort,4,43091000,SawTooth,3,ParallelBufferedSort,5,79961000,SawTooth,3,ParallelBufferedSort,6,135041000,SawTooth,3,ParallelBufferedSort,7,211951000,SawTooth,3,ParallelBufferedSort,8,314051000,SawTooth,3,ParallelBufferedSort,9,445271000,SawTooth,3,ParallelBufferedSort,10,609191000,SawTooth,3,ParallelRadixSort,0,3561000,SawTooth,3,ParallelRadixSort,1,5231000,SawTooth,3,ParallelRadixSort,2,12081000,SawTooth,3,ParallelRadixSort,3,32871000,SawTooth,3,ParallelRadixSort,4,67551000,SawTooth,3,ParallelRadixSort,5,124301000,SawTooth,3,ParallelRadixSort,6,209011000,SawTooth,3,ParallelRadixSort,7,327101000,SawTooth,3,ParallelRadixSort,8,485061000,SawTooth,3,ParallelRadixSort,9,687321000,SawTooth,3,ParallelRadixSort,10,939751000,SawTooth,3,StdSort,0,1701000,SawTooth,3,StdSort,1,2391000,SawTooth,3,StdSort,2,6811000,SawTooth,3,StdSort,3,20601000,SawTooth,3,StdSort,4,43051000,SawTooth,3,StdSort,5,79911000,SawTooth,3,StdSort,6,134831000,SawTooth,3,StdSort,7,211751000,SawTooth,3,StdSort,8,313911000,SawTooth,3,StdSort,9,445141000,SawTooth,3,StdSort,10,609111000,SawTooth,4,ParallelSort,0,1671000,SawTooth,4,ParallelSort,1,2381000,SawTooth,4,ParallelSort,2,6831000,SawTooth,4,ParallelSort,3,20801000,SawTooth,4,ParallelSort,4,43131000,SawTooth,4,ParallelSort,5,79951000,SawTooth,4,ParallelSort,6,134941000,SawTooth,4,ParallelSort,7,211881000,SawTooth,4,ParallelSort,8,314041000,SawTooth,4,ParallelSort,9,445231000,SawTooth,4,ParallelSort,10,609261000,SawTooth,4,ParallelBufferedSort,0,1811000,SawTooth,4,ParallelBufferedSort,1,2391000,SawTooth,4,ParallelBufferedSort,2,6851000,SawTooth,4,ParallelBufferedSort,3,20651000,SawTooth,4,ParallelBufferedSort,4,43131000,SawTooth,4,ParallelBufferedSort,5,79961000,SawTooth,4,ParallelBufferedSort,6,134981000,SawTooth,4,ParallelBufferedSort,7,211871000,SawTooth,4,ParallelBufferedSort,8,313981000,SawTooth,4,ParallelBufferedSort,9,445201000,SawTooth,4,ParallelBufferedSort,10,609151000,SawTooth,4,ParallelRadixSort,0,3911000,SawTooth,4,ParallelRadixSort,1,5781000,SawTooth,4,ParallelRadixSort,2,12281000,SawTooth,4,ParallelRadixSort,3,32821000,SawTooth,4,ParallelRadixSort,4,67201000,SawTooth,4,ParallelRadixSort,5,124021000,SawTooth,4,ParallelRadixSort,6,208271000,SawTooth,4,ParallelRadixSort,7,326181000,SawTooth,4,ParallelRadixSort,8,482851000,SawTooth,4,ParallelRadixSort,9,683881000,SawTooth,4,ParallelRadixSort,10,935251000,SawTooth,4,StdSort,0,2821000,SawTooth,4,StdSort,1,2391000,SawTooth,4,StdSort,2,6811000,SawTooth,4,StdSort,3,20601000,SawTooth,4,StdSort,4,43051000,SawTooth,4,StdSort,5,79921000,SawTooth,4,StdSort,6,134881000,SawTooth,4,StdSort,7,211801000,SawTooth,4,StdSort,8,313931000,SawTooth,4,StdSort,9,445131000,SawTooth,4,StdSort,10,609111000,SawTooth,5,ParallelSort,0,1671000,SawTooth,5,ParallelSort,1,2391000,SawTooth,5,ParallelSort,2,6841000,SawTooth,5,ParallelSort,3,20751000,SawTooth,5,ParallelSort,4,43291000,SawTooth,5,ParallelSort,5,79971000,SawTooth,5,ParallelSort,6,135041000,SawTooth,5,ParallelSort,7,211831000,SawTooth,5,ParallelSort,8,313971000,SawTooth,5,ParallelSort,9,445201000,SawTooth,5,ParallelSort,10,609261000,SawTooth,5,ParallelBufferedSort,0,1781000,SawTooth,5,ParallelBufferedSort,1,2411000,SawTooth,5,ParallelBufferedSort,2,6831000,SawTooth,5,ParallelBufferedSort,3,20711000,SawTooth,5,ParallelBufferedSort,4,43151000,SawTooth,5,ParallelBufferedSort,5,79931000,SawTooth,5,ParallelBufferedSort,6,135001000,SawTooth,5,ParallelBufferedSort,7,211821000,SawTooth,5,ParallelBufferedSort,8,314041000,SawTooth,5,ParallelBufferedSort,9,445201000,SawTooth,5,ParallelBufferedSort,10,609201000,SawTooth,5,ParallelRadixSort,0,4041000,SawTooth,5,ParallelRadixSort,1,5631000,SawTooth,5,ParallelRadixSort,2,12421000,SawTooth,5,ParallelRadixSort,3,32901000,SawTooth,5,ParallelRadixSort,4,67191000,SawTooth,5,ParallelRadixSort,5,123681000,SawTooth,5,ParallelRadixSort,6,207921000,SawTooth,5,ParallelRadixSort,7,325471000,SawTooth,5,ParallelRadixSort,8,481441000,SawTooth,5,ParallelRadixSort,9,682261000,SawTooth,5,ParallelRadixSort,10,932881000,SawTooth,5,StdSort,0,1701000,SawTooth,5,StdSort,1,2391000,SawTooth,5,StdSort,2,6811000,SawTooth,5,StdSort,3,20601000,SawTooth,5,StdSort,4,43051000,SawTooth,5,StdSort,5,79911000,SawTooth,5,StdSort,6,134941000,SawTooth,5,StdSort,7,211751000,SawTooth,5,StdSort,8,313911000,SawTooth,5,StdSort,9,445061000,SawTooth,5,StdSort,10,609071000,SawTooth,6,ParallelSort,0,1811000,SawTooth,6,ParallelSort,1,2461000,SawTooth,6,ParallelSort,2,6831000,SawTooth,6,ParallelSort,3,20851000,SawTooth,6,ParallelSort,4,43141000,SawTooth,6,ParallelSort,5,80111000,SawTooth,6,ParallelSort,6,135131000,SawTooth,6,ParallelSort,7,212021000,SawTooth,6,ParallelSort,8,314151000,SawTooth,6,ParallelSort,9,445311000,SawTooth,6,ParallelSort,10,609231000,SawTooth,6,ParallelBufferedSort,0,1791000,SawTooth,6,ParallelBufferedSort,1,2391000,SawTooth,6,ParallelBufferedSort,2,6831000,SawTooth,6,ParallelBufferedSort,3,20671000,SawTooth,6,ParallelBufferedSort,4,43121000,SawTooth,6,ParallelBufferedSort,5,79961000,SawTooth,6,ParallelBufferedSort,6,134921000,SawTooth,6,ParallelBufferedSort,7,211861000,SawTooth,6,ParallelBufferedSort,8,314011000,SawTooth,6,ParallelBufferedSort,9,445291000,SawTooth,6,ParallelBufferedSort,10,609271000,SawTooth,6,ParallelRadixSort,0,4051000,SawTooth,6,ParallelRadixSort,1,10591000,SawTooth,6,ParallelRadixSort,2,12581000,SawTooth,6,ParallelRadixSort,3,32981000,SawTooth,6,ParallelRadixSort,4,67161000,SawTooth,6,ParallelRadixSort,5,123511000,SawTooth,6,ParallelRadixSort,6,207461000,SawTooth,6,ParallelRadixSort,7,324601000,SawTooth,6,ParallelRadixSort,8,480681000,SawTooth,6,ParallelRadixSort,9,681191000,SawTooth,6,ParallelRadixSort,10,931141000,SawTooth,6,StdSort,0,1701000,SawTooth,6,StdSort,1,2391000,SawTooth,6,StdSort,2,6811000,SawTooth,6,StdSort,3,20641000,SawTooth,6,StdSort,4,43091000,SawTooth,6,StdSort,5,79931000,SawTooth,6,StdSort,6,134881000,SawTooth,6,StdSort,7,211791000,SawTooth,6,StdSort,8,313911000,SawTooth,6,StdSort,9,445101000,SawTooth,6,StdSort,10,609091000,SawTooth,7,ParallelSort,0,1731000,SawTooth,7,ParallelSort,1,2391000,SawTooth,7,ParallelSort,2,6841000,SawTooth,7,ParallelSort,3,20831000,SawTooth,7,ParallelSort,4,43241000,SawTooth,7,ParallelSort,5,79971000,SawTooth,7,ParallelSort,6,135031000,SawTooth,7,ParallelSort,7,211841000,SawTooth,7,ParallelSort,8,314051000,SawTooth,7,ParallelSort,9,445261000,SawTooth,7,ParallelSort,10,609381000,SawTooth,7,ParallelBufferedSort,0,1811000,SawTooth,7,ParallelBufferedSort,1,2391000,SawTooth,7,ParallelBufferedSort,2,6831000,SawTooth,7,ParallelBufferedSort,3,20681000,SawTooth,7,ParallelBufferedSort,4,43161000,SawTooth,7,ParallelBufferedSort,5,80021000,SawTooth,7,ParallelBufferedSort,6,135061000,SawTooth,7,ParallelBufferedSort,7,211861000,SawTooth,7,ParallelBufferedSort,8,314061000,SawTooth,7,ParallelBufferedSort,9,445311000,SawTooth,7,ParallelBufferedSort,10,609371000,SawTooth,7,ParallelRadixSort,0,5441000,SawTooth,7,ParallelRadixSort,1,12281000,SawTooth,7,ParallelRadixSort,2,12991000,SawTooth,7,ParallelRadixSort,3,33261000,SawTooth,7,ParallelRadixSort,4,67201000,SawTooth,7,ParallelRadixSort,5,123791000,SawTooth,7,ParallelRadixSort,6,207441000,SawTooth,7,ParallelRadixSort,7,324391000,SawTooth,7,ParallelRadixSort,8,480461000,SawTooth,7,ParallelRadixSort,9,680461000,SawTooth,7,ParallelRadixSort,10,930081000,SawTooth,7,StdSort,0,1701000,SawTooth,7,StdSort,1,2361000,SawTooth,7,StdSort,2,6821000,SawTooth,7,StdSort,3,20641000,SawTooth,7,StdSort,4,43091000,SawTooth,7,StdSort,5,79931000,SawTooth,7,StdSort,6,134881000,SawTooth,7,StdSort,7,211791000,SawTooth,7,StdSort,8,313921000,SawTooth,7,StdSort,9,445111000,SawTooth,7,StdSort,10,609081000,SawTooth,8,ParallelSort,0,1811000,SawTooth,8,ParallelSort,1,2411000,SawTooth,8,ParallelSort,2,6861000,SawTooth,8,ParallelSort,3,20761000,SawTooth,8,ParallelSort,4,43121000,SawTooth,8,ParallelSort,5,80031000,SawTooth,8,ParallelSort,6,135081000,SawTooth,8,ParallelSort,7,211981000,SawTooth,8,ParallelSort,8,314061000,SawTooth,8,ParallelSort,9,445251000,SawTooth,8,ParallelSort,10,609151000,SawTooth,8,ParallelBufferedSort,0,1731000,SawTooth,8,ParallelBufferedSort,1,2401000,SawTooth,8,ParallelBufferedSort,2,6871000,SawTooth,8,ParallelBufferedSort,3,20671000,SawTooth,8,ParallelBufferedSort,4,43171000,SawTooth,8,ParallelBufferedSort,5,80011000,SawTooth,8,ParallelBufferedSort,6,134991000,SawTooth,8,ParallelBufferedSort,7,211961000,SawTooth,8,ParallelBufferedSort,8,314051000,SawTooth,8,ParallelBufferedSort,9,445251000,SawTooth,8,ParallelBufferedSort,10,609131000,SawTooth,8,ParallelRadixSort,0,10741000,SawTooth,8,ParallelRadixSort,1,18371000,SawTooth,8,ParallelRadixSort,2,13441000,SawTooth,8,ParallelRadixSort,3,34641000,SawTooth,8,ParallelRadixSort,4,67041000,SawTooth,8,ParallelRadixSort,5,123241000,SawTooth,8,ParallelRadixSort,6,207011000,SawTooth,8,ParallelRadixSort,7,323981000,SawTooth,8,ParallelRadixSort,8,479701000,SawTooth,8,ParallelRadixSort,9,679291000,SawTooth,8,ParallelRadixSort,10,929261000,SawTooth,8,StdSort,0,1651000,SawTooth,8,StdSort,1,2391000,SawTooth,8,StdSort,2,6811000,SawTooth,8,StdSort,3,20601000,SawTooth,8,StdSort,4,43011000,SawTooth,8,StdSort,5,79771000,SawTooth,8,StdSort,6,134731000,SawTooth,8,StdSort,7,211431000,SawTooth,8,StdSort,8,313471000,SawTooth,8,StdSort,9,445001000,SawTooth,8,StdSort,10,6090810000,Random,1,ParallelSort,0,355910000,Random,1,ParallelSort,1,502710000,Random,1,ParallelSort,2,1376410000,Random,1,ParallelSort,3,3965510000,Random,1,ParallelSort,4,8288110000,Random,1,ParallelSort,5,15376010000,Random,1,ParallelSort,6,25951310000,Random,1,ParallelSort,7,40739710000,Random,1,ParallelSort,8,60389210000,Random,1,ParallelSort,9,85618410000,Random,1,ParallelSort,10,117166810000,Random,1,ParallelBufferedSort,0,350210000,Random,1,ParallelBufferedSort,1,505210000,Random,1,ParallelBufferedSort,2,1376010000,Random,1,ParallelBufferedSort,3,3965710000,Random,1,ParallelBufferedSort,4,8288810000,Random,1,ParallelBufferedSort,5,15373110000,Random,1,ParallelBufferedSort,6,25947310000,Random,1,ParallelBufferedSort,7,40768910000,Random,1,ParallelBufferedSort,8,60406910000,Random,1,ParallelBufferedSort,9,85628410000,Random,1,ParallelBufferedSort,10,117160110000,Random,1,ParallelRadixSort,0,302010000,Random,1,ParallelRadixSort,1,463710000,Random,1,ParallelRadixSort,2,1163010000,Random,1,ParallelRadixSort,3,3303810000,Random,1,ParallelRadixSort,4,6880710000,Random,1,ParallelRadixSort,5,12776610000,Random,1,ParallelRadixSort,6,21574910000,Random,1,ParallelRadixSort,7,33855510000,Random,1,ParallelRadixSort,8,50189210000,Random,1,ParallelRadixSort,9,71181710000,Random,1,ParallelRadixSort,10,97370810000,Random,1,StdSort,0,351010000,Random,1,StdSort,1,491910000,Random,1,StdSort,2,1374110000,Random,1,StdSort,3,3964810000,Random,1,StdSort,4,8288110000,Random,1,StdSort,5,15376610000,Random,1,StdSort,6,25961110000,Random,1,StdSort,7,40739110000,Random,1,StdSort,8,60388210000,Random,1,StdSort,9,85618710000,Random,1,StdSort,10,117157310000,Random,2,ParallelSort,0,190610000,Random,2,ParallelSort,1,251110000,Random,2,ParallelSort,2,614910000,Random,2,ParallelSort,3,1722310000,Random,2,ParallelSort,4,3571610000,Random,2,ParallelSort,5,6617510000,Random,2,ParallelSort,6,11157510000,Random,2,ParallelSort,7,17508510000,Random,2,ParallelSort,8,25947610000,Random,2,ParallelSort,9,36783010000,Random,2,ParallelSort,10,50326810000,Random,2,ParallelBufferedSort,0,181910000,Random,2,ParallelBufferedSort,1,221610000,Random,2,ParallelBufferedSort,2,539710000,Random,2,ParallelBufferedSort,3,1493210000,Random,2,ParallelBufferedSort,4,3106710000,Random,2,ParallelBufferedSort,5,5717910000,Random,2,ParallelBufferedSort,6,9603310000,Random,2,ParallelBufferedSort,7,15040510000,Random,2,ParallelBufferedSort,8,22266310000,Random,2,ParallelBufferedSort,9,31544810000,Random,2,ParallelBufferedSort,10,43133710000,Random,2,ParallelRadixSort,0,310910000,Random,2,ParallelRadixSort,1,468010000,Random,2,ParallelRadixSort,2,1147910000,Random,2,ParallelRadixSort,3,3225010000,Random,2,ParallelRadixSort,4,6700110000,Random,2,ParallelRadixSort,5,12427810000,Random,2,ParallelRadixSort,6,20976810000,Random,2,ParallelRadixSort,7,32897810000,Random,2,ParallelRadixSort,8,48775310000,Random,2,ParallelRadixSort,9,69153310000,Random,2,ParallelRadixSort,10,94582410000,Random,2,StdSort,0,479710000,Random,2,StdSort,1,488910000,Random,2,StdSort,2,1365210000,Random,2,StdSort,3,3929210000,Random,2,StdSort,4,8210710000,Random,2,StdSort,5,15228610000,Random,2,StdSort,6,25702210000,Random,2,StdSort,7,40353310000,Random,2,StdSort,8,59817610000,Random,2,StdSort,9,84833510000,Random,2,StdSort,10,116075410000,Random,3,ParallelSort,0,188010000,Random,3,ParallelSort,1,241210000,Random,3,ParallelSort,2,578610000,Random,3,ParallelSort,3,1593810000,Random,3,ParallelSort,4,3284710000,Random,3,ParallelSort,5,6066310000,Random,3,ParallelSort,6,10218310000,Random,3,ParallelSort,7,16016410000,Random,3,ParallelSort,8,23726610000,Random,3,ParallelSort,9,33637410000,Random,3,ParallelSort,10,45997510000,Random,3,ParallelBufferedSort,0,140010000,Random,3,ParallelBufferedSort,1,139010000,Random,3,ParallelBufferedSort,2,335810000,Random,3,ParallelBufferedSort,3,926610000,Random,3,ParallelBufferedSort,4,1923710000,Random,3,ParallelBufferedSort,5,3556110000,Random,3,ParallelBufferedSort,6,6000310000,Random,3,ParallelBufferedSort,7,9380310000,Random,3,ParallelBufferedSort,8,13948710000,Random,3,ParallelBufferedSort,9,19677610000,Random,3,ParallelBufferedSort,10,27019910000,Random,3,ParallelRadixSort,0,309110000,Random,3,ParallelRadixSort,1,469510000,Random,3,ParallelRadixSort,2,1144410000,Random,3,ParallelRadixSort,3,3200110000,Random,3,ParallelRadixSort,4,6639910000,Random,3,ParallelRadixSort,5,12311510000,Random,3,ParallelRadixSort,6,20775010000,Random,3,ParallelRadixSort,7,32580610000,Random,3,ParallelRadixSort,8,48296410000,Random,3,ParallelRadixSort,9,68475210000,Random,3,ParallelRadixSort,10,93664010000,Random,3,StdSort,0,353710000,Random,3,StdSort,1,495110000,Random,3,StdSort,2,1379910000,Random,3,StdSort,3,3976610000,Random,3,StdSort,4,8311010000,Random,3,StdSort,5,15421710000,Random,3,StdSort,6,26023010000,Random,3,StdSort,7,40972410000,Random,3,StdSort,8,60580210000,Random,3,StdSort,9,85875610000,Random,3,StdSort,10,117492610000,Random,4,ParallelSort,0,157510000,Random,4,ParallelSort,1,206610000,Random,4,ParallelSort,2,505510000,Random,4,ParallelSort,3,1412310000,Random,4,ParallelSort,4,2733910000,Random,4,ParallelSort,5,4472410000,Random,4,ParallelSort,6,7761510000,Random,4,ParallelSort,7,11794610000,Random,4,ParallelSort,8,17474910000,Random,4,ParallelSort,9,25290810000,Random,4,ParallelSort,10,37941510000,Random,4,ParallelBufferedSort,0,124410000,Random,4,ParallelBufferedSort,1,151610000,Random,4,ParallelBufferedSort,2,354410000,Random,4,ParallelBufferedSort,3,967210000,Random,4,ParallelBufferedSort,4,1988910000,Random,4,ParallelBufferedSort,5,3675010000,Random,4,ParallelBufferedSort,6,6179410000,Random,4,ParallelBufferedSort,7,9679410000,Random,4,ParallelBufferedSort,8,14339810000,Random,4,ParallelBufferedSort,9,21364610000,Random,4,ParallelBufferedSort,10,27509410000,Random,4,ParallelRadixSort,0,310310000,Random,4,ParallelRadixSort,1,469810000,Random,4,ParallelRadixSort,2,1142110000,Random,4,ParallelRadixSort,3,3188510000,Random,4,ParallelRadixSort,4,6610010000,Random,4,ParallelRadixSort,5,12255510000,Random,4,ParallelRadixSort,6,20674610000,Random,4,ParallelRadixSort,7,32423310000,Random,4,ParallelRadixSort,8,48054010000,Random,4,ParallelRadixSort,9,68139110000,Random,4,ParallelRadixSort,10,93191710000,Random,4,StdSort,0,348610000,Random,4,StdSort,1,489810000,Random,4,StdSort,2,1364810000,Random,4,StdSort,3,3927710000,Random,4,StdSort,4,8208410000,Random,4,StdSort,5,15225010000,Random,4,StdSort,6,25697610000,Random,4,StdSort,7,40348410000,Random,4,StdSort,8,59807810000,Random,4,StdSort,9,84796310000,Random,4,StdSort,10,116033810000,Random,5,ParallelSort,0,142410000,Random,5,ParallelSort,1,183910000,Random,5,ParallelSort,2,406610000,Random,5,ParallelSort,3,1121910000,Random,5,ParallelSort,4,2224210000,Random,5,ParallelSort,5,4063010000,Random,5,ParallelSort,6,6854610000,Random,5,ParallelSort,7,10918910000,Random,5,ParallelSort,8,15579610000,Random,5,ParallelSort,9,22114310000,Random,5,ParallelSort,10,30247710000,Random,5,ParallelBufferedSort,0,129510000,Random,5,ParallelBufferedSort,1,161710000,Random,5,ParallelBufferedSort,2,366310000,Random,5,ParallelBufferedSort,3,955510000,Random,5,ParallelBufferedSort,4,1953410000,Random,5,ParallelBufferedSort,5,3598210000,Random,5,ParallelBufferedSort,6,6047810000,Random,5,ParallelBufferedSort,7,9474710000,Random,5,ParallelBufferedSort,8,14014610000,Random,5,ParallelBufferedSort,9,19859410000,Random,5,ParallelBufferedSort,10,27183810000,Random,5,ParallelRadixSort,0,313610000,Random,5,ParallelRadixSort,1,472510000,Random,5,ParallelRadixSort,2,1139510000,Random,5,ParallelRadixSort,3,3179910000,Random,5,ParallelRadixSort,4,6593910000,Random,5,ParallelRadixSort,5,12219510000,Random,5,ParallelRadixSort,6,20614810000,Random,5,ParallelRadixSort,7,32330310000,Random,5,ParallelRadixSort,8,47983610000,Random,5,ParallelRadixSort,9,67954210000,Random,5,ParallelRadixSort,10,92914610000,Random,5,StdSort,0,346410000,Random,5,StdSort,1,490110000,Random,5,StdSort,2,1354210000,Random,5,StdSort,3,3893010000,Random,5,StdSort,4,8126910000,Random,5,StdSort,5,15178410000,Random,5,StdSort,6,25423810000,Random,5,StdSort,7,39911110000,Random,5,StdSort,8,59169710000,Random,5,StdSort,9,83887710000,Random,5,StdSort,10,114767210000,Random,6,ParallelSort,0,184610000,Random,6,ParallelSort,1,216910000,Random,6,ParallelSort,2,488910000,Random,6,ParallelSort,3,1358110000,Random,6,ParallelSort,4,2806610000,Random,6,ParallelSort,5,5180110000,Random,6,ParallelSort,6,8716310000,Random,6,ParallelSort,7,13676310000,Random,6,ParallelSort,8,20297010000,Random,6,ParallelSort,9,28649610000,Random,6,ParallelSort,10,39325310000,Random,6,ParallelBufferedSort,0,134110000,Random,6,ParallelBufferedSort,1,159110000,Random,6,ParallelBufferedSort,2,356810000,Random,6,ParallelBufferedSort,3,911210000,Random,6,ParallelBufferedSort,4,1874610000,Random,6,ParallelBufferedSort,5,3037410000,Random,6,ParallelBufferedSort,6,5547910000,Random,6,ParallelBufferedSort,7,7983210000,Random,6,ParallelBufferedSort,8,11807510000,Random,6,ParallelBufferedSort,9,16720510000,Random,6,ParallelBufferedSort,10,22855110000,Random,6,ParallelRadixSort,0,311410000,Random,6,ParallelRadixSort,1,471110000,Random,6,ParallelRadixSort,2,1138110000,Random,6,ParallelRadixSort,3,3177210000,Random,6,ParallelRadixSort,4,6582010000,Random,6,ParallelRadixSort,5,12195610000,Random,6,ParallelRadixSort,6,20579010000,Random,6,ParallelRadixSort,7,32264610000,Random,6,ParallelRadixSort,8,47844910000,Random,6,ParallelRadixSort,9,67791910000,Random,6,ParallelRadixSort,10,92736410000,Random,6,StdSort,0,356010000,Random,6,StdSort,1,497910000,Random,6,StdSort,2,1394810000,Random,6,StdSort,3,4030810000,Random,6,StdSort,4,8414410000,Random,6,StdSort,5,15598010000,Random,6,StdSort,6,26332510000,Random,6,StdSort,7,41333810000,Random,6,StdSort,8,61267510000,Random,6,StdSort,9,86872010000,Random,6,StdSort,10,118873710000,Random,7,ParallelSort,0,172410000,Random,7,ParallelSort,1,196410000,Random,7,ParallelSort,2,394410000,Random,7,ParallelSort,3,1053110000,Random,7,ParallelSort,4,2209010000,Random,7,ParallelSort,5,4117110000,Random,7,ParallelSort,6,6921710000,Random,7,ParallelSort,7,10894610000,Random,7,ParallelSort,8,16192410000,Random,7,ParallelSort,9,22840110000,Random,7,ParallelSort,10,31317410000,Random,7,ParallelBufferedSort,0,152810000,Random,7,ParallelBufferedSort,1,218810000,Random,7,ParallelBufferedSort,2,325210000,Random,7,ParallelBufferedSort,3,882010000,Random,7,ParallelBufferedSort,4,1794410000,Random,7,ParallelBufferedSort,5,3195810000,Random,7,ParallelBufferedSort,6,5301010000,Random,7,ParallelBufferedSort,7,8238710000,Random,7,ParallelBufferedSort,8,12084210000,Random,7,ParallelBufferedSort,9,17161910000,Random,7,ParallelBufferedSort,10,23466710000,Random,7,ParallelRadixSort,0,313210000,Random,7,ParallelRadixSort,1,470610000,Random,7,ParallelRadixSort,2,1137410000,Random,7,ParallelRadixSort,3,3172510000,Random,7,ParallelRadixSort,4,6575010000,Random,7,ParallelRadixSort,5,12185410000,Random,7,ParallelRadixSort,6,20551810000,Random,7,ParallelRadixSort,7,32225410000,Random,7,ParallelRadixSort,8,48192710000,Random,7,ParallelRadixSort,9,68307810000,Random,7,ParallelRadixSort,10,92629110000,Random,7,StdSort,0,347310000,Random,7,StdSort,1,489210000,Random,7,StdSort,2,1358110000,Random,7,StdSort,3,3906410000,Random,7,StdSort,4,8158010000,Random,7,StdSort,5,15125810000,Random,7,StdSort,6,25522510000,Random,7,StdSort,7,40072210000,Random,7,StdSort,8,59398610000,Random,7,StdSort,9,84212610000,Random,7,StdSort,10,115236510000,Random,8,ParallelSort,0,204810000,Random,8,ParallelSort,1,256510000,Random,8,ParallelSort,2,402410000,Random,8,ParallelSort,3,983010000,Random,8,ParallelSort,4,2022810000,Random,8,ParallelSort,5,3749110000,Random,8,ParallelSort,6,6307910000,Random,8,ParallelSort,7,9890610000,Random,8,ParallelSort,8,14665910000,Random,8,ParallelSort,9,20774410000,Random,8,ParallelSort,10,28415910000,Random,8,ParallelBufferedSort,0,190210000,Random,8,ParallelBufferedSort,1,277510000,Random,8,ParallelBufferedSort,2,403810000,Random,8,ParallelBufferedSort,3,934410000,Random,8,ParallelBufferedSort,4,1755310000,Random,8,ParallelBufferedSort,5,3249310000,Random,8,ParallelBufferedSort,6,3247910000,Random,8,ParallelBufferedSort,7,8298010000,Random,8,ParallelBufferedSort,8,12451610000,Random,8,ParallelBufferedSort,9,15449110000,Random,8,ParallelBufferedSort,10,18728210000,Random,8,ParallelRadixSort,0,322910000,Random,8,ParallelRadixSort,1,471510000,Random,8,ParallelRadixSort,2,1137610000,Random,8,ParallelRadixSort,3,3173210000,Random,8,ParallelRadixSort,4,6569010000,Random,8,ParallelRadixSort,5,12176810000,Random,8,ParallelRadixSort,6,20540410000,Random,8,ParallelRadixSort,7,32204410000,Random,8,ParallelRadixSort,8,47739210000,Random,8,ParallelRadixSort,9,67683310000,Random,8,ParallelRadixSort,10,92578610000,Random,8,StdSort,0,351810000,Random,8,StdSort,1,491610000,Random,8,StdSort,2,1373610000,Random,8,StdSort,3,3980810000,Random,8,StdSort,4,8287210000,Random,8,StdSort,5,15340210000,Random,8,StdSort,6,25903010000,Random,8,StdSort,7,40637310000,Random,8,StdSort,8,60339510000,Random,8,StdSort,9,85401910000,Random,8,StdSort,10,116856310000,PreSorted,1,ParallelSort,0,155710000,PreSorted,1,ParallelSort,1,221710000,PreSorted,1,ParallelSort,2,679310000,PreSorted,1,ParallelSort,3,2102710000,PreSorted,1,ParallelSort,4,4425210000,PreSorted,1,ParallelSort,5,8232310000,PreSorted,1,ParallelSort,6,13919210000,PreSorted,1,ParallelSort,7,21867810000,PreSorted,1,ParallelSort,8,32427310000,PreSorted,1,ParallelSort,9,45994310000,PreSorted,1,ParallelSort,10,62949210000,PreSorted,1,ParallelBufferedSort,0,155610000,PreSorted,1,ParallelBufferedSort,1,222310000,PreSorted,1,ParallelBufferedSort,2,679310000,PreSorted,1,ParallelBufferedSort,3,2102710000,PreSorted,1,ParallelBufferedSort,4,4425110000,PreSorted,1,ParallelBufferedSort,5,8233910000,PreSorted,1,ParallelBufferedSort,6,13918410000,PreSorted,1,ParallelBufferedSort,7,21873010000,PreSorted,1,ParallelBufferedSort,8,32430510000,PreSorted,1,ParallelBufferedSort,9,46016510000,PreSorted,1,ParallelBufferedSort,10,62953510000,PreSorted,1,ParallelRadixSort,0,302610000,PreSorted,1,ParallelRadixSort,1,473810000,PreSorted,1,ParallelRadixSort,2,1163210000,PreSorted,1,ParallelRadixSort,3,3305210000,PreSorted,1,ParallelRadixSort,4,6886310000,PreSorted,1,ParallelRadixSort,5,12786210000,PreSorted,1,ParallelRadixSort,6,21593510000,PreSorted,1,ParallelRadixSort,7,33876310000,PreSorted,1,ParallelRadixSort,8,50228610000,PreSorted,1,ParallelRadixSort,9,71221810000,PreSorted,1,ParallelRadixSort,10,97435610000,PreSorted,1,StdSort,0,155010000,PreSorted,1,StdSort,1,220910000,PreSorted,1,StdSort,2,679010000,PreSorted,1,StdSort,3,2102210000,PreSorted,1,StdSort,4,4424510000,PreSorted,1,StdSort,5,8231810000,PreSorted,1,StdSort,6,13917910000,PreSorted,1,StdSort,7,21873610000,PreSorted,1,StdSort,8,32431310000,PreSorted,1,StdSort,9,46003510000,PreSorted,1,StdSort,10,63028510000,PreSorted,2,ParallelSort,0,85210000,PreSorted,2,ParallelSort,1,118910000,PreSorted,2,ParallelSort,2,322610000,PreSorted,2,ParallelSort,3,981510000,PreSorted,2,ParallelSort,4,2036710000,PreSorted,2,ParallelSort,5,3771510000,PreSorted,2,ParallelSort,6,6357410000,PreSorted,2,ParallelSort,7,9968810000,PreSorted,2,ParallelSort,8,14777510000,PreSorted,2,ParallelSort,9,20945510000,PreSorted,2,ParallelSort,10,28652710000,PreSorted,2,ParallelBufferedSort,0,84710000,PreSorted,2,ParallelBufferedSort,1,97210000,PreSorted,2,ParallelBufferedSort,2,247210000,PreSorted,2,ParallelBufferedSort,3,710210000,PreSorted,2,ParallelBufferedSort,4,1452010000,PreSorted,2,ParallelBufferedSort,5,2672910000,PreSorted,2,ParallelBufferedSort,6,4503710000,PreSorted,2,ParallelBufferedSort,7,7051510000,PreSorted,2,ParallelBufferedSort,8,10437510000,PreSorted,2,ParallelBufferedSort,9,14787110000,PreSorted,2,ParallelBufferedSort,10,20226910000,PreSorted,2,ParallelRadixSort,0,315210000,PreSorted,2,ParallelRadixSort,1,467910000,PreSorted,2,ParallelRadixSort,2,1147710000,PreSorted,2,ParallelRadixSort,3,3228110000,PreSorted,2,ParallelRadixSort,4,6705810000,PreSorted,2,ParallelRadixSort,5,12436310000,PreSorted,2,ParallelRadixSort,6,20986710000,PreSorted,2,ParallelRadixSort,7,32915810000,PreSorted,2,ParallelRadixSort,8,48796010000,PreSorted,2,ParallelRadixSort,9,69184910000,PreSorted,2,ParallelRadixSort,10,94620810000,PreSorted,2,StdSort,0,155010000,PreSorted,2,StdSort,1,220910000,PreSorted,2,StdSort,2,679110000,PreSorted,2,StdSort,3,2102210000,PreSorted,2,StdSort,4,4424510000,PreSorted,2,StdSort,5,8231910000,PreSorted,2,StdSort,6,13960810000,PreSorted,2,StdSort,7,21869410000,PreSorted,2,StdSort,8,32430710000,PreSorted,2,StdSort,9,46003110000,PreSorted,2,StdSort,10,62960110000,PreSorted,3,ParallelSort,0,90410000,PreSorted,3,ParallelSort,1,117210000,PreSorted,3,ParallelSort,2,251910000,PreSorted,3,ParallelSort,3,741010000,PreSorted,3,ParallelSort,4,1536410000,PreSorted,3,ParallelSort,5,2834110000,PreSorted,3,ParallelSort,6,4771210000,PreSorted,3,ParallelSort,7,7476110000,PreSorted,3,ParallelSort,8,11078610000,PreSorted,3,ParallelSort,9,15711910000,PreSorted,3,ParallelSort,10,21477310000,PreSorted,3,ParallelBufferedSort,0,80810000,PreSorted,3,ParallelBufferedSort,1,97910000,PreSorted,3,ParallelBufferedSort,2,168710000,PreSorted,3,ParallelBufferedSort,3,463310000,PreSorted,3,ParallelBufferedSort,4,943010000,PreSorted,3,ParallelBufferedSort,5,1725310000,PreSorted,3,ParallelBufferedSort,6,2900010000,PreSorted,3,ParallelBufferedSort,7,4541410000,PreSorted,3,ParallelBufferedSort,8,6722710000,PreSorted,3,ParallelBufferedSort,9,9524210000,PreSorted,3,ParallelBufferedSort,10,13025410000,PreSorted,3,ParallelRadixSort,0,309510000,PreSorted,3,ParallelRadixSort,1,468910000,PreSorted,3,ParallelRadixSort,2,1142810000,PreSorted,3,ParallelRadixSort,3,3200910000,PreSorted,3,ParallelRadixSort,4,6643310000,PreSorted,3,ParallelRadixSort,5,12319610000,PreSorted,3,ParallelRadixSort,6,20781410000,PreSorted,3,ParallelRadixSort,7,32594910000,PreSorted,3,ParallelRadixSort,8,48320510000,PreSorted,3,ParallelRadixSort,9,68502510000,PreSorted,3,ParallelRadixSort,10,93706010000,PreSorted,3,StdSort,0,155010000,PreSorted,3,StdSort,1,220910000,PreSorted,3,StdSort,2,679110000,PreSorted,3,StdSort,3,2102210000,PreSorted,3,StdSort,4,4424510000,PreSorted,3,StdSort,5,8231910000,PreSorted,3,StdSort,6,13922210000,PreSorted,3,StdSort,7,21961510000,PreSorted,3,StdSort,8,32522710000,PreSorted,3,StdSort,9,46091610000,PreSorted,3,StdSort,10,63048510000,PreSorted,4,ParallelSort,0,81210000,PreSorted,4,ParallelSort,1,99910000,PreSorted,4,ParallelSort,2,256810000,PreSorted,4,ParallelSort,3,740510000,PreSorted,4,ParallelSort,4,1535210000,PreSorted,4,ParallelSort,5,2833710000,PreSorted,4,ParallelSort,6,4766110000,PreSorted,4,ParallelSort,7,7475110000,PreSorted,4,ParallelSort,8,11071310000,PreSorted,4,ParallelSort,9,15697510000,PreSorted,4,ParallelSort,10,21545710000,PreSorted,4,ParallelBufferedSort,0,70710000,PreSorted,4,ParallelBufferedSort,1,81110000,PreSorted,4,ParallelBufferedSort,2,170110000,PreSorted,4,ParallelBufferedSort,3,466410000,PreSorted,4,ParallelBufferedSort,4,947810000,PreSorted,4,ParallelBufferedSort,5,1733810000,PreSorted,4,ParallelBufferedSort,6,2911610000,PreSorted,4,ParallelBufferedSort,7,4557610000,PreSorted,4,ParallelBufferedSort,8,6732610000,PreSorted,4,ParallelBufferedSort,9,9531510000,PreSorted,4,ParallelBufferedSort,10,13305310000,PreSorted,4,ParallelRadixSort,0,316310000,PreSorted,4,ParallelRadixSort,1,468610000,PreSorted,4,ParallelRadixSort,2,1143010000,PreSorted,4,ParallelRadixSort,3,3188710000,PreSorted,4,ParallelRadixSort,4,6613110000,PreSorted,4,ParallelRadixSort,5,12261710000,PreSorted,4,ParallelRadixSort,6,20686110000,PreSorted,4,ParallelRadixSort,7,32438010000,PreSorted,4,ParallelRadixSort,8,48081910000,PreSorted,4,ParallelRadixSort,9,68170810000,PreSorted,4,ParallelRadixSort,10,93247210000,PreSorted,4,StdSort,0,155010000,PreSorted,4,StdSort,1,220910000,PreSorted,4,StdSort,2,679010000,PreSorted,4,StdSort,3,2102210000,PreSorted,4,StdSort,4,4424410000,PreSorted,4,StdSort,5,8246010000,PreSorted,4,StdSort,6,13918310000,PreSorted,4,StdSort,7,21915610000,PreSorted,4,StdSort,8,32454810000,PreSorted,4,StdSort,9,46088410000,PreSorted,4,StdSort,10,63028010000,PreSorted,5,ParallelSort,0,87410000,PreSorted,5,ParallelSort,1,101810000,PreSorted,5,ParallelSort,2,249410000,PreSorted,5,ParallelSort,3,740310000,PreSorted,5,ParallelSort,4,1534910000,PreSorted,5,ParallelSort,5,2832710000,PreSorted,5,ParallelSort,6,4768010000,PreSorted,5,ParallelSort,7,7477410000,PreSorted,5,ParallelSort,8,11077410000,PreSorted,5,ParallelSort,9,15695210000,PreSorted,5,ParallelSort,10,21474210000,PreSorted,5,ParallelBufferedSort,0,73910000,PreSorted,5,ParallelBufferedSort,1,90510000,PreSorted,5,ParallelBufferedSort,2,181510000,PreSorted,5,ParallelBufferedSort,3,473410000,PreSorted,5,ParallelBufferedSort,4,954510000,PreSorted,5,ParallelBufferedSort,5,1737210000,PreSorted,5,ParallelBufferedSort,6,2910510000,PreSorted,5,ParallelBufferedSort,7,4554010000,PreSorted,5,ParallelBufferedSort,8,6731510000,PreSorted,5,ParallelBufferedSort,9,9540910000,PreSorted,5,ParallelBufferedSort,10,13037110000,PreSorted,5,ParallelRadixSort,0,311910000,PreSorted,5,ParallelRadixSort,1,471010000,PreSorted,5,ParallelRadixSort,2,1140510000,PreSorted,5,ParallelRadixSort,3,3180210000,PreSorted,5,ParallelRadixSort,4,6595610000,PreSorted,5,ParallelRadixSort,5,12226110000,PreSorted,5,ParallelRadixSort,6,20623810000,PreSorted,5,ParallelRadixSort,7,32343410000,PreSorted,5,ParallelRadixSort,8,47939710000,PreSorted,5,ParallelRadixSort,9,67972810000,PreSorted,5,ParallelRadixSort,10,92970210000,PreSorted,5,StdSort,0,155010000,PreSorted,5,StdSort,1,220910000,PreSorted,5,StdSort,2,679010000,PreSorted,5,StdSort,3,2102210000,PreSorted,5,StdSort,4,4424510000,PreSorted,5,StdSort,5,8232010000,PreSorted,5,StdSort,6,13918010000,PreSorted,5,StdSort,7,21955710000,PreSorted,5,StdSort,8,32431810000,PreSorted,5,StdSort,9,46005310000,PreSorted,5,StdSort,10,62946710000,PreSorted,6,ParallelSort,0,90910000,PreSorted,6,ParallelSort,1,131810000,PreSorted,6,ParallelSort,2,254610000,PreSorted,6,ParallelSort,3,744910000,PreSorted,6,ParallelSort,4,1539910000,PreSorted,6,ParallelSort,5,2834210000,PreSorted,6,ParallelSort,6,4769210000,PreSorted,6,ParallelSort,7,7474210000,PreSorted,6,ParallelSort,8,11073410000,PreSorted,6,ParallelSort,9,15692110000,PreSorted,6,ParallelSort,10,21458810000,PreSorted,6,ParallelBufferedSort,0,103810000,PreSorted,6,ParallelBufferedSort,1,133310000,PreSorted,6,ParallelBufferedSort,2,181910000,PreSorted,6,ParallelBufferedSort,3,482510000,PreSorted,6,ParallelBufferedSort,4,952110000,PreSorted,6,ParallelBufferedSort,5,1743810000,PreSorted,6,ParallelBufferedSort,6,2922110000,PreSorted,6,ParallelBufferedSort,7,4562510000,PreSorted,6,ParallelBufferedSort,8,6753610000,PreSorted,6,ParallelBufferedSort,9,9549310000,PreSorted,6,ParallelBufferedSort,10,13049810000,PreSorted,6,ParallelRadixSort,0,312210000,PreSorted,6,ParallelRadixSort,1,470810000,PreSorted,6,ParallelRadixSort,2,1138610000,PreSorted,6,ParallelRadixSort,3,3176110000,PreSorted,6,ParallelRadixSort,4,6583110000,PreSorted,6,ParallelRadixSort,5,12198510000,PreSorted,6,ParallelRadixSort,6,20574610000,PreSorted,6,ParallelRadixSort,7,32266210000,PreSorted,6,ParallelRadixSort,8,47820210000,PreSorted,6,ParallelRadixSort,9,67797610000,PreSorted,6,ParallelRadixSort,10,92744410000,PreSorted,6,StdSort,0,155010000,PreSorted,6,StdSort,1,221010000,PreSorted,6,StdSort,2,679010000,PreSorted,6,StdSort,3,2102210000,PreSorted,6,StdSort,4,4426310000,PreSorted,6,StdSort,5,8233610000,PreSorted,6,StdSort,6,13920210000,PreSorted,6,StdSort,7,21878710000,PreSorted,6,StdSort,8,32428510000,PreSorted,6,StdSort,9,45996410000,PreSorted,6,StdSort,10,62956210000,PreSorted,7,ParallelSort,0,143010000,PreSorted,7,ParallelSort,1,164210000,PreSorted,7,ParallelSort,2,258310000,PreSorted,7,ParallelSort,3,741010000,PreSorted,7,ParallelSort,4,1128110000,PreSorted,7,ParallelSort,5,2074410000,PreSorted,7,ParallelSort,6,4376510000,PreSorted,7,ParallelSort,7,7465310000,PreSorted,7,ParallelSort,8,11068510000,PreSorted,7,ParallelSort,9,15658310000,PreSorted,7,ParallelSort,10,21424310000,PreSorted,7,ParallelBufferedSort,0,134910000,PreSorted,7,ParallelBufferedSort,1,167410000,PreSorted,7,ParallelBufferedSort,2,230110000,PreSorted,7,ParallelBufferedSort,3,491610000,PreSorted,7,ParallelBufferedSort,4,955310000,PreSorted,7,ParallelBufferedSort,5,1735710000,PreSorted,7,ParallelBufferedSort,6,1849510000,PreSorted,7,ParallelBufferedSort,7,2758810000,PreSorted,7,ParallelBufferedSort,8,3981110000,PreSorted,7,ParallelBufferedSort,9,5573510000,PreSorted,7,ParallelBufferedSort,10,7508710000,PreSorted,7,ParallelRadixSort,0,316310000,PreSorted,7,ParallelRadixSort,1,471610000,PreSorted,7,ParallelRadixSort,2,1137810000,PreSorted,7,ParallelRadixSort,3,3172410000,PreSorted,7,ParallelRadixSort,4,6574110000,PreSorted,7,ParallelRadixSort,5,12181810000,PreSorted,7,ParallelRadixSort,6,20549610000,PreSorted,7,ParallelRadixSort,7,32219110000,PreSorted,7,ParallelRadixSort,8,47759810000,PreSorted,7,ParallelRadixSort,9,67704710000,PreSorted,7,ParallelRadixSort,10,92610210000,PreSorted,7,StdSort,0,155010000,PreSorted,7,StdSort,1,220910000,PreSorted,7,StdSort,2,679110000,PreSorted,7,StdSort,3,2102610000,PreSorted,7,StdSort,4,4424310000,PreSorted,7,StdSort,5,8238310000,PreSorted,7,StdSort,6,14014710000,PreSorted,7,StdSort,7,21880310000,PreSorted,7,StdSort,8,32548510000,PreSorted,7,StdSort,9,46098410000,PreSorted,7,StdSort,10,62969610000,PreSorted,8,ParallelSort,0,145510000,PreSorted,8,ParallelSort,1,182010000,PreSorted,8,ParallelSort,2,256910000,PreSorted,8,ParallelSort,3,565810000,PreSorted,8,ParallelSort,4,1132210000,PreSorted,8,ParallelSort,5,2078110000,PreSorted,8,ParallelSort,6,3488910000,PreSorted,8,ParallelSort,7,5462310000,PreSorted,8,ParallelSort,8,8084910000,PreSorted,8,ParallelSort,9,11454010000,PreSorted,8,ParallelSort,10,15673410000,PreSorted,8,ParallelBufferedSort,0,135810000,PreSorted,8,ParallelBufferedSort,1,198910000,PreSorted,8,ParallelBufferedSort,2,288510000,PreSorted,8,ParallelBufferedSort,3,495710000,PreSorted,8,ParallelBufferedSort,4,903410000,PreSorted,8,ParallelBufferedSort,5,1568310000,PreSorted,8,ParallelBufferedSort,6,2608310000,PreSorted,8,ParallelBufferedSort,7,4067910000,PreSorted,8,ParallelBufferedSort,8,3498610000,PreSorted,8,ParallelBufferedSort,9,8503010000,PreSorted,8,ParallelBufferedSort,10,6701710000,PreSorted,8,ParallelRadixSort,0,316010000,PreSorted,8,ParallelRadixSort,1,471010000,PreSorted,8,ParallelRadixSort,2,1138910000,PreSorted,8,ParallelRadixSort,3,3170810000,PreSorted,8,ParallelRadixSort,4,6570610000,PreSorted,8,ParallelRadixSort,5,12178410000,PreSorted,8,ParallelRadixSort,6,20536710000,PreSorted,8,ParallelRadixSort,7,32198710000,PreSorted,8,ParallelRadixSort,8,47720710000,PreSorted,8,ParallelRadixSort,9,67669210000,PreSorted,8,ParallelRadixSort,10,92650510000,PreSorted,8,StdSort,0,155010000,PreSorted,8,StdSort,1,220910000,PreSorted,8,StdSort,2,679110000,PreSorted,8,StdSort,3,2107010000,PreSorted,8,StdSort,4,4425210000,PreSorted,8,StdSort,5,8319410000,PreSorted,8,StdSort,6,13919810000,PreSorted,8,StdSort,7,21869110000,PreSorted,8,StdSort,8,32434310000,PreSorted,8,StdSort,9,46098710000,PreSorted,8,StdSort,10,63046410000,NearlySorted,1,ParallelSort,0,155510000,NearlySorted,1,ParallelSort,1,222110000,NearlySorted,1,ParallelSort,2,664310000,NearlySorted,1,ParallelSort,3,2102610000,NearlySorted,1,ParallelSort,4,4426410000,NearlySorted,1,ParallelSort,5,8236210000,NearlySorted,1,ParallelSort,6,13932510000,NearlySorted,1,ParallelSort,7,21870310000,NearlySorted,1,ParallelSort,8,32432410000,NearlySorted,1,ParallelSort,9,45994810000,NearlySorted,1,ParallelSort,10,62957910000,NearlySorted,1,ParallelBufferedSort,0,155510000,NearlySorted,1,ParallelBufferedSort,1,221910000,NearlySorted,1,ParallelBufferedSort,2,664710000,NearlySorted,1,ParallelBufferedSort,3,2102710000,NearlySorted,1,ParallelBufferedSort,4,4425210000,NearlySorted,1,ParallelBufferedSort,5,8232210000,NearlySorted,1,ParallelBufferedSort,6,13922010000,NearlySorted,1,ParallelBufferedSort,7,21867510000,NearlySorted,1,ParallelBufferedSort,8,32429310000,NearlySorted,1,ParallelBufferedSort,9,45993210000,NearlySorted,1,ParallelBufferedSort,10,62952910000,NearlySorted,1,ParallelRadixSort,0,302210000,NearlySorted,1,ParallelRadixSort,1,474910000,NearlySorted,1,ParallelRadixSort,2,1163410000,NearlySorted,1,ParallelRadixSort,3,3304610000,NearlySorted,1,ParallelRadixSort,4,6883610000,NearlySorted,1,ParallelRadixSort,5,12785210000,NearlySorted,1,ParallelRadixSort,6,21588210000,NearlySorted,1,ParallelRadixSort,7,33874510000,NearlySorted,1,ParallelRadixSort,8,50223910000,NearlySorted,1,ParallelRadixSort,9,71221610000,NearlySorted,1,ParallelRadixSort,10,97427510000,NearlySorted,1,StdSort,0,154910000,NearlySorted,1,StdSort,1,221310000,NearlySorted,1,StdSort,2,664010000,NearlySorted,1,StdSort,3,2102710000,NearlySorted,1,StdSort,4,4424610000,NearlySorted,1,StdSort,5,8232310000,NearlySorted,1,StdSort,6,13918510000,NearlySorted,1,StdSort,7,21867310000,NearlySorted,1,StdSort,8,32432210000,NearlySorted,1,StdSort,9,46099710000,NearlySorted,1,StdSort,10,63026310000,NearlySorted,2,ParallelSort,0,88010000,NearlySorted,2,ParallelSort,1,116810000,NearlySorted,2,ParallelSort,2,316110000,NearlySorted,2,ParallelSort,3,985210000,NearlySorted,2,ParallelSort,4,2036610000,NearlySorted,2,ParallelSort,5,3773310000,NearlySorted,2,ParallelSort,6,6359610000,NearlySorted,2,ParallelSort,7,9971910000,NearlySorted,2,ParallelSort,8,14779410000,NearlySorted,2,ParallelSort,9,20950310000,NearlySorted,2,ParallelSort,10,28648210000,NearlySorted,2,ParallelBufferedSort,0,76610000,NearlySorted,2,ParallelBufferedSort,1,96810000,NearlySorted,2,ParallelBufferedSort,2,247010000,NearlySorted,2,ParallelBufferedSort,3,707310000,NearlySorted,2,ParallelBufferedSort,4,1449210000,NearlySorted,2,ParallelBufferedSort,5,2674510000,NearlySorted,2,ParallelBufferedSort,6,4504910000,NearlySorted,2,ParallelBufferedSort,7,7052310000,NearlySorted,2,ParallelBufferedSort,8,10438010000,NearlySorted,2,ParallelBufferedSort,9,14788410000,NearlySorted,2,ParallelBufferedSort,10,20223910000,NearlySorted,2,ParallelRadixSort,0,315810000,NearlySorted,2,ParallelRadixSort,1,470910000,NearlySorted,2,ParallelRadixSort,2,1147410000,NearlySorted,2,ParallelRadixSort,3,3225510000,NearlySorted,2,ParallelRadixSort,4,6703410000,NearlySorted,2,ParallelRadixSort,5,12434110000,NearlySorted,2,ParallelRadixSort,6,20983410000,NearlySorted,2,ParallelRadixSort,7,32915910000,NearlySorted,2,ParallelRadixSort,8,48791210000,NearlySorted,2,ParallelRadixSort,9,69274810000,NearlySorted,2,ParallelRadixSort,10,94667410000,NearlySorted,2,StdSort,0,155010000,NearlySorted,2,StdSort,1,221210000,NearlySorted,2,StdSort,2,663910000,NearlySorted,2,StdSort,3,2103110000,NearlySorted,2,StdSort,4,4424510000,NearlySorted,2,StdSort,5,8231910000,NearlySorted,2,StdSort,6,13917910000,NearlySorted,2,StdSort,7,21869310000,NearlySorted,2,StdSort,8,32534710000,NearlySorted,2,StdSort,9,45999710000,NearlySorted,2,StdSort,10,62964710000,NearlySorted,3,ParallelSort,0,99010000,NearlySorted,3,ParallelSort,1,118210000,NearlySorted,3,ParallelSort,2,246910000,NearlySorted,3,ParallelSort,3,744810000,NearlySorted,3,ParallelSort,4,1537510000,NearlySorted,3,ParallelSort,5,2848610000,NearlySorted,3,ParallelSort,6,4789010000,NearlySorted,3,ParallelSort,7,7493010000,NearlySorted,3,ParallelSort,8,11100610000,NearlySorted,3,ParallelSort,9,15792810000,NearlySorted,3,ParallelSort,10,21499110000,NearlySorted,3,ParallelBufferedSort,0,81310000,NearlySorted,3,ParallelBufferedSort,1,97810000,NearlySorted,3,ParallelBufferedSort,2,166510000,NearlySorted,3,ParallelBufferedSort,3,464210000,NearlySorted,3,ParallelBufferedSort,4,947210000,NearlySorted,3,ParallelBufferedSort,5,1734110000,NearlySorted,3,ParallelBufferedSort,6,2904910000,NearlySorted,3,ParallelBufferedSort,7,4714410000,NearlySorted,3,ParallelBufferedSort,8,7037710000,NearlySorted,3,ParallelBufferedSort,9,9621510000,NearlySorted,3,ParallelBufferedSort,10,13105610000,NearlySorted,3,ParallelRadixSort,0,309610000,NearlySorted,3,ParallelRadixSort,1,468610000,NearlySorted,3,ParallelRadixSort,2,1144010000,NearlySorted,3,ParallelRadixSort,3,3201510000,NearlySorted,3,ParallelRadixSort,4,6642410000,NearlySorted,3,ParallelRadixSort,5,12318810000,NearlySorted,3,ParallelRadixSort,6,20786610000,NearlySorted,3,ParallelRadixSort,7,32601810000,NearlySorted,3,ParallelRadixSort,8,48317210000,NearlySorted,3,ParallelRadixSort,9,68503410000,NearlySorted,3,ParallelRadixSort,10,93709810000,NearlySorted,3,StdSort,0,155010000,NearlySorted,3,StdSort,1,221710000,NearlySorted,3,StdSort,2,663910000,NearlySorted,3,StdSort,3,2102610000,NearlySorted,3,StdSort,4,4424410000,NearlySorted,3,StdSort,5,8231810000,NearlySorted,3,StdSort,6,13918410000,NearlySorted,3,StdSort,7,21867610000,NearlySorted,3,StdSort,8,32432110000,NearlySorted,3,StdSort,9,45995710000,NearlySorted,3,StdSort,10,63049210000,NearlySorted,4,ParallelSort,0,79010000,NearlySorted,4,ParallelSort,1,100210000,NearlySorted,4,ParallelSort,2,251210000,NearlySorted,4,ParallelSort,3,743910000,NearlySorted,4,ParallelSort,4,1534910000,NearlySorted,4,ParallelSort,5,2834110000,NearlySorted,4,ParallelSort,6,4769810000,NearlySorted,4,ParallelSort,7,7481210000,NearlySorted,4,ParallelSort,8,11083310000,NearlySorted,4,ParallelSort,9,15733310000,NearlySorted,4,ParallelSort,10,21672810000,NearlySorted,4,ParallelBufferedSort,0,73310000,NearlySorted,4,ParallelBufferedSort,1,86010000,NearlySorted,4,ParallelBufferedSort,2,168310000,NearlySorted,4,ParallelBufferedSort,3,465110000,NearlySorted,4,ParallelBufferedSort,4,947110000,NearlySorted,4,ParallelBufferedSort,5,1734610000,NearlySorted,4,ParallelBufferedSort,6,2910210000,NearlySorted,4,ParallelBufferedSort,7,4555410000,NearlySorted,4,ParallelBufferedSort,8,6733010000,NearlySorted,4,ParallelBufferedSort,9,9538310000,NearlySorted,4,ParallelBufferedSort,10,13361310000,NearlySorted,4,ParallelRadixSort,0,320810000,NearlySorted,4,ParallelRadixSort,1,470310000,NearlySorted,4,ParallelRadixSort,2,1141010000,NearlySorted,4,ParallelRadixSort,3,3188010000,NearlySorted,4,ParallelRadixSort,4,6613210000,NearlySorted,4,ParallelRadixSort,5,12257610000,NearlySorted,4,ParallelRadixSort,6,20686910000,NearlySorted,4,ParallelRadixSort,7,32448110000,NearlySorted,4,ParallelRadixSort,8,48074110000,NearlySorted,4,ParallelRadixSort,9,68157710000,NearlySorted,4,ParallelRadixSort,10,93267210000,NearlySorted,4,StdSort,0,155010000,NearlySorted,4,StdSort,1,221310000,NearlySorted,4,StdSort,2,663910000,NearlySorted,4,StdSort,3,2102610000,NearlySorted,4,StdSort,4,4424510000,NearlySorted,4,StdSort,5,8244610000,NearlySorted,4,StdSort,6,13921110000,NearlySorted,4,StdSort,7,21872910000,NearlySorted,4,StdSort,8,32440310000,NearlySorted,4,StdSort,9,46114410000,NearlySorted,4,StdSort,10,63035910000,NearlySorted,5,ParallelSort,0,90310000,NearlySorted,5,ParallelSort,1,109310000,NearlySorted,5,ParallelSort,2,251410000,NearlySorted,5,ParallelSort,3,743510000,NearlySorted,5,ParallelSort,4,1534710000,NearlySorted,5,ParallelSort,5,2835910000,NearlySorted,5,ParallelSort,6,4774310000,NearlySorted,5,ParallelSort,7,7481510000,NearlySorted,5,ParallelSort,8,11077610000,NearlySorted,5,ParallelSort,9,15696410000,NearlySorted,5,ParallelSort,10,21468110000,NearlySorted,5,ParallelBufferedSort,0,77010000,NearlySorted,5,ParallelBufferedSort,1,88610000,NearlySorted,5,ParallelBufferedSort,2,175110000,NearlySorted,5,ParallelBufferedSort,3,472910000,NearlySorted,5,ParallelBufferedSort,4,949710000,NearlySorted,5,ParallelBufferedSort,5,1733110000,NearlySorted,5,ParallelBufferedSort,6,2915110000,NearlySorted,5,ParallelBufferedSort,7,4561410000,NearlySorted,5,ParallelBufferedSort,8,6743310000,NearlySorted,5,ParallelBufferedSort,9,9540010000,NearlySorted,5,ParallelBufferedSort,10,13044310000,NearlySorted,5,ParallelRadixSort,0,310910000,NearlySorted,5,ParallelRadixSort,1,469410000,NearlySorted,5,ParallelRadixSort,2,1139310000,NearlySorted,5,ParallelRadixSort,3,3179810000,NearlySorted,5,ParallelRadixSort,4,6593210000,NearlySorted,5,ParallelRadixSort,5,12224310000,NearlySorted,5,ParallelRadixSort,6,20620110000,NearlySorted,5,ParallelRadixSort,7,32339310000,NearlySorted,5,ParallelRadixSort,8,47932110000,NearlySorted,5,ParallelRadixSort,9,67957010000,NearlySorted,5,ParallelRadixSort,10,92959010000,NearlySorted,5,StdSort,0,155010000,NearlySorted,5,StdSort,1,221310000,NearlySorted,5,StdSort,2,664010000,NearlySorted,5,StdSort,3,2102610000,NearlySorted,5,StdSort,4,4424610000,NearlySorted,5,StdSort,5,8244810000,NearlySorted,5,StdSort,6,13918010000,NearlySorted,5,StdSort,7,21880310000,NearlySorted,5,StdSort,8,32440810000,NearlySorted,5,StdSort,9,46002610000,NearlySorted,5,StdSort,10,62957610000,NearlySorted,6,ParallelSort,0,125510000,NearlySorted,6,ParallelSort,1,125610000,NearlySorted,6,ParallelSort,2,258710000,NearlySorted,6,ParallelSort,3,745510000,NearlySorted,6,ParallelSort,4,1540110000,NearlySorted,6,ParallelSort,5,2836810000,NearlySorted,6,ParallelSort,6,4776110000,NearlySorted,6,ParallelSort,7,7480610000,NearlySorted,6,ParallelSort,8,11087610000,NearlySorted,6,ParallelSort,9,15713010000,NearlySorted,6,ParallelSort,10,21481610000,NearlySorted,6,ParallelBufferedSort,0,107410000,NearlySorted,6,ParallelBufferedSort,1,121110000,NearlySorted,6,ParallelBufferedSort,2,176310000,NearlySorted,6,ParallelBufferedSort,3,479910000,NearlySorted,6,ParallelBufferedSort,4,953610000,NearlySorted,6,ParallelBufferedSort,5,1742010000,NearlySorted,6,ParallelBufferedSort,6,2914610000,NearlySorted,6,ParallelBufferedSort,7,4568010000,NearlySorted,6,ParallelBufferedSort,8,6746910000,NearlySorted,6,ParallelBufferedSort,9,9542610000,NearlySorted,6,ParallelBufferedSort,10,13052010000,NearlySorted,6,ParallelRadixSort,0,313010000,NearlySorted,6,ParallelRadixSort,1,481610000,NearlySorted,6,ParallelRadixSort,2,1149810000,NearlySorted,6,ParallelRadixSort,3,3174910000,NearlySorted,6,ParallelRadixSort,4,6581210000,NearlySorted,6,ParallelRadixSort,5,12195710000,NearlySorted,6,ParallelRadixSort,6,20574910000,NearlySorted,6,ParallelRadixSort,7,32261110000,NearlySorted,6,ParallelRadixSort,8,47815610000,NearlySorted,6,ParallelRadixSort,9,67816910000,NearlySorted,6,ParallelRadixSort,10,92724410000,NearlySorted,6,StdSort,0,155410000,NearlySorted,6,StdSort,1,221310000,NearlySorted,6,StdSort,2,663810000,NearlySorted,6,StdSort,3,2102710000,NearlySorted,6,StdSort,4,4424510000,NearlySorted,6,StdSort,5,8244710000,NearlySorted,6,StdSort,6,13917710000,NearlySorted,6,StdSort,7,21871710000,NearlySorted,6,StdSort,8,32514310000,NearlySorted,6,StdSort,9,46029910000,NearlySorted,6,StdSort,10,62981110000,NearlySorted,7,ParallelSort,0,121410000,NearlySorted,7,ParallelSort,1,141610000,NearlySorted,7,ParallelSort,2,254410000,NearlySorted,7,ParallelSort,3,550210000,NearlySorted,7,ParallelSort,4,1131410000,NearlySorted,7,ParallelSort,5,2834010000,NearlySorted,7,ParallelSort,6,4770510000,NearlySorted,7,ParallelSort,7,7473710000,NearlySorted,7,ParallelSort,8,11066710000,NearlySorted,7,ParallelSort,9,15678910000,NearlySorted,7,ParallelSort,10,21449710000,NearlySorted,7,ParallelBufferedSort,0,106610000,NearlySorted,7,ParallelBufferedSort,1,149910000,NearlySorted,7,ParallelBufferedSort,2,217210000,NearlySorted,7,ParallelBufferedSort,3,489110000,NearlySorted,7,ParallelBufferedSort,4,691710000,NearlySorted,7,ParallelBufferedSort,5,1737810000,NearlySorted,7,ParallelBufferedSort,6,1758410000,NearlySorted,7,ParallelBufferedSort,7,2721010000,NearlySorted,7,ParallelBufferedSort,8,5917910000,NearlySorted,7,ParallelBufferedSort,9,7420810000,NearlySorted,7,ParallelBufferedSort,10,7484410000,NearlySorted,7,ParallelRadixSort,0,313210000,NearlySorted,7,ParallelRadixSort,1,471210000,NearlySorted,7,ParallelRadixSort,2,1137610000,NearlySorted,7,ParallelRadixSort,3,3172910000,NearlySorted,7,ParallelRadixSort,4,6572910000,NearlySorted,7,ParallelRadixSort,5,12185210000,NearlySorted,7,ParallelRadixSort,6,20550010000,NearlySorted,7,ParallelRadixSort,7,32223310000,NearlySorted,7,ParallelRadixSort,8,47766710000,NearlySorted,7,ParallelRadixSort,9,67714910000,NearlySorted,7,ParallelRadixSort,10,92638710000,NearlySorted,7,StdSort,0,155010000,NearlySorted,7,StdSort,1,221310000,NearlySorted,7,StdSort,2,663910000,NearlySorted,7,StdSort,3,2103110000,NearlySorted,7,StdSort,4,4424910000,NearlySorted,7,StdSort,5,8359110000,NearlySorted,7,StdSort,6,13935610000,NearlySorted,7,StdSort,7,21867410000,NearlySorted,7,StdSort,8,32440510000,NearlySorted,7,StdSort,9,46099310000,NearlySorted,7,StdSort,10,63026710000,NearlySorted,8,ParallelSort,0,130710000,NearlySorted,8,ParallelSort,1,171810000,NearlySorted,8,ParallelSort,2,284310000,NearlySorted,8,ParallelSort,3,729910000,NearlySorted,8,ParallelSort,4,1131210000,NearlySorted,8,ParallelSort,5,2082510000,NearlySorted,8,ParallelSort,6,3494710000,NearlySorted,8,ParallelSort,7,5469710000,NearlySorted,8,ParallelSort,8,8097010000,NearlySorted,8,ParallelSort,9,11477210000,NearlySorted,8,ParallelSort,10,15686510000,NearlySorted,8,ParallelBufferedSort,0,148510000,NearlySorted,8,ParallelBufferedSort,1,184410000,NearlySorted,8,ParallelBufferedSort,2,273610000,NearlySorted,8,ParallelBufferedSort,3,508310000,NearlySorted,8,ParallelBufferedSort,4,901110000,NearlySorted,8,ParallelBufferedSort,5,1556910000,NearlySorted,8,ParallelBufferedSort,6,1598910000,NearlySorted,8,ParallelBufferedSort,7,4066710000,NearlySorted,8,ParallelBufferedSort,8,6013810000,NearlySorted,8,ParallelBufferedSort,9,4611610000,NearlySorted,8,ParallelBufferedSort,10,10333010000,NearlySorted,8,ParallelRadixSort,0,315710000,NearlySorted,8,ParallelRadixSort,1,470610000,NearlySorted,8,ParallelRadixSort,2,1137510000,NearlySorted,8,ParallelRadixSort,3,3172810000,NearlySorted,8,ParallelRadixSort,4,6571410000,NearlySorted,8,ParallelRadixSort,5,12182810000,NearlySorted,8,ParallelRadixSort,6,20548610000,NearlySorted,8,ParallelRadixSort,7,32219510000,NearlySorted,8,ParallelRadixSort,8,47754910000,NearlySorted,8,ParallelRadixSort,9,67713410000,NearlySorted,8,ParallelRadixSort,10,92608910000,NearlySorted,8,StdSort,0,155010000,NearlySorted,8,StdSort,1,221310000,NearlySorted,8,StdSort,2,664110000,NearlySorted,8,StdSort,3,2102610000,NearlySorted,8,StdSort,4,4424910000,NearlySorted,8,StdSort,5,8317110000,NearlySorted,8,StdSort,6,13918610000,NearlySorted,8,StdSort,7,21949210000,NearlySorted,8,StdSort,8,32440010000,NearlySorted,8,StdSort,9,46098610000,NearlySorted,8,StdSort,10,62955310000,NormalDistributionWithDups,1,ParallelSort,0,642610000,NormalDistributionWithDups,1,ParallelSort,1,854210000,NormalDistributionWithDups,1,ParallelSort,2,2346710000,NormalDistributionWithDups,1,ParallelSort,3,6896510000,NormalDistributionWithDups,1,ParallelSort,4,14411510000,NormalDistributionWithDups,1,ParallelSort,5,26606410000,NormalDistributionWithDups,1,ParallelSort,6,44893110000,NormalDistributionWithDups,1,ParallelSort,7,70488710000,NormalDistributionWithDups,1,ParallelSort,8,104411110000,NormalDistributionWithDups,1,ParallelSort,9,148032610000,NormalDistributionWithDups,1,ParallelSort,10,202549510000,NormalDistributionWithDups,1,ParallelBufferedSort,0,620410000,NormalDistributionWithDups,1,ParallelBufferedSort,1,844810000,NormalDistributionWithDups,1,ParallelBufferedSort,2,2346710000,NormalDistributionWithDups,1,ParallelBufferedSort,3,6950210000,NormalDistributionWithDups,1,ParallelBufferedSort,4,14411610000,NormalDistributionWithDups,1,ParallelBufferedSort,5,26606410000,NormalDistributionWithDups,1,ParallelBufferedSort,6,44897610000,NormalDistributionWithDups,1,ParallelBufferedSort,7,70457110000,NormalDistributionWithDups,1,ParallelBufferedSort,8,104411310000,NormalDistributionWithDups,1,ParallelBufferedSort,9,148033510000,NormalDistributionWithDups,1,ParallelBufferedSort,10,202559210000,NormalDistributionWithDups,1,ParallelRadixSort,0,567010000,NormalDistributionWithDups,1,ParallelRadixSort,1,857210000,NormalDistributionWithDups,1,ParallelRadixSort,2,2144910000,NormalDistributionWithDups,1,ParallelRadixSort,3,6099010000,NormalDistributionWithDups,1,ParallelRadixSort,4,12702610000,NormalDistributionWithDups,1,ParallelRadixSort,5,23576610000,NormalDistributionWithDups,1,ParallelRadixSort,6,39817010000,NormalDistributionWithDups,1,ParallelRadixSort,7,62480810000,NormalDistributionWithDups,1,ParallelRadixSort,8,92616710000,NormalDistributionWithDups,1,ParallelRadixSort,9,131343210000,NormalDistributionWithDups,1,ParallelRadixSort,10,179679910000,NormalDistributionWithDups,1,StdSort,0,630910000,NormalDistributionWithDups,1,StdSort,1,847610000,NormalDistributionWithDups,1,StdSort,2,2342510000,NormalDistributionWithDups,1,StdSort,3,6895810000,NormalDistributionWithDups,1,StdSort,4,14363010000,NormalDistributionWithDups,1,StdSort,5,26607410000,NormalDistributionWithDups,1,StdSort,6,44891610000,NormalDistributionWithDups,1,StdSort,7,70454810000,NormalDistributionWithDups,1,StdSort,8,104410610000,NormalDistributionWithDups,1,StdSort,9,148077810000,NormalDistributionWithDups,1,StdSort,10,202546210000,NormalDistributionWithDups,2,ParallelSort,0,206810000,NormalDistributionWithDups,2,ParallelSort,1,264310000,NormalDistributionWithDups,2,ParallelSort,2,649110000,NormalDistributionWithDups,2,ParallelSort,3,1829910000,NormalDistributionWithDups,2,ParallelSort,4,3797810000,NormalDistributionWithDups,2,ParallelSort,5,7032410000,NormalDistributionWithDups,2,ParallelSort,6,11863810000,NormalDistributionWithDups,2,ParallelSort,7,18616410000,NormalDistributionWithDups,2,ParallelSort,8,27598210000,NormalDistributionWithDups,2,ParallelSort,9,39119010000,NormalDistributionWithDups,2,ParallelSort,10,53503610000,NormalDistributionWithDups,2,ParallelBufferedSort,0,201710000,NormalDistributionWithDups,2,ParallelBufferedSort,1,253010000,NormalDistributionWithDups,2,ParallelBufferedSort,2,617610000,NormalDistributionWithDups,2,ParallelBufferedSort,3,1752210000,NormalDistributionWithDups,2,ParallelBufferedSort,4,3618610000,NormalDistributionWithDups,2,ParallelBufferedSort,5,6680210000,NormalDistributionWithDups,2,ParallelBufferedSort,6,11238010000,NormalDistributionWithDups,2,ParallelBufferedSort,7,17619110000,NormalDistributionWithDups,2,ParallelBufferedSort,8,26101210000,NormalDistributionWithDups,2,ParallelBufferedSort,9,36991010000,NormalDistributionWithDups,2,ParallelBufferedSort,10,50607410000,NormalDistributionWithDups,2,ParallelRadixSort,0,340510000,NormalDistributionWithDups,2,ParallelRadixSort,1,513610000,NormalDistributionWithDups,2,ParallelRadixSort,2,1258210000,NormalDistributionWithDups,2,ParallelRadixSort,3,3536910000,NormalDistributionWithDups,2,ParallelRadixSort,4,7341610000,NormalDistributionWithDups,2,ParallelRadixSort,5,13616110000,NormalDistributionWithDups,2,ParallelRadixSort,6,22981310000,NormalDistributionWithDups,2,ParallelRadixSort,7,36040010000,NormalDistributionWithDups,2,ParallelRadixSort,8,53437710000,NormalDistributionWithDups,2,ParallelRadixSort,9,75760210000,NormalDistributionWithDups,2,ParallelRadixSort,10,103636010000,NormalDistributionWithDups,2,StdSort,0,374510000,NormalDistributionWithDups,2,StdSort,1,502510000,NormalDistributionWithDups,2,StdSort,2,1400010000,NormalDistributionWithDups,2,StdSort,3,4154910000,NormalDistributionWithDups,2,StdSort,4,8589310000,NormalDistributionWithDups,2,StdSort,5,15904110000,NormalDistributionWithDups,2,StdSort,6,26844410000,NormalDistributionWithDups,2,StdSort,7,42251410000,NormalDistributionWithDups,2,StdSort,8,62545110000,NormalDistributionWithDups,2,StdSort,9,88562010000,NormalDistributionWithDups,2,StdSort,10,121109310000,NormalDistributionWithDups,3,ParallelSort,0,198810000,NormalDistributionWithDups,3,ParallelSort,1,241310000,NormalDistributionWithDups,3,ParallelSort,2,587110000,NormalDistributionWithDups,3,ParallelSort,3,1660610000,NormalDistributionWithDups,3,ParallelSort,4,3462810000,NormalDistributionWithDups,3,ParallelSort,5,6435110000,NormalDistributionWithDups,3,ParallelSort,6,10864510000,NormalDistributionWithDups,3,ParallelSort,7,17051210000,NormalDistributionWithDups,3,ParallelSort,8,25285810000,NormalDistributionWithDups,3,ParallelSort,9,35855010000,NormalDistributionWithDups,3,ParallelSort,10,49049610000,NormalDistributionWithDups,3,ParallelBufferedSort,0,196310000,NormalDistributionWithDups,3,ParallelBufferedSort,1,184610000,NormalDistributionWithDups,3,ParallelBufferedSort,2,449210000,NormalDistributionWithDups,3,ParallelBufferedSort,3,1272510000,NormalDistributionWithDups,3,ParallelBufferedSort,4,2634510000,NormalDistributionWithDups,3,ParallelBufferedSort,5,4862210000,NormalDistributionWithDups,3,ParallelBufferedSort,6,8187010000,NormalDistributionWithDups,3,ParallelBufferedSort,7,12845010000,NormalDistributionWithDups,3,ParallelBufferedSort,8,19035010000,NormalDistributionWithDups,3,ParallelBufferedSort,9,26961610000,NormalDistributionWithDups,3,ParallelBufferedSort,10,36900810000,NormalDistributionWithDups,3,ParallelRadixSort,0,417510000,NormalDistributionWithDups,3,ParallelRadixSort,1,628210000,NormalDistributionWithDups,3,ParallelRadixSort,2,1534610000,NormalDistributionWithDups,3,ParallelRadixSort,3,4303710000,NormalDistributionWithDups,3,ParallelRadixSort,4,8932810000,NormalDistributionWithDups,3,ParallelRadixSort,5,16563210000,NormalDistributionWithDups,3,ParallelRadixSort,6,27947510000,NormalDistributionWithDups,3,ParallelRadixSort,7,43853910000,NormalDistributionWithDups,3,ParallelRadixSort,8,64962210000,NormalDistributionWithDups,3,ParallelRadixSort,9,92116210000,NormalDistributionWithDups,3,ParallelRadixSort,10,126023010000,NormalDistributionWithDups,3,StdSort,0,457210000,NormalDistributionWithDups,3,StdSort,1,613610000,NormalDistributionWithDups,3,StdSort,2,1710410000,NormalDistributionWithDups,3,StdSort,3,5030910000,NormalDistributionWithDups,3,StdSort,4,10466610000,NormalDistributionWithDups,3,StdSort,5,19383910000,NormalDistributionWithDups,3,StdSort,6,32720110000,NormalDistributionWithDups,3,StdSort,7,51328210000,NormalDistributionWithDups,3,StdSort,8,76099710000,NormalDistributionWithDups,3,StdSort,9,107838510000,NormalDistributionWithDups,3,StdSort,10,147523710000,NormalDistributionWithDups,4,ParallelSort,0,225110000,NormalDistributionWithDups,4,ParallelSort,1,288410000,NormalDistributionWithDups,4,ParallelSort,2,679210000,NormalDistributionWithDups,4,ParallelSort,3,1857710000,NormalDistributionWithDups,4,ParallelSort,4,3835610000,NormalDistributionWithDups,4,ParallelSort,5,7105910000,NormalDistributionWithDups,4,ParallelSort,6,12024410000,NormalDistributionWithDups,4,ParallelSort,7,19057610000,NormalDistributionWithDups,4,ParallelSort,8,27903210000,NormalDistributionWithDups,4,ParallelSort,9,39611810000,NormalDistributionWithDups,4,ParallelSort,10,54016110000,NormalDistributionWithDups,4,ParallelBufferedSort,0,190210000,NormalDistributionWithDups,4,ParallelBufferedSort,1,239710000,NormalDistributionWithDups,4,ParallelBufferedSort,2,595710000,NormalDistributionWithDups,4,ParallelBufferedSort,3,1685210000,NormalDistributionWithDups,4,ParallelBufferedSort,4,3483810000,NormalDistributionWithDups,4,ParallelBufferedSort,5,6441610000,NormalDistributionWithDups,4,ParallelBufferedSort,6,11552710000,NormalDistributionWithDups,4,ParallelBufferedSort,7,17707810000,NormalDistributionWithDups,4,ParallelBufferedSort,8,26270610000,NormalDistributionWithDups,4,ParallelBufferedSort,9,36668310000,NormalDistributionWithDups,4,ParallelBufferedSort,10,51525710000,NormalDistributionWithDups,4,ParallelRadixSort,0,540410000,NormalDistributionWithDups,4,ParallelRadixSort,1,817310000,NormalDistributionWithDups,4,ParallelRadixSort,2,1999610000,NormalDistributionWithDups,4,ParallelRadixSort,3,5571810000,NormalDistributionWithDups,4,ParallelRadixSort,4,11560310000,NormalDistributionWithDups,4,ParallelRadixSort,5,21421310000,NormalDistributionWithDups,4,ParallelRadixSort,6,36145110000,NormalDistributionWithDups,4,ParallelRadixSort,7,56687410000,NormalDistributionWithDups,4,ParallelRadixSort,8,84020910000,NormalDistributionWithDups,4,ParallelRadixSort,9,119172610000,NormalDistributionWithDups,4,ParallelRadixSort,10,162990610000,NormalDistributionWithDups,4,StdSort,0,600910000,NormalDistributionWithDups,4,StdSort,1,801010000,NormalDistributionWithDups,4,StdSort,2,2199710000,NormalDistributionWithDups,4,StdSort,3,6478210000,NormalDistributionWithDups,4,StdSort,4,13488910000,NormalDistributionWithDups,4,StdSort,5,24956210000,NormalDistributionWithDups,4,StdSort,6,42174610000,NormalDistributionWithDups,4,StdSort,7,66175710000,NormalDistributionWithDups,4,StdSort,8,98048210000,NormalDistributionWithDups,4,StdSort,9,139142210000,NormalDistributionWithDups,4,StdSort,10,190187810000,NormalDistributionWithDups,5,ParallelSort,0,233110000,NormalDistributionWithDups,5,ParallelSort,1,291710000,NormalDistributionWithDups,5,ParallelSort,2,677210000,NormalDistributionWithDups,5,ParallelSort,3,1906510000,NormalDistributionWithDups,5,ParallelSort,4,3875810000,NormalDistributionWithDups,5,ParallelSort,5,7182010000,NormalDistributionWithDups,5,ParallelSort,6,11976710000,NormalDistributionWithDups,5,ParallelSort,7,19016210000,NormalDistributionWithDups,5,ParallelSort,8,27626410000,NormalDistributionWithDups,5,ParallelSort,9,39196910000,NormalDistributionWithDups,5,ParallelSort,10,52160710000,NormalDistributionWithDups,5,ParallelBufferedSort,0,218910000,NormalDistributionWithDups,5,ParallelBufferedSort,1,276610000,NormalDistributionWithDups,5,ParallelBufferedSort,2,664910000,NormalDistributionWithDups,5,ParallelBufferedSort,3,1828610000,NormalDistributionWithDups,5,ParallelBufferedSort,4,3749510000,NormalDistributionWithDups,5,ParallelBufferedSort,5,6476910000,NormalDistributionWithDups,5,ParallelBufferedSort,6,10888010000,NormalDistributionWithDups,5,ParallelBufferedSort,7,17097510000,NormalDistributionWithDups,5,ParallelBufferedSort,8,25330710000,NormalDistributionWithDups,5,ParallelBufferedSort,9,35814010000,NormalDistributionWithDups,5,ParallelBufferedSort,10,48899710000,NormalDistributionWithDups,5,ParallelRadixSort,0,615810000,NormalDistributionWithDups,5,ParallelRadixSort,1,924010000,NormalDistributionWithDups,5,ParallelRadixSort,2,2251210000,NormalDistributionWithDups,5,ParallelRadixSort,3,6301210000,NormalDistributionWithDups,5,ParallelRadixSort,4,13070510000,NormalDistributionWithDups,5,ParallelRadixSort,5,24219710000,NormalDistributionWithDups,5,ParallelRadixSort,6,40868710000,NormalDistributionWithDups,5,ParallelRadixSort,7,64165410000,NormalDistributionWithDups,5,ParallelRadixSort,8,94963010000,NormalDistributionWithDups,5,ParallelRadixSort,9,134661810000,NormalDistributionWithDups,5,ParallelRadixSort,10,184200910000,NormalDistributionWithDups,5,StdSort,0,660510000,NormalDistributionWithDups,5,StdSort,1,884010000,NormalDistributionWithDups,5,StdSort,2,2433510000,NormalDistributionWithDups,5,StdSort,3,7145710000,NormalDistributionWithDups,5,StdSort,4,14874110000,NormalDistributionWithDups,5,StdSort,5,27541710000,NormalDistributionWithDups,5,StdSort,6,46502910000,NormalDistributionWithDups,5,StdSort,7,72953610000,NormalDistributionWithDups,5,StdSort,8,108082610000,NormalDistributionWithDups,5,StdSort,9,153257210000,NormalDistributionWithDups,5,StdSort,10,209744410000,NormalDistributionWithDups,6,ParallelSort,0,151910000,NormalDistributionWithDups,6,ParallelSort,1,213310000,NormalDistributionWithDups,6,ParallelSort,2,408310000,NormalDistributionWithDups,6,ParallelSort,3,1144510000,NormalDistributionWithDups,6,ParallelSort,4,2396610000,NormalDistributionWithDups,6,ParallelSort,5,4357610000,NormalDistributionWithDups,6,ParallelSort,6,7334010000,NormalDistributionWithDups,6,ParallelSort,7,11501510000,NormalDistributionWithDups,6,ParallelSort,8,17055510000,NormalDistributionWithDups,6,ParallelSort,9,24094910000,NormalDistributionWithDups,6,ParallelSort,10,33130810000,NormalDistributionWithDups,6,ParallelBufferedSort,0,138910000,NormalDistributionWithDups,6,ParallelBufferedSort,1,176410000,NormalDistributionWithDups,6,ParallelBufferedSort,2,415210000,NormalDistributionWithDups,6,ParallelBufferedSort,3,993310000,NormalDistributionWithDups,6,ParallelBufferedSort,4,2017810000,NormalDistributionWithDups,6,ParallelBufferedSort,5,3700110000,NormalDistributionWithDups,6,ParallelBufferedSort,6,6200510000,NormalDistributionWithDups,6,ParallelBufferedSort,7,9698810000,NormalDistributionWithDups,6,ParallelBufferedSort,8,14378710000,NormalDistributionWithDups,6,ParallelBufferedSort,9,20426110000,NormalDistributionWithDups,6,ParallelBufferedSort,10,27868810000,NormalDistributionWithDups,6,ParallelRadixSort,0,357310000,NormalDistributionWithDups,6,ParallelRadixSort,1,535010000,NormalDistributionWithDups,6,ParallelRadixSort,2,1290210000,NormalDistributionWithDups,6,ParallelRadixSort,3,3603110000,NormalDistributionWithDups,6,ParallelRadixSort,4,7466310000,NormalDistributionWithDups,6,ParallelRadixSort,5,13833910000,NormalDistributionWithDups,6,ParallelRadixSort,6,23340110000,NormalDistributionWithDups,6,ParallelRadixSort,7,36604010000,NormalDistributionWithDups,6,ParallelRadixSort,8,54247310000,NormalDistributionWithDups,6,ParallelRadixSort,9,76918810000,NormalDistributionWithDups,6,ParallelRadixSort,10,105218810000,NormalDistributionWithDups,6,StdSort,0,385510000,NormalDistributionWithDups,6,StdSort,1,516710000,NormalDistributionWithDups,6,StdSort,2,1438810000,NormalDistributionWithDups,6,StdSort,3,4235210000,NormalDistributionWithDups,6,StdSort,4,8824110000,NormalDistributionWithDups,6,StdSort,5,16349210000,NormalDistributionWithDups,6,StdSort,6,27589910000,NormalDistributionWithDups,6,StdSort,7,43293710000,NormalDistributionWithDups,6,StdSort,8,64154710000,NormalDistributionWithDups,6,StdSort,9,90959710000,NormalDistributionWithDups,6,StdSort,10,124451110000,NormalDistributionWithDups,7,ParallelSort,0,189110000,NormalDistributionWithDups,7,ParallelSort,1,247710000,NormalDistributionWithDups,7,ParallelSort,2,447810000,NormalDistributionWithDups,7,ParallelSort,3,1292810000,NormalDistributionWithDups,7,ParallelSort,4,2708710000,NormalDistributionWithDups,7,ParallelSort,5,5046310000,NormalDistributionWithDups,7,ParallelSort,6,8537110000,NormalDistributionWithDups,7,ParallelSort,7,13403110000,NormalDistributionWithDups,7,ParallelSort,8,19881810000,NormalDistributionWithDups,7,ParallelSort,9,28205410000,NormalDistributionWithDups,7,ParallelSort,10,38582410000,NormalDistributionWithDups,7,ParallelBufferedSort,0,203710000,NormalDistributionWithDups,7,ParallelBufferedSort,1,224310000,NormalDistributionWithDups,7,ParallelBufferedSort,2,529410000,NormalDistributionWithDups,7,ParallelBufferedSort,3,1046710000,NormalDistributionWithDups,7,ParallelBufferedSort,4,2050110000,NormalDistributionWithDups,7,ParallelBufferedSort,5,3764610000,NormalDistributionWithDups,7,ParallelBufferedSort,6,6322910000,NormalDistributionWithDups,7,ParallelBufferedSort,7,9909910000,NormalDistributionWithDups,7,ParallelBufferedSort,8,14652610000,NormalDistributionWithDups,7,ParallelBufferedSort,9,20771410000,NormalDistributionWithDups,7,ParallelBufferedSort,10,28373910000,NormalDistributionWithDups,7,ParallelRadixSort,0,441110000,NormalDistributionWithDups,7,ParallelRadixSort,1,664410000,NormalDistributionWithDups,7,ParallelRadixSort,2,1610410000,NormalDistributionWithDups,7,ParallelRadixSort,3,4495010000,NormalDistributionWithDups,7,ParallelRadixSort,4,9311710000,NormalDistributionWithDups,7,ParallelRadixSort,5,17248510000,NormalDistributionWithDups,7,ParallelRadixSort,6,29096210000,NormalDistributionWithDups,7,ParallelRadixSort,7,45630510000,NormalDistributionWithDups,7,ParallelRadixSort,8,67622410000,NormalDistributionWithDups,7,ParallelRadixSort,9,95902410000,NormalDistributionWithDups,7,ParallelRadixSort,10,131141910000,NormalDistributionWithDups,7,StdSort,0,476510000,NormalDistributionWithDups,7,StdSort,1,635910000,NormalDistributionWithDups,7,StdSort,2,1764210000,NormalDistributionWithDups,7,StdSort,3,5200610000,NormalDistributionWithDups,7,StdSort,4,10815010000,NormalDistributionWithDups,7,StdSort,5,20045510000,NormalDistributionWithDups,7,StdSort,6,33831010000,NormalDistributionWithDups,7,StdSort,7,53055810000,NormalDistributionWithDups,7,StdSort,8,78679810000,NormalDistributionWithDups,7,StdSort,9,111457710000,NormalDistributionWithDups,7,StdSort,10,152632810000,NormalDistributionWithDups,8,ParallelSort,0,253410000,NormalDistributionWithDups,8,ParallelSort,1,214110000,NormalDistributionWithDups,8,ParallelSort,2,473810000,NormalDistributionWithDups,8,ParallelSort,3,1152010000,NormalDistributionWithDups,8,ParallelSort,4,2363910000,NormalDistributionWithDups,8,ParallelSort,5,4356910000,NormalDistributionWithDups,8,ParallelSort,6,7309710000,NormalDistributionWithDups,8,ParallelSort,7,11465910000,NormalDistributionWithDups,8,ParallelSort,8,17019710000,NormalDistributionWithDups,8,ParallelSort,9,24044210000,NormalDistributionWithDups,8,ParallelSort,10,32921810000,NormalDistributionWithDups,8,ParallelBufferedSort,0,210910000,NormalDistributionWithDups,8,ParallelBufferedSort,1,256310000,NormalDistributionWithDups,8,ParallelBufferedSort,2,445610000,NormalDistributionWithDups,8,ParallelBufferedSort,3,980410000,NormalDistributionWithDups,8,ParallelBufferedSort,4,1855410000,NormalDistributionWithDups,8,ParallelBufferedSort,5,3373910000,NormalDistributionWithDups,8,ParallelBufferedSort,6,5763510000,NormalDistributionWithDups,8,ParallelBufferedSort,7,8691610000,NormalDistributionWithDups,8,ParallelBufferedSort,8,7620010000,NormalDistributionWithDups,8,ParallelBufferedSort,9,12056310000,NormalDistributionWithDups,8,ParallelBufferedSort,10,15796810000,NormalDistributionWithDups,8,ParallelRadixSort,0,327710000,NormalDistributionWithDups,8,ParallelRadixSort,1,490410000,NormalDistributionWithDups,8,ParallelRadixSort,2,1183310000,NormalDistributionWithDups,8,ParallelRadixSort,3,3298910000,NormalDistributionWithDups,8,ParallelRadixSort,4,6834810000,NormalDistributionWithDups,8,ParallelRadixSort,5,12662310000,NormalDistributionWithDups,8,ParallelRadixSort,6,21357110000,NormalDistributionWithDups,8,ParallelRadixSort,7,33493310000,NormalDistributionWithDups,8,ParallelRadixSort,8,49649010000,NormalDistributionWithDups,8,ParallelRadixSort,9,70384010000,NormalDistributionWithDups,8,ParallelRadixSort,10,96279210000,NormalDistributionWithDups,8,StdSort,0,356610000,NormalDistributionWithDups,8,StdSort,1,477710000,NormalDistributionWithDups,8,StdSort,2,1332110000,NormalDistributionWithDups,8,StdSort,3,3936110000,NormalDistributionWithDups,8,StdSort,4,8206110000,NormalDistributionWithDups,8,StdSort,5,15198410000,NormalDistributionWithDups,8,StdSort,6,25638010000,NormalDistributionWithDups,8,StdSort,7,40240810000,NormalDistributionWithDups,8,StdSort,8,59634810000,NormalDistributionWithDups,8,StdSort,9,84548410000,NormalDistributionWithDups,8,StdSort,10,115678910000,SawTooth,1,ParallelSort,0,313710000,SawTooth,1,ParallelSort,1,441410000,SawTooth,1,ParallelSort,2,1266510000,SawTooth,1,ParallelSort,3,3906010000,SawTooth,1,ParallelSort,4,8163010000,SawTooth,1,ParallelSort,5,15176810000,SawTooth,1,ParallelSort,6,25627710000,SawTooth,1,ParallelSort,7,40232310000,SawTooth,1,ParallelSort,8,59641510000,SawTooth,1,ParallelSort,9,84577110000,SawTooth,1,ParallelSort,10,115745610000,SawTooth,1,ParallelBufferedSort,0,310210000,SawTooth,1,ParallelBufferedSort,1,441310000,SawTooth,1,ParallelBufferedSort,2,1266710000,SawTooth,1,ParallelBufferedSort,3,3901910000,SawTooth,1,ParallelBufferedSort,4,8163010000,SawTooth,1,ParallelBufferedSort,5,15159910000,SawTooth,1,ParallelBufferedSort,6,25633210000,SawTooth,1,ParallelBufferedSort,7,40236510000,SawTooth,1,ParallelBufferedSort,8,59640210000,SawTooth,1,ParallelBufferedSort,9,84579710000,SawTooth,1,ParallelBufferedSort,10,115740910000,SawTooth,1,ParallelRadixSort,0,302610000,SawTooth,1,ParallelRadixSort,1,472010000,SawTooth,1,ParallelRadixSort,2,1161910000,SawTooth,1,ParallelRadixSort,3,3304110000,SawTooth,1,ParallelRadixSort,4,6878210000,SawTooth,1,ParallelRadixSort,5,12767710000,SawTooth,1,ParallelRadixSort,6,21559410000,SawTooth,1,ParallelRadixSort,7,33823210000,SawTooth,1,ParallelRadixSort,8,50170210000,SawTooth,1,ParallelRadixSort,9,71122610000,SawTooth,1,ParallelRadixSort,10,97315510000,SawTooth,1,StdSort,0,310410000,SawTooth,1,StdSort,1,436110000,SawTooth,1,StdSort,2,1266810000,SawTooth,1,StdSort,3,3901710000,SawTooth,1,StdSort,4,8168810000,SawTooth,1,StdSort,5,15163710000,SawTooth,1,StdSort,6,25622610000,SawTooth,1,StdSort,7,40243310000,SawTooth,1,StdSort,8,59647910000,SawTooth,1,StdSort,9,84610910000,SawTooth,1,StdSort,10,115768110000,SawTooth,2,ParallelSort,0,187510000,SawTooth,2,ParallelSort,1,256210000,SawTooth,2,ParallelSort,2,701510000,SawTooth,2,ParallelSort,3,2067810000,SawTooth,2,ParallelSort,4,4309610000,SawTooth,2,ParallelSort,5,7988010000,SawTooth,2,ParallelSort,6,13473710000,SawTooth,2,ParallelSort,7,21136710000,SawTooth,2,ParallelSort,8,31329010000,SawTooth,2,ParallelSort,9,44419110000,SawTooth,2,ParallelSort,10,60776310000,SawTooth,2,ParallelBufferedSort,0,143310000,SawTooth,2,ParallelBufferedSort,1,189510000,SawTooth,2,ParallelBufferedSort,2,488510000,SawTooth,2,ParallelBufferedSort,3,1433010000,SawTooth,2,ParallelBufferedSort,4,2976110000,SawTooth,2,ParallelBufferedSort,5,5506910000,SawTooth,2,ParallelBufferedSort,6,9270810000,SawTooth,2,ParallelBufferedSort,7,14548310000,SawTooth,2,ParallelBufferedSort,8,21575010000,SawTooth,2,ParallelBufferedSort,9,30569210000,SawTooth,2,ParallelBufferedSort,10,41811310000,SawTooth,2,ParallelRadixSort,0,307810000,SawTooth,2,ParallelRadixSort,1,466310000,SawTooth,2,ParallelRadixSort,2,1145310000,SawTooth,2,ParallelRadixSort,3,3223910000,SawTooth,2,ParallelRadixSort,4,6696310000,SawTooth,2,ParallelRadixSort,5,12422810000,SawTooth,2,ParallelRadixSort,6,20959610000,SawTooth,2,ParallelRadixSort,7,32874410000,SawTooth,2,ParallelRadixSort,8,48723810000,SawTooth,2,ParallelRadixSort,9,69092710000,SawTooth,2,ParallelRadixSort,10,94504010000,SawTooth,2,StdSort,0,310410000,SawTooth,2,StdSort,1,436110000,SawTooth,2,StdSort,2,1266710000,SawTooth,2,StdSort,3,3901710000,SawTooth,2,StdSort,4,8168910000,SawTooth,2,StdSort,5,15141110000,SawTooth,2,StdSort,6,25621910000,SawTooth,2,StdSort,7,40244610000,SawTooth,2,StdSort,8,59716310000,SawTooth,2,StdSort,9,84736510000,SawTooth,2,StdSort,10,115874510000,SawTooth,3,ParallelSort,0,159710000,SawTooth,3,ParallelSort,1,215510000,SawTooth,3,ParallelSort,2,572410000,SawTooth,3,ParallelSort,3,1676810000,SawTooth,3,ParallelSort,4,3473010000,SawTooth,3,ParallelSort,5,6439310000,SawTooth,3,ParallelSort,6,10854010000,SawTooth,3,ParallelSort,7,17032710000,SawTooth,3,ParallelSort,8,25237710000,SawTooth,3,ParallelSort,9,35768310000,SawTooth,3,ParallelSort,10,48931910000,SawTooth,3,ParallelBufferedSort,0,131810000,SawTooth,3,ParallelBufferedSort,1,168010000,SawTooth,3,ParallelBufferedSort,2,317910000,SawTooth,3,ParallelBufferedSort,3,926410000,SawTooth,3,ParallelBufferedSort,4,1917410000,SawTooth,3,ParallelBufferedSort,5,3542710000,SawTooth,3,ParallelBufferedSort,6,5964610000,SawTooth,3,ParallelBufferedSort,7,9358910000,SawTooth,3,ParallelBufferedSort,8,13871710000,SawTooth,3,ParallelBufferedSort,9,19650610000,SawTooth,3,ParallelBufferedSort,10,26881310000,SawTooth,3,ParallelRadixSort,0,312010000,SawTooth,3,ParallelRadixSort,1,467510000,SawTooth,3,ParallelRadixSort,2,1139910000,SawTooth,3,ParallelRadixSort,3,3197610000,SawTooth,3,ParallelRadixSort,4,6632910000,SawTooth,3,ParallelRadixSort,5,12303810000,SawTooth,3,ParallelRadixSort,6,20760410000,SawTooth,3,ParallelRadixSort,7,32553710000,SawTooth,3,ParallelRadixSort,8,48249110000,SawTooth,3,ParallelRadixSort,9,68419810000,SawTooth,3,ParallelRadixSort,10,93586710000,SawTooth,3,StdSort,0,310410000,SawTooth,3,StdSort,1,440810000,SawTooth,3,StdSort,2,1266110000,SawTooth,3,StdSort,3,3902610000,SawTooth,3,StdSort,4,8169810000,SawTooth,3,StdSort,5,15162910000,SawTooth,3,StdSort,6,25618710000,SawTooth,3,StdSort,7,40234310000,SawTooth,3,StdSort,8,59645510000,SawTooth,3,StdSort,9,84732410000,SawTooth,3,StdSort,10,115746110000,SawTooth,4,ParallelSort,0,148810000,SawTooth,4,ParallelSort,1,195410000,SawTooth,4,ParallelSort,2,516110000,SawTooth,4,ParallelSort,3,1495510000,SawTooth,4,ParallelSort,4,3105610000,SawTooth,4,ParallelSort,5,5753910000,SawTooth,4,ParallelSort,6,9682310000,SawTooth,4,ParallelSort,7,15197810000,SawTooth,4,ParallelSort,8,22553710000,SawTooth,4,ParallelSort,9,31971010000,SawTooth,4,ParallelSort,10,43745910000,SawTooth,4,ParallelBufferedSort,0,118810000,SawTooth,4,ParallelBufferedSort,1,130810000,SawTooth,4,ParallelBufferedSort,2,323110000,SawTooth,4,ParallelBufferedSort,3,934010000,SawTooth,4,ParallelBufferedSort,4,1915910000,SawTooth,4,ParallelBufferedSort,5,3545910000,SawTooth,4,ParallelBufferedSort,6,5968910000,SawTooth,4,ParallelBufferedSort,7,9367010000,SawTooth,4,ParallelBufferedSort,8,13951210000,SawTooth,4,ParallelBufferedSort,9,21089310000,SawTooth,4,ParallelBufferedSort,10,30682610000,SawTooth,4,ParallelRadixSort,0,308510000,SawTooth,4,ParallelRadixSort,1,466910000,SawTooth,4,ParallelRadixSort,2,1136610000,SawTooth,4,ParallelRadixSort,3,3185610000,SawTooth,4,ParallelRadixSort,4,6605010000,SawTooth,4,ParallelRadixSort,5,12246010000,SawTooth,4,ParallelRadixSort,6,20657110000,SawTooth,4,ParallelRadixSort,7,32395710000,SawTooth,4,ParallelRadixSort,8,48015910000,SawTooth,4,ParallelRadixSort,9,68070010000,SawTooth,4,ParallelRadixSort,10,93144610000,SawTooth,4,StdSort,0,310410000,SawTooth,4,StdSort,1,440810000,SawTooth,4,StdSort,2,1266110000,SawTooth,4,StdSort,3,3901510000,SawTooth,4,StdSort,4,8168510000,SawTooth,4,StdSort,5,15162610000,SawTooth,4,StdSort,6,25622210000,SawTooth,4,StdSort,7,40232710000,SawTooth,4,StdSort,8,59659410000,SawTooth,4,StdSort,9,84577010000,SawTooth,4,StdSort,10,115760610000,SawTooth,5,ParallelSort,0,149010000,SawTooth,5,ParallelSort,1,189210000,SawTooth,5,ParallelSort,2,490010000,SawTooth,5,ParallelSort,3,1453510000,SawTooth,5,ParallelSort,4,3019910000,SawTooth,5,ParallelSort,5,5593210000,SawTooth,5,ParallelSort,6,9431110000,SawTooth,5,ParallelSort,7,14786810000,SawTooth,5,ParallelSort,8,21911610000,SawTooth,5,ParallelSort,9,31077710000,SawTooth,5,ParallelSort,10,42480310000,SawTooth,5,ParallelBufferedSort,0,112610000,SawTooth,5,ParallelBufferedSort,1,142910000,SawTooth,5,ParallelBufferedSort,2,328210000,SawTooth,5,ParallelBufferedSort,3,931810000,SawTooth,5,ParallelBufferedSort,4,1919210000,SawTooth,5,ParallelBufferedSort,5,3544010000,SawTooth,5,ParallelBufferedSort,6,5977210000,SawTooth,5,ParallelBufferedSort,7,9359510000,SawTooth,5,ParallelBufferedSort,8,13143710000,SawTooth,5,ParallelBufferedSort,9,19653510000,SawTooth,5,ParallelBufferedSort,10,25418710000,SawTooth,5,ParallelRadixSort,0,308710000,SawTooth,5,ParallelRadixSort,1,468210000,SawTooth,5,ParallelRadixSort,2,1138010000,SawTooth,5,ParallelRadixSort,3,3179610000,SawTooth,5,ParallelRadixSort,4,6588610000,SawTooth,5,ParallelRadixSort,5,12210810000,SawTooth,5,ParallelRadixSort,6,20603510000,SawTooth,5,ParallelRadixSort,7,32298110000,SawTooth,5,ParallelRadixSort,8,47884710000,SawTooth,5,ParallelRadixSort,9,67870610000,SawTooth,5,ParallelRadixSort,10,92831310000,SawTooth,5,StdSort,0,310410000,SawTooth,5,StdSort,1,436010000,SawTooth,5,StdSort,2,1266710000,SawTooth,5,StdSort,3,3900910000,SawTooth,5,StdSort,4,8162810000,SawTooth,5,StdSort,5,15163410000,SawTooth,5,StdSort,6,25623110000,SawTooth,5,StdSort,7,40247710000,SawTooth,5,StdSort,8,59651010000,SawTooth,5,StdSort,9,84722910000,SawTooth,5,StdSort,10,115870710000,SawTooth,6,ParallelSort,0,163010000,SawTooth,6,ParallelSort,1,193610000,SawTooth,6,ParallelSort,2,492410000,SawTooth,6,ParallelSort,3,1455910000,SawTooth,6,ParallelSort,4,3024010000,SawTooth,6,ParallelSort,5,5587510000,SawTooth,6,ParallelSort,6,9421510000,SawTooth,6,ParallelSort,7,14790810000,SawTooth,6,ParallelSort,8,21876410000,SawTooth,6,ParallelSort,9,31041410000,SawTooth,6,ParallelSort,10,42488910000,SawTooth,6,ParallelBufferedSort,0,199410000,SawTooth,6,ParallelBufferedSort,1,140110000,SawTooth,6,ParallelBufferedSort,2,329110000,SawTooth,6,ParallelBufferedSort,3,929310000,SawTooth,6,ParallelBufferedSort,4,1822110000,SawTooth,6,ParallelBufferedSort,5,3349010000,SawTooth,6,ParallelBufferedSort,6,5640310000,SawTooth,6,ParallelBufferedSort,7,8836010000,SawTooth,6,ParallelBufferedSort,8,13085310000,SawTooth,6,ParallelBufferedSort,9,18550910000,SawTooth,6,ParallelBufferedSort,10,25353710000,SawTooth,6,ParallelRadixSort,0,311310000,SawTooth,6,ParallelRadixSort,1,467110000,SawTooth,6,ParallelRadixSort,2,1134810000,SawTooth,6,ParallelRadixSort,3,3172610000,SawTooth,6,ParallelRadixSort,4,6576010000,SawTooth,6,ParallelRadixSort,5,12189210000,SawTooth,6,ParallelRadixSort,6,20556410000,SawTooth,6,ParallelRadixSort,7,32237310000,SawTooth,6,ParallelRadixSort,8,47792410000,SawTooth,6,ParallelRadixSort,9,67751110000,SawTooth,6,ParallelRadixSort,10,92656410000,SawTooth,6,StdSort,0,310310000,SawTooth,6,StdSort,1,436110000,SawTooth,6,StdSort,2,1266710000,SawTooth,6,StdSort,3,3901810000,SawTooth,6,StdSort,4,8168810000,SawTooth,6,StdSort,5,15160510000,SawTooth,6,StdSort,6,25622110000,SawTooth,6,StdSort,7,40235710000,SawTooth,6,StdSort,8,59644410000,SawTooth,6,StdSort,9,84584210000,SawTooth,6,StdSort,10,115747210000,SawTooth,7,ParallelSort,0,172710000,SawTooth,7,ParallelSort,1,203410000,SawTooth,7,ParallelSort,2,492410000,SawTooth,7,ParallelSort,3,1456810000,SawTooth,7,ParallelSort,4,3017910000,SawTooth,7,ParallelSort,5,5584810000,SawTooth,7,ParallelSort,6,9422610000,SawTooth,7,ParallelSort,7,14774910000,SawTooth,7,ParallelSort,8,21902010000,SawTooth,7,ParallelSort,9,31024210000,SawTooth,7,ParallelSort,10,42454410000,SawTooth,7,ParallelBufferedSort,0,153310000,SawTooth,7,ParallelBufferedSort,1,172010000,SawTooth,7,ParallelBufferedSort,2,335910000,SawTooth,7,ParallelBufferedSort,3,831810000,SawTooth,7,ParallelBufferedSort,4,1289410000,SawTooth,7,ParallelBufferedSort,5,2265910000,SawTooth,7,ParallelBufferedSort,6,3741610000,SawTooth,7,ParallelBufferedSort,7,5811810000,SawTooth,7,ParallelBufferedSort,8,8541710000,SawTooth,7,ParallelBufferedSort,9,12087610000,SawTooth,7,ParallelBufferedSort,10,16554010000,SawTooth,7,ParallelRadixSort,0,310510000,SawTooth,7,ParallelRadixSort,1,467410000,SawTooth,7,ParallelRadixSort,2,1134410000,SawTooth,7,ParallelRadixSort,3,3171510000,SawTooth,7,ParallelRadixSort,4,6572510000,SawTooth,7,ParallelRadixSort,5,12177510000,SawTooth,7,ParallelRadixSort,6,20542910000,SawTooth,7,ParallelRadixSort,7,32217510000,SawTooth,7,ParallelRadixSort,8,47745610000,SawTooth,7,ParallelRadixSort,9,67697610000,SawTooth,7,ParallelRadixSort,10,92596710000,SawTooth,7,StdSort,0,310510000,SawTooth,7,StdSort,1,440710000,SawTooth,7,StdSort,2,1266710000,SawTooth,7,StdSort,3,3901410000,SawTooth,7,StdSort,4,8168510000,SawTooth,7,StdSort,5,15162710000,SawTooth,7,StdSort,6,25622010000,SawTooth,7,StdSort,7,40233910000,SawTooth,7,StdSort,8,59662510000,SawTooth,7,StdSort,9,84618810000,SawTooth,7,StdSort,10,115776010000,SawTooth,8,ParallelSort,0,195510000,SawTooth,8,ParallelSort,1,223210000,SawTooth,8,ParallelSort,2,494510000,SawTooth,8,ParallelSort,3,1460510000,SawTooth,8,ParallelSort,4,3032010000,SawTooth,8,ParallelSort,5,5618210000,SawTooth,8,ParallelSort,6,9475810000,SawTooth,8,ParallelSort,7,14869110000,SawTooth,8,ParallelSort,8,22025810000,SawTooth,8,ParallelSort,9,31219210000,SawTooth,8,ParallelSort,10,42728910000,SawTooth,8,ParallelBufferedSort,0,175510000,SawTooth,8,ParallelBufferedSort,1,226610000,SawTooth,8,ParallelBufferedSort,2,355210000,SawTooth,8,ParallelBufferedSort,3,928510000,SawTooth,8,ParallelBufferedSort,4,1747610000,SawTooth,8,ParallelBufferedSort,5,2189510000,SawTooth,8,ParallelBufferedSort,6,3336310000,SawTooth,8,ParallelBufferedSort,7,5606410000,SawTooth,8,ParallelBufferedSort,8,8293710000,SawTooth,8,ParallelBufferedSort,9,11583010000,SawTooth,8,ParallelBufferedSort,10,19504010000,SawTooth,8,ParallelRadixSort,0,307710000,SawTooth,8,ParallelRadixSort,1,466310000,SawTooth,8,ParallelRadixSort,2,1134010000,SawTooth,8,ParallelRadixSort,3,3168910000,SawTooth,8,ParallelRadixSort,4,6567410000,SawTooth,8,ParallelRadixSort,5,12167510000,SawTooth,8,ParallelRadixSort,6,20530210000,SawTooth,8,ParallelRadixSort,7,32194210000,SawTooth,8,ParallelRadixSort,8,47709410000,SawTooth,8,ParallelRadixSort,9,67650410000,SawTooth,8,ParallelRadixSort,10,92529310000,SawTooth,8,StdSort,0,310410000,SawTooth,8,StdSort,1,436210000,SawTooth,8,StdSort,2,1266810000,SawTooth,8,StdSort,3,3900510000,SawTooth,8,StdSort,4,8168510000,SawTooth,8,StdSort,5,15162710000,SawTooth,8,StdSort,6,25615010000,SawTooth,8,StdSort,7,40235110000,SawTooth,8,StdSort,8,59648410000,SawTooth,8,StdSort,9,84595110000,SawTooth,8,StdSort,10,1158750100000,Random,1,ParallelSort,0,45227100000,Random,1,ParallelSort,1,63702100000,Random,1,ParallelSort,2,177331100000,Random,1,ParallelSort,3,511984100000,Random,1,ParallelSort,4,1070082100000,Random,1,ParallelSort,5,1984964100000,Random,1,ParallelSort,6,3350739100000,Random,1,ParallelSort,7,5261736100000,Random,1,ParallelSort,8,7797596100000,Random,1,ParallelSort,9,11055900100000,Random,1,ParallelSort,10,15128728100000,Random,1,ParallelBufferedSort,0,45231100000,Random,1,ParallelBufferedSort,1,63691100000,Random,1,ParallelBufferedSort,2,177318100000,Random,1,ParallelBufferedSort,3,512062100000,Random,1,ParallelBufferedSort,4,1070332100000,Random,1,ParallelBufferedSort,5,1986091100000,Random,1,ParallelBufferedSort,6,3351053100000,Random,1,ParallelBufferedSort,7,5261325100000,Random,1,ParallelBufferedSort,8,7798484100000,Random,1,ParallelBufferedSort,9,11057375100000,Random,1,ParallelBufferedSort,10,15130668100000,Random,1,ParallelRadixSort,0,30790100000,Random,1,ParallelRadixSort,1,47039100000,Random,1,ParallelRadixSort,2,116771100000,Random,1,ParallelRadixSort,3,335148100000,Random,1,ParallelRadixSort,4,703257100000,Random,1,ParallelRadixSort,5,1309772100000,Random,1,ParallelRadixSort,6,2216037100000,Random,1,ParallelRadixSort,7,3481744100000,Random,1,ParallelRadixSort,8,5163907100000,Random,1,ParallelRadixSort,9,7326182100000,Random,1,ParallelRadixSort,10,10028429100000,Random,1,StdSort,0,45259100000,Random,1,StdSort,1,63701100000,Random,1,StdSort,2,177081100000,Random,1,StdSort,3,511953100000,Random,1,StdSort,4,1071523100000,Random,1,StdSort,5,2001040100000,Random,1,StdSort,6,3350524100000,Random,1,StdSort,7,5262759100000,Random,1,StdSort,8,7800255100000,Random,1,StdSort,9,11058868100000,Random,1,StdSort,10,15131171100000,Random,2,ParallelSort,0,22236100000,Random,2,ParallelSort,1,29765100000,Random,2,ParallelSort,2,77318100000,Random,2,ParallelSort,3,221988100000,Random,2,ParallelSort,4,465974100000,Random,2,ParallelSort,5,867721100000,Random,2,ParallelSort,6,1466204100000,Random,2,ParallelSort,7,2304855100000,Random,2,ParallelSort,8,3416230100000,Random,2,ParallelSort,9,4847111100000,Random,2,ParallelSort,10,6629069100000,Random,2,ParallelBufferedSort,0,18208100000,Random,2,ParallelBufferedSort,1,24041100000,Random,2,ParallelBufferedSort,2,59934100000,Random,2,ParallelBufferedSort,3,170242100000,Random,2,ParallelBufferedSort,4,354311100000,Random,2,ParallelBufferedSort,5,656703100000,Random,2,ParallelBufferedSort,6,1107775100000,Random,2,ParallelBufferedSort,7,1739204100000,Random,2,ParallelBufferedSort,8,2579113100000,Random,2,ParallelBufferedSort,9,3655318100000,Random,2,ParallelBufferedSort,10,5002132100000,Random,2,ParallelRadixSort,0,17238100000,Random,2,ParallelRadixSort,1,25206100000,Random,2,ParallelRadixSort,2,60181100000,Random,2,ParallelRadixSort,3,169640100000,Random,2,ParallelRadixSort,4,353086100000,Random,2,ParallelRadixSort,5,655784100000,Random,2,ParallelRadixSort,6,1107691100000,Random,2,ParallelRadixSort,7,1738807100000,Random,2,ParallelRadixSort,8,2578665100000,Random,2,ParallelRadixSort,9,3659858100000,Random,2,ParallelRadixSort,10,5009023100000,Random,2,StdSort,0,43847100000,Random,2,StdSort,1,61909100000,Random,2,StdSort,2,171885100000,Random,2,StdSort,3,494190100000,Random,2,StdSort,4,1032879100000,Random,2,StdSort,5,1916890100000,Random,2,StdSort,6,3236237100000,Random,2,StdSort,7,5078929100000,Random,2,StdSort,8,7526545100000,Random,2,StdSort,9,10672064100000,Random,2,StdSort,10,14602229100000,Random,3,ParallelSort,0,16807100000,Random,3,ParallelSort,1,22024100000,Random,3,ParallelSort,2,55604100000,Random,3,ParallelSort,3,159300100000,Random,3,ParallelSort,4,333170100000,Random,3,ParallelSort,5,619796100000,Random,3,ParallelSort,6,1047142100000,Random,3,ParallelSort,7,1644120100000,Random,3,ParallelSort,8,2438527100000,Random,3,ParallelSort,9,3459893100000,Random,3,ParallelSort,10,4735912100000,Random,3,ParallelBufferedSort,0,11884100000,Random,3,ParallelBufferedSort,1,15575100000,Random,3,ParallelBufferedSort,2,39049100000,Random,3,ParallelBufferedSort,3,111248100000,Random,3,ParallelBufferedSort,4,231484100000,Random,3,ParallelBufferedSort,5,429706100000,Random,3,ParallelBufferedSort,6,725941100000,Random,3,ParallelBufferedSort,7,1140549100000,Random,3,ParallelBufferedSort,8,1693707100000,Random,3,ParallelBufferedSort,9,2393916100000,Random,3,ParallelBufferedSort,10,3276346100000,Random,3,ParallelRadixSort,0,29950100000,Random,3,ParallelRadixSort,1,43960100000,Random,3,ParallelRadixSort,2,106310100000,Random,3,ParallelRadixSort,3,297664100000,Random,3,ParallelRadixSort,4,620007100000,Random,3,ParallelRadixSort,5,1150303100000,Random,3,ParallelRadixSort,6,1942849100000,Random,3,ParallelRadixSort,7,3049235100000,Random,3,ParallelRadixSort,8,4519690100000,Random,3,ParallelRadixSort,9,6415396100000,Random,3,ParallelRadixSort,10,8772856100000,Random,3,StdSort,0,44618100000,Random,3,StdSort,1,62694100000,Random,3,StdSort,2,174421100000,Random,3,StdSort,3,503732100000,Random,3,StdSort,4,1054913100000,Random,3,StdSort,5,1954155100000,Random,3,StdSort,6,3298827100000,Random,3,StdSort,7,5177794100000,Random,3,StdSort,8,7673006100000,Random,3,StdSort,9,10880097100000,Random,3,StdSort,10,14886868100000,Random,4,ParallelSort,0,14309100000,Random,4,ParallelSort,1,18698100000,Random,4,ParallelSort,2,45789100000,Random,4,ParallelSort,3,131642100000,Random,4,ParallelSort,4,289936100000,Random,4,ParallelSort,5,530417100000,Random,4,ParallelSort,6,884084100000,Random,4,ParallelSort,7,1377552100000,Random,4,ParallelSort,8,2041058100000,Random,4,ParallelSort,9,2871468100000,Random,4,ParallelSort,10,3952106100000,Random,4,ParallelBufferedSort,0,11740100000,Random,4,ParallelBufferedSort,1,15373100000,Random,4,ParallelBufferedSort,2,38600100000,Random,4,ParallelBufferedSort,3,109225100000,Random,4,ParallelBufferedSort,4,233511100000,Random,4,ParallelBufferedSort,5,398546100000,Random,4,ParallelBufferedSort,6,657803100000,Random,4,ParallelBufferedSort,7,1029969100000,Random,4,ParallelBufferedSort,8,1498768100000,Random,4,ParallelBufferedSort,9,2110735100000,Random,4,ParallelBufferedSort,10,2873358100000,Random,4,ParallelRadixSort,0,16125100000,Random,4,ParallelRadixSort,1,23509100000,Random,4,ParallelRadixSort,2,55582100000,Random,4,ParallelRadixSort,3,154766100000,Random,4,ParallelRadixSort,4,321333100000,Random,4,ParallelRadixSort,5,597951100000,Random,4,ParallelRadixSort,6,1009940100000,Random,4,ParallelRadixSort,7,1581116100000,Random,4,ParallelRadixSort,8,2350256100000,Random,4,ParallelRadixSort,9,3334285100000,Random,4,ParallelRadixSort,10,4560847100000,Random,4,StdSort,0,44571100000,Random,4,StdSort,1,62608100000,Random,4,StdSort,2,174066100000,Random,4,StdSort,3,502485100000,Random,4,StdSort,4,1049983100000,Random,4,StdSort,5,1949577100000,Random,4,StdSort,6,3288676100000,Random,4,StdSort,7,5161264100000,Random,4,StdSort,8,7651928100000,Random,4,StdSort,9,10850303100000,Random,4,StdSort,10,14846441100000,Random,5,ParallelSort,0,12031100000,Random,5,ParallelSort,1,15500100000,Random,5,ParallelSort,2,38746100000,Random,5,ParallelSort,3,110208100000,Random,5,ParallelSort,4,227831100000,Random,5,ParallelSort,5,430331100000,Random,5,ParallelSort,6,707894100000,Random,5,ParallelSort,7,1101427100000,Random,5,ParallelSort,8,1631685100000,Random,5,ParallelSort,9,2317509100000,Random,5,ParallelSort,10,3171795100000,Random,5,ParallelBufferedSort,0,10568100000,Random,5,ParallelBufferedSort,1,13338100000,Random,5,ParallelBufferedSort,2,31917100000,Random,5,ParallelBufferedSort,3,94162100000,Random,5,ParallelBufferedSort,4,194943100000,Random,5,ParallelBufferedSort,5,343659100000,Random,5,ParallelBufferedSort,6,584691100000,Random,5,ParallelBufferedSort,7,912861100000,Random,5,ParallelBufferedSort,8,1372168100000,Random,5,ParallelBufferedSort,9,1927510100000,Random,5,ParallelBufferedSort,10,2618086100000,Random,5,ParallelRadixSort,0,29777100000,Random,5,ParallelRadixSort,1,43939100000,Random,5,ParallelRadixSort,2,103968100000,Random,5,ParallelRadixSort,3,290470100000,Random,5,ParallelRadixSort,4,603012100000,Random,5,ParallelRadixSort,5,1119040100000,Random,5,ParallelRadixSort,6,1886738100000,Random,5,ParallelRadixSort,7,2962205100000,Random,5,ParallelRadixSort,8,4393087100000,Random,5,ParallelRadixSort,9,6234663100000,Random,5,ParallelRadixSort,10,8523790100000,Random,5,StdSort,0,44447100000,Random,5,StdSort,1,62597100000,Random,5,StdSort,2,173967100000,Random,5,StdSort,3,502007100000,Random,5,StdSort,4,1048897100000,Random,5,StdSort,5,1945987100000,Random,5,StdSort,6,3286795100000,Random,5,StdSort,7,5158114100000,Random,5,StdSort,8,7643600100000,Random,5,StdSort,9,10839199100000,Random,5,StdSort,10,14831262100000,Random,6,ParallelSort,0,12771100000,Random,6,ParallelSort,1,16727100000,Random,6,ParallelSort,2,40410100000,Random,6,ParallelSort,3,116542100000,Random,6,ParallelSort,4,244028100000,Random,6,ParallelSort,5,457568100000,Random,6,ParallelSort,6,765556100000,Random,6,ParallelSort,7,1201017100000,Random,6,ParallelSort,8,1783818100000,Random,6,ParallelSort,9,2534690100000,Random,6,ParallelSort,10,3450422100000,Random,6,ParallelBufferedSort,0,9367100000,Random,6,ParallelBufferedSort,1,12080100000,Random,6,ParallelBufferedSort,2,28105100000,Random,6,ParallelBufferedSort,3,85193100000,Random,6,ParallelBufferedSort,4,173097100000,Random,6,ParallelBufferedSort,5,311740100000,Random,6,ParallelBufferedSort,6,525846100000,Random,6,ParallelBufferedSort,7,836467100000,Random,6,ParallelBufferedSort,8,1200369100000,Random,6,ParallelBufferedSort,9,1697898100000,Random,6,ParallelBufferedSort,10,2314991100000,Random,6,ParallelRadixSort,0,29679100000,Random,6,ParallelRadixSort,1,43445100000,Random,6,ParallelRadixSort,2,103395100000,Random,6,ParallelRadixSort,3,288561100000,Random,6,ParallelRadixSort,4,596998100000,Random,6,ParallelRadixSort,5,1110402100000,Random,6,ParallelRadixSort,6,1878660100000,Random,6,ParallelRadixSort,7,2935154100000,Random,6,ParallelRadixSort,8,4362075100000,Random,6,ParallelRadixSort,9,6190437100000,Random,6,ParallelRadixSort,10,8484022100000,Random,6,StdSort,0,45253100000,Random,6,StdSort,1,63571100000,Random,6,StdSort,2,177032100000,Random,6,StdSort,3,512395100000,Random,6,StdSort,4,1071471100000,Random,6,StdSort,5,1986312100000,Random,6,StdSort,6,3355358100000,Random,6,StdSort,7,5265791100000,Random,6,StdSort,8,7803477100000,Random,6,StdSort,9,11064793100000,Random,6,StdSort,10,15140017100000,Random,7,ParallelSort,0,10017100000,Random,7,ParallelSort,1,12796100000,Random,7,ParallelSort,2,30709100000,Random,7,ParallelSort,3,86358100000,Random,7,ParallelSort,4,180601100000,Random,7,ParallelSort,5,339386100000,Random,7,ParallelSort,6,583263100000,Random,7,ParallelSort,7,895428100000,Random,7,ParallelSort,8,1321977100000,Random,7,ParallelSort,9,1876495100000,Random,7,ParallelSort,10,2588439100000,Random,7,ParallelBufferedSort,0,8279100000,Random,7,ParallelBufferedSort,1,11325100000,Random,7,ParallelBufferedSort,2,26530100000,Random,7,ParallelBufferedSort,3,69328100000,Random,7,ParallelBufferedSort,4,147180100000,Random,7,ParallelBufferedSort,5,277085100000,Random,7,ParallelBufferedSort,6,449293100000,Random,7,ParallelBufferedSort,7,697595100000,Random,7,ParallelBufferedSort,8,1034386100000,Random,7,ParallelBufferedSort,9,1470912100000,Random,7,ParallelBufferedSort,10,2005573100000,Random,7,ParallelRadixSort,0,29841100000,Random,7,ParallelRadixSort,1,43791100000,Random,7,ParallelRadixSort,2,103131100000,Random,7,ParallelRadixSort,3,287240100000,Random,7,ParallelRadixSort,4,595967100000,Random,7,ParallelRadixSort,5,1105936100000,Random,7,ParallelRadixSort,6,1867407100000,Random,7,ParallelRadixSort,7,2927650100000,Random,7,ParallelRadixSort,8,4335684100000,Random,7,ParallelRadixSort,9,6158763100000,Random,7,ParallelRadixSort,10,8429623100000,Random,7,StdSort,0,44104100000,Random,7,StdSort,1,62104100000,Random,7,StdSort,2,172459100000,Random,7,StdSort,3,496759100000,Random,7,StdSort,4,1038064100000,Random,7,StdSort,5,1925388100000,Random,7,StdSort,6,3249847100000,Random,7,StdSort,7,5104650100000,Random,7,StdSort,8,7564456100000,Random,7,StdSort,9,10724101100000,Random,7,StdSort,10,14676233100000,Random,8,ParallelSort,0,10386100000,Random,8,ParallelSort,1,13229100000,Random,8,ParallelSort,2,34550100000,Random,8,ParallelSort,3,92594100000,Random,8,ParallelSort,4,192990100000,Random,8,ParallelSort,5,360155100000,Random,8,ParallelSort,6,608986100000,Random,8,ParallelSort,7,964262100000,Random,8,ParallelSort,8,1420281100000,Random,8,ParallelSort,9,2026824100000,Random,8,ParallelSort,10,2751053100000,Random,8,ParallelBufferedSort,0,8484100000,Random,8,ParallelBufferedSort,1,12713100000,Random,8,ParallelBufferedSort,2,26474100000,Random,8,ParallelBufferedSort,3,65376100000,Random,8,ParallelBufferedSort,4,127200100000,Random,8,ParallelBufferedSort,5,226719100000,Random,8,ParallelBufferedSort,6,384918100000,Random,8,ParallelBufferedSort,7,593042100000,Random,8,ParallelBufferedSort,8,892767100000,Random,8,ParallelBufferedSort,9,1233389100000,Random,8,ParallelBufferedSort,10,1730197100000,Random,8,ParallelRadixSort,0,16268100000,Random,8,ParallelRadixSort,1,23758100000,Random,8,ParallelRadixSort,2,55386100000,Random,8,ParallelRadixSort,3,150391100000,Random,8,ParallelRadixSort,4,309997100000,Random,8,ParallelRadixSort,5,576475100000,Random,8,ParallelRadixSort,6,974580100000,Random,8,ParallelRadixSort,7,1517860100000,Random,8,ParallelRadixSort,8,2259471100000,Random,8,ParallelRadixSort,9,3175395100000,Random,8,ParallelRadixSort,10,4382942100000,Random,8,StdSort,0,44662100000,Random,8,StdSort,1,63010100000,Random,8,StdSort,2,174962100000,Random,8,StdSort,3,504435100000,Random,8,StdSort,4,1054369100000,Random,8,StdSort,5,1955522100000,Random,8,StdSort,6,3303624100000,Random,8,StdSort,7,5184916100000,Random,8,StdSort,8,7683310100000,Random,8,StdSort,9,10891707100000,Random,8,StdSort,10,14906919100000,PreSorted,1,ParallelSort,0,19490100000,PreSorted,1,ParallelSort,1,28064100000,PreSorted,1,ParallelSort,2,86156100000,PreSorted,1,ParallelSort,3,268719100000,PreSorted,1,ParallelSort,4,565865100000,PreSorted,1,ParallelSort,5,1053142100000,PreSorted,1,ParallelSort,6,1781367100000,PreSorted,1,ParallelSort,7,2800258100000,PreSorted,1,ParallelSort,8,4151753100000,PreSorted,1,ParallelSort,9,5887864100000,PreSorted,1,ParallelSort,10,8059119100000,PreSorted,1,ParallelBufferedSort,0,19498100000,PreSorted,1,ParallelBufferedSort,1,28080100000,PreSorted,1,ParallelBufferedSort,2,86128100000,PreSorted,1,ParallelBufferedSort,3,268723100000,PreSorted,1,ParallelBufferedSort,4,565825100000,PreSorted,1,ParallelBufferedSort,5,1053618100000,PreSorted,1,ParallelBufferedSort,6,1781226100000,PreSorted,1,ParallelBufferedSort,7,2800292100000,PreSorted,1,ParallelBufferedSort,8,4152036100000,PreSorted,1,ParallelBufferedSort,9,5888872100000,PreSorted,1,ParallelBufferedSort,10,8058660100000,PreSorted,1,ParallelRadixSort,0,30811100000,PreSorted,1,ParallelRadixSort,1,47095100000,PreSorted,1,ParallelRadixSort,2,116871100000,PreSorted,1,ParallelRadixSort,3,335628100000,PreSorted,1,ParallelRadixSort,4,704782100000,PreSorted,1,ParallelRadixSort,5,1313441100000,PreSorted,1,ParallelRadixSort,6,2221417100000,PreSorted,1,ParallelRadixSort,7,3489790100000,PreSorted,1,ParallelRadixSort,8,5175270100000,PreSorted,1,ParallelRadixSort,9,7347118100000,PreSorted,1,ParallelRadixSort,10,10052782100000,PreSorted,1,StdSort,0,19481100000,PreSorted,1,StdSort,1,28032100000,PreSorted,1,StdSort,2,85912100000,PreSorted,1,StdSort,3,268717100000,PreSorted,1,StdSort,4,566167100000,PreSorted,1,StdSort,5,1053831100000,PreSorted,1,StdSort,6,1782383100000,PreSorted,1,StdSort,7,2800375100000,PreSorted,1,StdSort,8,4151789100000,PreSorted,1,StdSort,9,5887247100000,PreSorted,1,StdSort,10,8057649100000,PreSorted,2,ParallelSort,0,9405100000,PreSorted,2,ParallelSort,1,13379100000,PreSorted,2,ParallelSort,2,38577100000,PreSorted,2,ParallelSort,3,118995100000,PreSorted,2,ParallelSort,4,248426100000,PreSorted,2,ParallelSort,5,461541100000,PreSorted,2,ParallelSort,6,779193100000,PreSorted,2,ParallelSort,7,1223141100000,PreSorted,2,ParallelSort,8,1814281100000,PreSorted,2,ParallelSort,9,2571253100000,PreSorted,2,ParallelSort,10,3519002100000,PreSorted,2,ParallelBufferedSort,0,8634100000,PreSorted,2,ParallelBufferedSort,1,11251100000,PreSorted,2,ParallelBufferedSort,2,30846100000,PreSorted,2,ParallelBufferedSort,3,91627100000,PreSorted,2,ParallelBufferedSort,4,190119100000,PreSorted,2,ParallelBufferedSort,5,352209100000,PreSorted,2,ParallelBufferedSort,6,593815100000,PreSorted,2,ParallelBufferedSort,7,931320100000,PreSorted,2,ParallelBufferedSort,8,1380327100000,PreSorted,2,ParallelBufferedSort,9,1957429100000,PreSorted,2,ParallelBufferedSort,10,2677741100000,PreSorted,2,ParallelRadixSort,0,16657100000,PreSorted,2,ParallelRadixSort,1,24654100000,PreSorted,2,ParallelRadixSort,2,59407100000,PreSorted,2,ParallelRadixSort,3,168893100000,PreSorted,2,ParallelRadixSort,4,353909100000,PreSorted,2,ParallelRadixSort,5,659127100000,PreSorted,2,ParallelRadixSort,6,1115528100000,PreSorted,2,ParallelRadixSort,7,1751195100000,PreSorted,2,ParallelRadixSort,8,2597721100000,PreSorted,2,ParallelRadixSort,9,3685642100000,PreSorted,2,ParallelRadixSort,10,5041899100000,PreSorted,2,StdSort,0,19489100000,PreSorted,2,StdSort,1,28025100000,PreSorted,2,StdSort,2,86142100000,PreSorted,2,StdSort,3,268711100000,PreSorted,2,StdSort,4,565860100000,PreSorted,2,StdSort,5,1053518100000,PreSorted,2,StdSort,6,1781991100000,PreSorted,2,StdSort,7,2799193100000,PreSorted,2,StdSort,8,4150592100000,PreSorted,2,StdSort,9,5888197100000,PreSorted,2,StdSort,10,8057524100000,PreSorted,3,ParallelSort,0,6897100000,PreSorted,3,ParallelSort,1,9797100000,PreSorted,3,ParallelSort,2,28245100000,PreSorted,3,ParallelSort,3,87279100000,PreSorted,3,ParallelSort,4,182241100000,PreSorted,3,ParallelSort,5,338592100000,PreSorted,3,ParallelSort,6,571733100000,PreSorted,3,ParallelSort,7,897414100000,PreSorted,3,ParallelSort,8,1332157100000,PreSorted,3,ParallelSort,9,1887216100000,PreSorted,3,ParallelSort,10,2583077100000,PreSorted,3,ParallelBufferedSort,0,6265100000,PreSorted,3,ParallelBufferedSort,1,8076100000,PreSorted,3,ParallelBufferedSort,2,20790100000,PreSorted,3,ParallelBufferedSort,3,60133100000,PreSorted,3,ParallelBufferedSort,4,124047100000,PreSorted,3,ParallelBufferedSort,5,229217100000,PreSorted,3,ParallelBufferedSort,6,386085100000,PreSorted,3,ParallelBufferedSort,7,605309100000,PreSorted,3,ParallelBufferedSort,8,896602100000,PreSorted,3,ParallelBufferedSort,9,1271555100000,PreSorted,3,ParallelBufferedSort,10,1739811100000,PreSorted,3,ParallelRadixSort,0,29866100000,PreSorted,3,ParallelRadixSort,1,44272100000,PreSorted,3,ParallelRadixSort,2,106412100000,PreSorted,3,ParallelRadixSort,3,298311100000,PreSorted,3,ParallelRadixSort,4,621375100000,PreSorted,3,ParallelRadixSort,5,1154604100000,PreSorted,3,ParallelRadixSort,6,1947950100000,PreSorted,3,ParallelRadixSort,7,3056783100000,PreSorted,3,ParallelRadixSort,8,4532363100000,PreSorted,3,ParallelRadixSort,9,6425328100000,PreSorted,3,ParallelRadixSort,10,8791452100000,PreSorted,3,StdSort,0,19489100000,PreSorted,3,StdSort,1,28036100000,PreSorted,3,StdSort,2,86166100000,PreSorted,3,StdSort,3,268751100000,PreSorted,3,StdSort,4,565960100000,PreSorted,3,StdSort,5,1054828100000,PreSorted,3,StdSort,6,1784262100000,PreSorted,3,StdSort,7,2802525100000,PreSorted,3,StdSort,8,4150957100000,PreSorted,3,StdSort,9,5887730100000,PreSorted,3,StdSort,10,8057945100000,PreSorted,4,ParallelSort,0,6982100000,PreSorted,4,ParallelSort,1,9831100000,PreSorted,4,ParallelSort,2,28186100000,PreSorted,4,ParallelSort,3,87413100000,PreSorted,4,ParallelSort,4,182177100000,PreSorted,4,ParallelSort,5,342154100000,PreSorted,4,ParallelSort,6,591732100000,PreSorted,4,ParallelSort,7,902859100000,PreSorted,4,ParallelSort,8,1336752100000,PreSorted,4,ParallelSort,9,1778703100000,PreSorted,4,ParallelSort,10,2594833100000,PreSorted,4,ParallelBufferedSort,0,5933100000,PreSorted,4,ParallelBufferedSort,1,7609100000,PreSorted,4,ParallelBufferedSort,2,20369100000,PreSorted,4,ParallelBufferedSort,3,54971100000,PreSorted,4,ParallelBufferedSort,4,123884100000,PreSorted,4,ParallelBufferedSort,5,208207100000,PreSorted,4,ParallelBufferedSort,6,354610100000,PreSorted,4,ParallelBufferedSort,7,548883100000,PreSorted,4,ParallelBufferedSort,8,826559100000,PreSorted,4,ParallelBufferedSort,9,1151005100000,PreSorted,4,ParallelBufferedSort,10,1574767100000,PreSorted,4,ParallelRadixSort,0,15889100000,PreSorted,4,ParallelRadixSort,1,23305100000,PreSorted,4,ParallelRadixSort,2,55670100000,PreSorted,4,ParallelRadixSort,3,154865100000,PreSorted,4,ParallelRadixSort,4,322978100000,PreSorted,4,ParallelRadixSort,5,599599100000,PreSorted,4,ParallelRadixSort,6,1012662100000,PreSorted,4,ParallelRadixSort,7,1585461100000,PreSorted,4,ParallelRadixSort,8,2356104100000,PreSorted,4,ParallelRadixSort,9,3341527100000,PreSorted,4,ParallelRadixSort,10,4571327100000,PreSorted,4,StdSort,0,19497100000,PreSorted,4,StdSort,1,28032100000,PreSorted,4,StdSort,2,86144100000,PreSorted,4,StdSort,3,268741100000,PreSorted,4,StdSort,4,565863100000,PreSorted,4,StdSort,5,1054513100000,PreSorted,4,StdSort,6,1781625100000,PreSorted,4,StdSort,7,2798871100000,PreSorted,4,StdSort,8,4150781100000,PreSorted,4,StdSort,9,5887164100000,PreSorted,4,StdSort,10,8058214100000,PreSorted,5,ParallelSort,0,6270100000,PreSorted,5,ParallelSort,1,8854100000,PreSorted,5,ParallelSort,2,25282100000,PreSorted,5,ParallelSort,3,79031100000,PreSorted,5,ParallelSort,4,165330100000,PreSorted,5,ParallelSort,5,302220100000,PreSorted,5,ParallelSort,6,514148100000,PreSorted,5,ParallelSort,7,799289100000,PreSorted,5,ParallelSort,8,1181944100000,PreSorted,5,ParallelSort,9,1676542100000,PreSorted,5,ParallelSort,10,2217883100000,PreSorted,5,ParallelBufferedSort,0,5451100000,PreSorted,5,ParallelBufferedSort,1,6657100000,PreSorted,5,ParallelBufferedSort,2,17272100000,PreSorted,5,ParallelBufferedSort,3,48024100000,PreSorted,5,ParallelBufferedSort,4,100102100000,PreSorted,5,ParallelBufferedSort,5,181499100000,PreSorted,5,ParallelBufferedSort,6,305498100000,PreSorted,5,ParallelBufferedSort,7,478989100000,PreSorted,5,ParallelBufferedSort,8,709611100000,PreSorted,5,ParallelBufferedSort,9,1005205100000,PreSorted,5,ParallelBufferedSort,10,1375023100000,PreSorted,5,ParallelRadixSort,0,29669100000,PreSorted,5,ParallelRadixSort,1,43599100000,PreSorted,5,ParallelRadixSort,2,104044100000,PreSorted,5,ParallelRadixSort,3,290714100000,PreSorted,5,ParallelRadixSort,4,604320100000,PreSorted,5,ParallelRadixSort,5,1121586100000,PreSorted,5,ParallelRadixSort,6,1892732100000,PreSorted,5,ParallelRadixSort,7,2968642100000,PreSorted,5,ParallelRadixSort,8,4405085100000,PreSorted,5,ParallelRadixSort,9,6243152100000,PreSorted,5,ParallelRadixSort,10,8546445100000,PreSorted,5,StdSort,0,19482100000,PreSorted,5,StdSort,1,28031100000,PreSorted,5,StdSort,2,86158100000,PreSorted,5,StdSort,3,268717100000,PreSorted,5,StdSort,4,566093100000,PreSorted,5,StdSort,5,1053260100000,PreSorted,5,StdSort,6,1781075100000,PreSorted,5,StdSort,7,2798940100000,PreSorted,5,StdSort,8,4151724100000,PreSorted,5,StdSort,9,5887159100000,PreSorted,5,StdSort,10,8058094100000,PreSorted,6,ParallelSort,0,5725100000,PreSorted,6,ParallelSort,1,8101100000,PreSorted,6,ParallelSort,2,23083100000,PreSorted,6,ParallelSort,3,72357100000,PreSorted,6,ParallelSort,4,150990100000,PreSorted,6,ParallelSort,5,274956100000,PreSorted,6,ParallelSort,6,460382100000,PreSorted,6,ParallelSort,7,720923100000,PreSorted,6,ParallelSort,8,1069522100000,PreSorted,6,ParallelSort,9,1516096100000,PreSorted,6,ParallelSort,10,2074606100000,PreSorted,6,ParallelBufferedSort,0,5243100000,PreSorted,6,ParallelBufferedSort,1,6117100000,PreSorted,6,ParallelBufferedSort,2,15281100000,PreSorted,6,ParallelBufferedSort,3,44826100000,PreSorted,6,ParallelBufferedSort,4,89348100000,PreSorted,6,ParallelBufferedSort,5,164430100000,PreSorted,6,ParallelBufferedSort,6,273451100000,PreSorted,6,ParallelBufferedSort,7,429227100000,PreSorted,6,ParallelBufferedSort,8,624478100000,PreSorted,6,ParallelBufferedSort,9,885457100000,PreSorted,6,ParallelBufferedSort,10,1210258100000,PreSorted,6,ParallelRadixSort,0,29381100000,PreSorted,6,ParallelRadixSort,1,43381100000,PreSorted,6,ParallelRadixSort,2,103137100000,PreSorted,6,ParallelRadixSort,3,288799100000,PreSorted,6,ParallelRadixSort,4,600801100000,PreSorted,6,ParallelRadixSort,5,1115046100000,PreSorted,6,ParallelRadixSort,6,1883091100000,PreSorted,6,ParallelRadixSort,7,2953000100000,PreSorted,6,ParallelRadixSort,8,4364268100000,PreSorted,6,ParallelRadixSort,9,6189053100000,PreSorted,6,ParallelRadixSort,10,8494099100000,PreSorted,6,StdSort,0,19493100000,PreSorted,6,StdSort,1,28033100000,PreSorted,6,StdSort,2,86534100000,PreSorted,6,StdSort,3,269298100000,PreSorted,6,StdSort,4,568123100000,PreSorted,6,StdSort,5,1055939100000,PreSorted,6,StdSort,6,1781531100000,PreSorted,6,StdSort,7,2798508100000,PreSorted,6,StdSort,8,4150463100000,PreSorted,6,StdSort,9,5887247100000,PreSorted,6,StdSort,10,8056683100000,PreSorted,7,ParallelSort,0,5094100000,PreSorted,7,ParallelSort,1,7320100000,PreSorted,7,ParallelSort,2,19430100000,PreSorted,7,ParallelSort,3,60233100000,PreSorted,7,ParallelSort,4,133538100000,PreSorted,7,ParallelSort,5,259412100000,PreSorted,7,ParallelSort,6,394836100000,PreSorted,7,ParallelSort,7,644048100000,PreSorted,7,ParallelSort,8,955310100000,PreSorted,7,ParallelSort,9,1408906100000,PreSorted,7,ParallelSort,10,1830004100000,PreSorted,7,ParallelBufferedSort,0,4845100000,PreSorted,7,ParallelBufferedSort,1,5448100000,PreSorted,7,ParallelBufferedSort,2,12012100000,PreSorted,7,ParallelBufferedSort,3,41072100000,PreSorted,7,ParallelBufferedSort,4,86018100000,PreSorted,7,ParallelBufferedSort,5,136230100000,PreSorted,7,ParallelBufferedSort,6,209233100000,PreSorted,7,ParallelBufferedSort,7,352661100000,PreSorted,7,ParallelBufferedSort,8,513845100000,PreSorted,7,ParallelBufferedSort,9,779440100000,PreSorted,7,ParallelBufferedSort,10,966469100000,PreSorted,7,ParallelRadixSort,0,29614100000,PreSorted,7,ParallelRadixSort,1,43460100000,PreSorted,7,ParallelRadixSort,2,103083100000,PreSorted,7,ParallelRadixSort,3,287573100000,PreSorted,7,ParallelRadixSort,4,598007100000,PreSorted,7,ParallelRadixSort,5,1107328100000,PreSorted,7,ParallelRadixSort,6,1869830100000,PreSorted,7,ParallelRadixSort,7,2934061100000,PreSorted,7,ParallelRadixSort,8,4348038100000,PreSorted,7,ParallelRadixSort,9,6174811100000,PreSorted,7,ParallelRadixSort,10,8437836100000,PreSorted,7,StdSort,0,19491100000,PreSorted,7,StdSort,1,28039100000,PreSorted,7,StdSort,2,86141100000,PreSorted,7,StdSort,3,268817100000,PreSorted,7,StdSort,4,566315100000,PreSorted,7,StdSort,5,1053253100000,PreSorted,7,StdSort,6,1782042100000,PreSorted,7,StdSort,7,2799099100000,PreSorted,7,StdSort,8,4151228100000,PreSorted,7,StdSort,9,5886841100000,PreSorted,7,StdSort,10,8054997100000,PreSorted,8,ParallelSort,0,5063100000,PreSorted,8,ParallelSort,1,7056100000,PreSorted,8,ParallelSort,2,19410100000,PreSorted,8,ParallelSort,3,60338100000,PreSorted,8,ParallelSort,4,125735100000,PreSorted,8,ParallelSort,5,236846100000,PreSorted,8,ParallelSort,6,400252100000,PreSorted,8,ParallelSort,7,631791100000,PreSorted,8,ParallelSort,8,919199100000,PreSorted,8,ParallelSort,9,1396290100000,PreSorted,8,ParallelSort,10,1817391100000,PreSorted,8,ParallelBufferedSort,0,4905100000,PreSorted,8,ParallelBufferedSort,1,6025100000,PreSorted,8,ParallelBufferedSort,2,13551100000,PreSorted,8,ParallelBufferedSort,3,32715100000,PreSorted,8,ParallelBufferedSort,4,63979100000,PreSorted,8,ParallelBufferedSort,5,109121100000,PreSorted,8,ParallelBufferedSort,6,170735100000,PreSorted,8,ParallelBufferedSort,7,275991100000,PreSorted,8,ParallelBufferedSort,8,403136100000,PreSorted,8,ParallelBufferedSort,9,562399100000,PreSorted,8,ParallelBufferedSort,10,780022100000,PreSorted,8,ParallelRadixSort,0,16158100000,PreSorted,8,ParallelRadixSort,1,23588100000,PreSorted,8,ParallelRadixSort,2,55230100000,PreSorted,8,ParallelRadixSort,3,149793100000,PreSorted,8,ParallelRadixSort,4,311559100000,PreSorted,8,ParallelRadixSort,5,570010100000,PreSorted,8,ParallelRadixSort,6,974115100000,PreSorted,8,ParallelRadixSort,7,1510653100000,PreSorted,8,ParallelRadixSort,8,2236350100000,PreSorted,8,ParallelRadixSort,9,3203608100000,PreSorted,8,ParallelRadixSort,10,4394132100000,PreSorted,8,StdSort,0,19481100000,PreSorted,8,StdSort,1,28033100000,PreSorted,8,StdSort,2,86141100000,PreSorted,8,StdSort,3,268711100000,PreSorted,8,StdSort,4,565933100000,PreSorted,8,StdSort,5,1053264100000,PreSorted,8,StdSort,6,1781661100000,PreSorted,8,StdSort,7,2799399100000,PreSorted,8,StdSort,8,4152041100000,PreSorted,8,StdSort,9,5887811100000,PreSorted,8,StdSort,10,8056481100000,NearlySorted,1,ParallelSort,0,19486100000,NearlySorted,1,ParallelSort,1,28067100000,NearlySorted,1,ParallelSort,2,84511100000,NearlySorted,1,ParallelSort,3,268743100000,NearlySorted,1,ParallelSort,4,565868100000,NearlySorted,1,ParallelSort,5,1053989100000,NearlySorted,1,ParallelSort,6,1782101100000,NearlySorted,1,ParallelSort,7,2801114100000,NearlySorted,1,ParallelSort,8,4155522100000,NearlySorted,1,ParallelSort,9,5889077100000,NearlySorted,1,ParallelSort,10,8058964100000,NearlySorted,1,ParallelBufferedSort,0,19491100000,NearlySorted,1,ParallelBufferedSort,1,28074100000,NearlySorted,1,ParallelBufferedSort,2,84509100000,NearlySorted,1,ParallelBufferedSort,3,268728100000,NearlySorted,1,ParallelBufferedSort,4,565804100000,NearlySorted,1,ParallelBufferedSort,5,1053004100000,NearlySorted,1,ParallelBufferedSort,6,1782156100000,NearlySorted,1,ParallelBufferedSort,7,2799571100000,NearlySorted,1,ParallelBufferedSort,8,4151293100000,NearlySorted,1,ParallelBufferedSort,9,5888254100000,NearlySorted,1,ParallelBufferedSort,10,8057456100000,NearlySorted,1,ParallelRadixSort,0,30828100000,NearlySorted,1,ParallelRadixSort,1,47088100000,NearlySorted,1,ParallelRadixSort,2,116848100000,NearlySorted,1,ParallelRadixSort,3,335614100000,NearlySorted,1,ParallelRadixSort,4,704739100000,NearlySorted,1,ParallelRadixSort,5,1313517100000,NearlySorted,1,ParallelRadixSort,6,2221573100000,NearlySorted,1,ParallelRadixSort,7,3488993100000,NearlySorted,1,ParallelRadixSort,8,5178039100000,NearlySorted,1,ParallelRadixSort,9,7347380100000,NearlySorted,1,ParallelRadixSort,10,10050997100000,NearlySorted,1,StdSort,0,19515100000,NearlySorted,1,StdSort,1,28075100000,NearlySorted,1,StdSort,2,84495100000,NearlySorted,1,StdSort,3,268745100000,NearlySorted,1,StdSort,4,565899100000,NearlySorted,1,StdSort,5,1054802100000,NearlySorted,1,StdSort,6,1781513100000,NearlySorted,1,StdSort,7,2799302100000,NearlySorted,1,StdSort,8,4149682100000,NearlySorted,1,StdSort,9,5885960100000,NearlySorted,1,StdSort,10,8056848100000,NearlySorted,2,ParallelSort,0,9275100000,NearlySorted,2,ParallelSort,1,13224100000,NearlySorted,2,ParallelSort,2,38463100000,NearlySorted,2,ParallelSort,3,118841100000,NearlySorted,2,ParallelSort,4,248412100000,NearlySorted,2,ParallelSort,5,461424100000,NearlySorted,2,ParallelSort,6,779113100000,NearlySorted,2,ParallelSort,7,1222546100000,NearlySorted,2,ParallelSort,8,1813980100000,NearlySorted,2,ParallelSort,9,2571163100000,NearlySorted,2,ParallelSort,10,3520271100000,NearlySorted,2,ParallelBufferedSort,0,8279100000,NearlySorted,2,ParallelBufferedSort,1,10880100000,NearlySorted,2,ParallelBufferedSort,2,30327100000,NearlySorted,2,ParallelBufferedSort,3,91151100000,NearlySorted,2,ParallelBufferedSort,4,189644100000,NearlySorted,2,ParallelBufferedSort,5,351768100000,NearlySorted,2,ParallelBufferedSort,6,593174100000,NearlySorted,2,ParallelBufferedSort,7,931092100000,NearlySorted,2,ParallelBufferedSort,8,1379903100000,NearlySorted,2,ParallelBufferedSort,9,1956063100000,NearlySorted,2,ParallelBufferedSort,10,2678175100000,NearlySorted,2,ParallelRadixSort,0,16392100000,NearlySorted,2,ParallelRadixSort,1,24362100000,NearlySorted,2,ParallelRadixSort,2,59212100000,NearlySorted,2,ParallelRadixSort,3,168790100000,NearlySorted,2,ParallelRadixSort,4,353745100000,NearlySorted,2,ParallelRadixSort,5,659356100000,NearlySorted,2,ParallelRadixSort,6,1114713100000,NearlySorted,2,ParallelRadixSort,7,1749797100000,NearlySorted,2,ParallelRadixSort,8,2598572100000,NearlySorted,2,ParallelRadixSort,9,3685079100000,NearlySorted,2,ParallelRadixSort,10,5042019100000,NearlySorted,2,StdSort,0,19501100000,NearlySorted,2,StdSort,1,28048100000,NearlySorted,2,StdSort,2,84434100000,NearlySorted,2,StdSort,3,268850100000,NearlySorted,2,StdSort,4,566157100000,NearlySorted,2,StdSort,5,1054298100000,NearlySorted,2,StdSort,6,1781583100000,NearlySorted,2,StdSort,7,2800661100000,NearlySorted,2,StdSort,8,4152048100000,NearlySorted,2,StdSort,9,5888052100000,NearlySorted,2,StdSort,10,8057873100000,NearlySorted,3,ParallelSort,0,6859100000,NearlySorted,3,ParallelSort,1,9777100000,NearlySorted,3,ParallelSort,2,28210100000,NearlySorted,3,ParallelSort,3,87228100000,NearlySorted,3,ParallelSort,4,182218100000,NearlySorted,3,ParallelSort,5,338635100000,NearlySorted,3,ParallelSort,6,571809100000,NearlySorted,3,ParallelSort,7,898083100000,NearlySorted,3,ParallelSort,8,1333594100000,NearlySorted,3,ParallelSort,9,1915074100000,NearlySorted,3,ParallelSort,10,2614076100000,NearlySorted,3,ParallelBufferedSort,0,6008100000,NearlySorted,3,ParallelBufferedSort,1,7997100000,NearlySorted,3,ParallelBufferedSort,2,20611100000,NearlySorted,3,ParallelBufferedSort,3,60083100000,NearlySorted,3,ParallelBufferedSort,4,123878100000,NearlySorted,3,ParallelBufferedSort,5,229170100000,NearlySorted,3,ParallelBufferedSort,6,385858100000,NearlySorted,3,ParallelBufferedSort,7,606899100000,NearlySorted,3,ParallelBufferedSort,8,897868100000,NearlySorted,3,ParallelBufferedSort,9,1293488100000,NearlySorted,3,ParallelBufferedSort,10,1739890100000,NearlySorted,3,ParallelRadixSort,0,29769100000,NearlySorted,3,ParallelRadixSort,1,43774100000,NearlySorted,3,ParallelRadixSort,2,106247100000,NearlySorted,3,ParallelRadixSort,3,298007100000,NearlySorted,3,ParallelRadixSort,4,620959100000,NearlySorted,3,ParallelRadixSort,5,1153409100000,NearlySorted,3,ParallelRadixSort,6,1948149100000,NearlySorted,3,ParallelRadixSort,7,3055972100000,NearlySorted,3,ParallelRadixSort,8,4536661100000,NearlySorted,3,ParallelRadixSort,9,6431053100000,NearlySorted,3,ParallelRadixSort,10,8789670100000,NearlySorted,3,StdSort,0,19481100000,NearlySorted,3,StdSort,1,28110100000,NearlySorted,3,StdSort,2,84507100000,NearlySorted,3,StdSort,3,268713100000,NearlySorted,3,StdSort,4,566754100000,NearlySorted,3,StdSort,5,1054726100000,NearlySorted,3,StdSort,6,1782220100000,NearlySorted,3,StdSort,7,2798600100000,NearlySorted,3,StdSort,8,4151311100000,NearlySorted,3,StdSort,9,5887309100000,NearlySorted,3,StdSort,10,8057400100000,NearlySorted,4,ParallelSort,0,6925100000,NearlySorted,4,ParallelSort,1,9832100000,NearlySorted,4,ParallelSort,2,28231100000,NearlySorted,4,ParallelSort,3,87335100000,NearlySorted,4,ParallelSort,4,175849100000,NearlySorted,4,ParallelSort,5,342430100000,NearlySorted,4,ParallelSort,6,572219100000,NearlySorted,4,ParallelSort,7,911175100000,NearlySorted,4,ParallelSort,8,1292727100000,NearlySorted,4,ParallelSort,9,1838428100000,NearlySorted,4,ParallelSort,10,2580911100000,NearlySorted,4,ParallelBufferedSort,0,6025100000,NearlySorted,4,ParallelBufferedSort,1,7764100000,NearlySorted,4,ParallelBufferedSort,2,20502100000,NearlySorted,4,ParallelBufferedSort,3,59823100000,NearlySorted,4,ParallelBufferedSort,4,124073100000,NearlySorted,4,ParallelBufferedSort,5,217427100000,NearlySorted,4,ParallelBufferedSort,6,365509100000,NearlySorted,4,ParallelBufferedSort,7,575160100000,NearlySorted,4,ParallelBufferedSort,8,812362100000,NearlySorted,4,ParallelBufferedSort,9,1204023100000,NearlySorted,4,ParallelBufferedSort,10,1647865100000,NearlySorted,4,ParallelRadixSort,0,15855100000,NearlySorted,4,ParallelRadixSort,1,23131100000,NearlySorted,4,ParallelRadixSort,2,55485100000,NearlySorted,4,ParallelRadixSort,3,154633100000,NearlySorted,4,ParallelRadixSort,4,322032100000,NearlySorted,4,ParallelRadixSort,5,597990100000,NearlySorted,4,ParallelRadixSort,6,1009327100000,NearlySorted,4,ParallelRadixSort,7,1584268100000,NearlySorted,4,ParallelRadixSort,8,2355603100000,NearlySorted,4,ParallelRadixSort,9,3328448100000,NearlySorted,4,ParallelRadixSort,10,4569441100000,NearlySorted,4,StdSort,0,19481100000,NearlySorted,4,StdSort,1,28094100000,NearlySorted,4,StdSort,2,84505100000,NearlySorted,4,StdSort,3,268735100000,NearlySorted,4,StdSort,4,566380100000,NearlySorted,4,StdSort,5,1053596100000,NearlySorted,4,StdSort,6,1781811100000,NearlySorted,4,StdSort,7,2799515100000,NearlySorted,4,StdSort,8,4151791100000,NearlySorted,4,StdSort,9,5888250100000,NearlySorted,4,StdSort,10,8060672100000,NearlySorted,5,ParallelSort,0,6250100000,NearlySorted,5,ParallelSort,1,8878100000,NearlySorted,5,ParallelSort,2,25298100000,NearlySorted,5,ParallelSort,3,78975100000,NearlySorted,5,ParallelSort,4,165302100000,NearlySorted,5,ParallelSort,5,300921100000,NearlySorted,5,ParallelSort,6,512319100000,NearlySorted,5,ParallelSort,7,802328100000,NearlySorted,5,ParallelSort,8,1144574100000,NearlySorted,5,ParallelSort,9,1676844100000,NearlySorted,5,ParallelSort,10,2219496100000,NearlySorted,5,ParallelBufferedSort,0,5448100000,NearlySorted,5,ParallelBufferedSort,1,6681100000,NearlySorted,5,ParallelBufferedSort,2,17358100000,NearlySorted,5,ParallelBufferedSort,3,51482100000,NearlySorted,5,ParallelBufferedSort,4,103320100000,NearlySorted,5,ParallelBufferedSort,5,192678100000,NearlySorted,5,ParallelBufferedSort,6,316469100000,NearlySorted,5,ParallelBufferedSort,7,479094100000,NearlySorted,5,ParallelBufferedSort,8,709522100000,NearlySorted,5,ParallelBufferedSort,9,1005361100000,NearlySorted,5,ParallelBufferedSort,10,1375129100000,NearlySorted,5,ParallelRadixSort,0,29674100000,NearlySorted,5,ParallelRadixSort,1,43584100000,NearlySorted,5,ParallelRadixSort,2,103840100000,NearlySorted,5,ParallelRadixSort,3,290461100000,NearlySorted,5,ParallelRadixSort,4,604696100000,NearlySorted,5,ParallelRadixSort,5,1121653100000,NearlySorted,5,ParallelRadixSort,6,1892913100000,NearlySorted,5,ParallelRadixSort,7,2968352100000,NearlySorted,5,ParallelRadixSort,8,4402506100000,NearlySorted,5,ParallelRadixSort,9,6253452100000,NearlySorted,5,ParallelRadixSort,10,8557324100000,NearlySorted,5,StdSort,0,19480100000,NearlySorted,5,StdSort,1,28130100000,NearlySorted,5,StdSort,2,84493100000,NearlySorted,5,StdSort,3,268719100000,NearlySorted,5,StdSort,4,565857100000,NearlySorted,5,StdSort,5,1054161100000,NearlySorted,5,StdSort,6,1781560100000,NearlySorted,5,StdSort,7,2800572100000,NearlySorted,5,StdSort,8,4150459100000,NearlySorted,5,StdSort,9,5887890100000,NearlySorted,5,StdSort,10,8056718100000,NearlySorted,6,ParallelSort,0,5681100000,NearlySorted,6,ParallelSort,1,8078100000,NearlySorted,6,ParallelSort,2,23054100000,NearlySorted,6,ParallelSort,3,72071100000,NearlySorted,6,ParallelSort,4,151217100000,NearlySorted,6,ParallelSort,5,274512100000,NearlySorted,6,ParallelSort,6,454780100000,NearlySorted,6,ParallelSort,7,713625100000,NearlySorted,6,ParallelSort,8,1059380100000,NearlySorted,6,ParallelSort,9,1499898100000,NearlySorted,6,ParallelSort,10,2054094100000,NearlySorted,6,ParallelBufferedSort,0,4869100000,NearlySorted,6,ParallelBufferedSort,1,5767100000,NearlySorted,6,ParallelBufferedSort,2,15479100000,NearlySorted,6,ParallelBufferedSort,3,44813100000,NearlySorted,6,ParallelBufferedSort,4,89417100000,NearlySorted,6,ParallelBufferedSort,5,163966100000,NearlySorted,6,ParallelBufferedSort,6,278484100000,NearlySorted,6,ParallelBufferedSort,7,429255100000,NearlySorted,6,ParallelBufferedSort,8,643955100000,NearlySorted,6,ParallelBufferedSort,9,906538100000,NearlySorted,6,ParallelBufferedSort,10,1210582100000,NearlySorted,6,ParallelRadixSort,0,29614100000,NearlySorted,6,ParallelRadixSort,1,43264100000,NearlySorted,6,ParallelRadixSort,2,103155100000,NearlySorted,6,ParallelRadixSort,3,288643100000,NearlySorted,6,ParallelRadixSort,4,600389100000,NearlySorted,6,ParallelRadixSort,5,1112049100000,NearlySorted,6,ParallelRadixSort,6,1878279100000,NearlySorted,6,ParallelRadixSort,7,2952237100000,NearlySorted,6,ParallelRadixSort,8,4364531100000,NearlySorted,6,ParallelRadixSort,9,6209794100000,NearlySorted,6,ParallelRadixSort,10,8494680100000,NearlySorted,6,StdSort,0,19480100000,NearlySorted,6,StdSort,1,28106100000,NearlySorted,6,StdSort,2,84495100000,NearlySorted,6,StdSort,3,268714100000,NearlySorted,6,StdSort,4,565896100000,NearlySorted,6,StdSort,5,1053731100000,NearlySorted,6,StdSort,6,1782433100000,NearlySorted,6,StdSort,7,2798237100000,NearlySorted,6,StdSort,8,4149889100000,NearlySorted,6,StdSort,9,5887840100000,NearlySorted,6,StdSort,10,8056907100000,NearlySorted,7,ParallelSort,0,5126100000,NearlySorted,7,ParallelSort,1,7201100000,NearlySorted,7,ParallelSort,2,19396100000,NearlySorted,7,ParallelSort,3,60263100000,NearlySorted,7,ParallelSort,4,126730100000,NearlySorted,7,ParallelSort,5,259867100000,NearlySorted,7,ParallelSort,6,438561100000,NearlySorted,7,ParallelSort,7,651247100000,NearlySorted,7,ParallelSort,8,956124100000,NearlySorted,7,ParallelSort,9,1407811100000,NearlySorted,7,ParallelSort,10,1854965100000,NearlySorted,7,ParallelBufferedSort,0,4374100000,NearlySorted,7,ParallelBufferedSort,1,5321100000,NearlySorted,7,ParallelBufferedSort,2,11992100000,NearlySorted,7,ParallelBufferedSort,3,41781100000,NearlySorted,7,ParallelBufferedSort,4,67990100000,NearlySorted,7,ParallelBufferedSort,5,144365100000,NearlySorted,7,ParallelBufferedSort,6,209332100000,NearlySorted,7,ParallelBufferedSort,7,328505100000,NearlySorted,7,ParallelBufferedSort,8,566805100000,NearlySorted,7,ParallelBufferedSort,9,772919100000,NearlySorted,7,ParallelBufferedSort,10,962288100000,NearlySorted,7,ParallelRadixSort,0,29634100000,NearlySorted,7,ParallelRadixSort,1,43552100000,NearlySorted,7,ParallelRadixSort,2,102937100000,NearlySorted,7,ParallelRadixSort,3,287488100000,NearlySorted,7,ParallelRadixSort,4,596926100000,NearlySorted,7,ParallelRadixSort,5,1111086100000,NearlySorted,7,ParallelRadixSort,6,1869938100000,NearlySorted,7,ParallelRadixSort,7,2933337100000,NearlySorted,7,ParallelRadixSort,8,4347017100000,NearlySorted,7,ParallelRadixSort,9,6167098100000,NearlySorted,7,ParallelRadixSort,10,8447897100000,NearlySorted,7,StdSort,0,19482100000,NearlySorted,7,StdSort,1,28130100000,NearlySorted,7,StdSort,2,84495100000,NearlySorted,7,StdSort,3,268735100000,NearlySorted,7,StdSort,4,565890100000,NearlySorted,7,StdSort,5,1053805100000,NearlySorted,7,StdSort,6,1780772100000,NearlySorted,7,StdSort,7,2798607100000,NearlySorted,7,StdSort,8,4150743100000,NearlySorted,7,StdSort,9,5887378100000,NearlySorted,7,StdSort,10,8057347100000,NearlySorted,8,ParallelSort,0,5117100000,NearlySorted,8,ParallelSort,1,6859100000,NearlySorted,8,ParallelSort,2,19388100000,NearlySorted,8,ParallelSort,3,60276100000,NearlySorted,8,ParallelSort,4,125854100000,NearlySorted,8,ParallelSort,5,236295100000,NearlySorted,8,ParallelSort,6,399801100000,NearlySorted,8,ParallelSort,7,631745100000,NearlySorted,8,ParallelSort,8,919985100000,NearlySorted,8,ParallelSort,9,1320805100000,NearlySorted,8,ParallelSort,10,1809757100000,NearlySorted,8,ParallelBufferedSort,0,5071100000,NearlySorted,8,ParallelBufferedSort,1,6572100000,NearlySorted,8,ParallelBufferedSort,2,11548100000,NearlySorted,8,ParallelBufferedSort,3,31847100000,NearlySorted,8,ParallelBufferedSort,4,70962100000,NearlySorted,8,ParallelBufferedSort,5,108560100000,NearlySorted,8,ParallelBufferedSort,6,181597100000,NearlySorted,8,ParallelBufferedSort,7,280334100000,NearlySorted,8,ParallelBufferedSort,8,403367100000,NearlySorted,8,ParallelBufferedSort,9,570695100000,NearlySorted,8,ParallelBufferedSort,10,773267100000,NearlySorted,8,ParallelRadixSort,0,16071100000,NearlySorted,8,ParallelRadixSort,1,23303100000,NearlySorted,8,ParallelRadixSort,2,54215100000,NearlySorted,8,ParallelRadixSort,3,152451100000,NearlySorted,8,ParallelRadixSort,4,311946100000,NearlySorted,8,ParallelRadixSort,5,579425100000,NearlySorted,8,ParallelRadixSort,6,994572100000,NearlySorted,8,ParallelRadixSort,7,1525192100000,NearlySorted,8,ParallelRadixSort,8,2286855100000,NearlySorted,8,ParallelRadixSort,9,3190844100000,NearlySorted,8,ParallelRadixSort,10,4357220100000,NearlySorted,8,StdSort,0,19479100000,NearlySorted,8,StdSort,1,28104100000,NearlySorted,8,StdSort,2,84497100000,NearlySorted,8,StdSort,3,268717100000,NearlySorted,8,StdSort,4,565892100000,NearlySorted,8,StdSort,5,1054515100000,NearlySorted,8,StdSort,6,1782932100000,NearlySorted,8,StdSort,7,2800272100000,NearlySorted,8,StdSort,8,4151244100000,NearlySorted,8,StdSort,9,5887950100000,NearlySorted,8,StdSort,10,8057220100000,NormalDistributionWithDups,1,ParallelSort,0,39979100000,NormalDistributionWithDups,1,ParallelSort,1,54566100000,NormalDistributionWithDups,1,ParallelSort,2,148056100000,NormalDistributionWithDups,1,ParallelSort,3,439308100000,NormalDistributionWithDups,1,ParallelSort,4,914241100000,NormalDistributionWithDups,1,ParallelSort,5,1692769100000,NormalDistributionWithDups,1,ParallelSort,6,2856597100000,NormalDistributionWithDups,1,ParallelSort,7,4482716100000,NormalDistributionWithDups,1,ParallelSort,8,6642534100000,NormalDistributionWithDups,1,ParallelSort,9,9417812100000,NormalDistributionWithDups,1,ParallelSort,10,12885547100000,NormalDistributionWithDups,1,ParallelBufferedSort,0,39985100000,NormalDistributionWithDups,1,ParallelBufferedSort,1,54572100000,NormalDistributionWithDups,1,ParallelBufferedSort,2,148056100000,NormalDistributionWithDups,1,ParallelBufferedSort,3,439403100000,NormalDistributionWithDups,1,ParallelBufferedSort,4,914484100000,NormalDistributionWithDups,1,ParallelBufferedSort,5,1693171100000,NormalDistributionWithDups,1,ParallelBufferedSort,6,2857262100000,NormalDistributionWithDups,1,ParallelBufferedSort,7,4483979100000,NormalDistributionWithDups,1,ParallelBufferedSort,8,6644528100000,NormalDistributionWithDups,1,ParallelBufferedSort,9,9421488100000,NormalDistributionWithDups,1,ParallelBufferedSort,10,12891523100000,NormalDistributionWithDups,1,ParallelRadixSort,0,38029100000,NormalDistributionWithDups,1,ParallelRadixSort,1,58296100000,NormalDistributionWithDups,1,ParallelRadixSort,2,144394100000,NormalDistributionWithDups,1,ParallelRadixSort,3,414459100000,NormalDistributionWithDups,1,ParallelRadixSort,4,868473100000,NormalDistributionWithDups,1,ParallelRadixSort,5,1617525100000,NormalDistributionWithDups,1,ParallelRadixSort,6,2735762100000,NormalDistributionWithDups,1,ParallelRadixSort,7,4293837100000,NormalDistributionWithDups,1,ParallelRadixSort,8,6370378100000,NormalDistributionWithDups,1,ParallelRadixSort,9,9038553100000,NormalDistributionWithDups,1,ParallelRadixSort,10,12361122100000,NormalDistributionWithDups,1,StdSort,0,39968100000,NormalDistributionWithDups,1,StdSort,1,54561100000,NormalDistributionWithDups,1,StdSort,2,148186100000,NormalDistributionWithDups,1,StdSort,3,439761100000,NormalDistributionWithDups,1,StdSort,4,915283100000,NormalDistributionWithDups,1,StdSort,5,1693743100000,NormalDistributionWithDups,1,StdSort,6,2857677100000,NormalDistributionWithDups,1,StdSort,7,4483872100000,NormalDistributionWithDups,1,StdSort,8,6643791100000,NormalDistributionWithDups,1,StdSort,9,9420193100000,NormalDistributionWithDups,1,StdSort,10,12888816100000,NormalDistributionWithDups,2,ParallelSort,0,19010100000,NormalDistributionWithDups,2,ParallelSort,1,24340100000,NormalDistributionWithDups,2,ParallelSort,2,58664100000,NormalDistributionWithDups,2,ParallelSort,3,169790100000,NormalDistributionWithDups,2,ParallelSort,4,356032100000,NormalDistributionWithDups,2,ParallelSort,5,664296100000,NormalDistributionWithDups,2,ParallelSort,6,1122191100000,NormalDistributionWithDups,2,ParallelSort,7,1763438100000,NormalDistributionWithDups,2,ParallelSort,8,2632858100000,NormalDistributionWithDups,2,ParallelSort,9,3720723100000,NormalDistributionWithDups,2,ParallelSort,10,5093293100000,NormalDistributionWithDups,2,ParallelBufferedSort,0,18814100000,NormalDistributionWithDups,2,ParallelBufferedSort,1,24496100000,NormalDistributionWithDups,2,ParallelBufferedSort,2,61177100000,NormalDistributionWithDups,2,ParallelBufferedSort,3,176222100000,NormalDistributionWithDups,2,ParallelBufferedSort,4,367396100000,NormalDistributionWithDups,2,ParallelBufferedSort,5,682264100000,NormalDistributionWithDups,2,ParallelBufferedSort,6,1151665100000,NormalDistributionWithDups,2,ParallelBufferedSort,7,1812275100000,NormalDistributionWithDups,2,ParallelBufferedSort,8,2681894100000,NormalDistributionWithDups,2,ParallelBufferedSort,9,3800138100000,NormalDistributionWithDups,2,ParallelBufferedSort,10,5205205100000,NormalDistributionWithDups,2,ParallelRadixSort,0,20638100000,NormalDistributionWithDups,2,ParallelRadixSort,1,30603100000,NormalDistributionWithDups,2,ParallelRadixSort,2,73593100000,NormalDistributionWithDups,2,ParallelRadixSort,3,208906100000,NormalDistributionWithDups,2,ParallelRadixSort,4,436245100000,NormalDistributionWithDups,2,ParallelRadixSort,5,810805100000,NormalDistributionWithDups,2,ParallelRadixSort,6,1369507100000,NormalDistributionWithDups,2,ParallelRadixSort,7,2149500100000,NormalDistributionWithDups,2,ParallelRadixSort,8,3187619100000,NormalDistributionWithDups,2,ParallelRadixSort,9,4520709100000,NormalDistributionWithDups,2,ParallelRadixSort,10,6185359100000,NormalDistributionWithDups,2,StdSort,0,39717100000,NormalDistributionWithDups,2,StdSort,1,54287100000,NormalDistributionWithDups,2,StdSort,2,147675100000,NormalDistributionWithDups,2,StdSort,3,437275100000,NormalDistributionWithDups,2,StdSort,4,909508100000,NormalDistributionWithDups,2,StdSort,5,1683642100000,NormalDistributionWithDups,2,StdSort,6,2841422100000,NormalDistributionWithDups,2,StdSort,7,4458425100000,NormalDistributionWithDups,2,StdSort,8,6606686100000,NormalDistributionWithDups,2,StdSort,9,9366899100000,NormalDistributionWithDups,2,StdSort,10,12817619100000,NormalDistributionWithDups,3,ParallelSort,0,13070100000,NormalDistributionWithDups,3,ParallelSort,1,16649100000,NormalDistributionWithDups,3,ParallelSort,2,39519100000,NormalDistributionWithDups,3,ParallelSort,3,114750100000,NormalDistributionWithDups,3,ParallelSort,4,241426100000,NormalDistributionWithDups,3,ParallelSort,5,448563100000,NormalDistributionWithDups,3,ParallelSort,6,758224100000,NormalDistributionWithDups,3,ParallelSort,7,1183849100000,NormalDistributionWithDups,3,ParallelSort,8,1762337100000,NormalDistributionWithDups,3,ParallelSort,9,2503544100000,NormalDistributionWithDups,3,ParallelSort,10,3413959100000,NormalDistributionWithDups,3,ParallelBufferedSort,0,11943100000,NormalDistributionWithDups,3,ParallelBufferedSort,1,15491100000,NormalDistributionWithDups,3,ParallelBufferedSort,2,38541100000,NormalDistributionWithDups,3,ParallelBufferedSort,3,109349100000,NormalDistributionWithDups,3,ParallelBufferedSort,4,227594100000,NormalDistributionWithDups,3,ParallelBufferedSort,5,422298100000,NormalDistributionWithDups,3,ParallelBufferedSort,6,712931100000,NormalDistributionWithDups,3,ParallelBufferedSort,7,1118982100000,NormalDistributionWithDups,3,ParallelBufferedSort,8,1664393100000,NormalDistributionWithDups,3,ParallelBufferedSort,9,2351930100000,NormalDistributionWithDups,3,ParallelBufferedSort,10,3218819100000,NormalDistributionWithDups,3,ParallelRadixSort,0,34251100000,NormalDistributionWithDups,3,ParallelRadixSort,1,51684100000,NormalDistributionWithDups,3,ParallelRadixSort,2,123206100000,NormalDistributionWithDups,3,ParallelRadixSort,3,343546100000,NormalDistributionWithDups,3,ParallelRadixSort,4,714248100000,NormalDistributionWithDups,3,ParallelRadixSort,5,1325635100000,NormalDistributionWithDups,3,ParallelRadixSort,6,2239486100000,NormalDistributionWithDups,3,ParallelRadixSort,7,3508382100000,NormalDistributionWithDups,3,ParallelRadixSort,8,5193757100000,NormalDistributionWithDups,3,ParallelRadixSort,9,7373889100000,NormalDistributionWithDups,3,ParallelRadixSort,10,10101973100000,NormalDistributionWithDups,3,StdSort,0,38001100000,NormalDistributionWithDups,3,StdSort,1,51975100000,NormalDistributionWithDups,3,StdSort,2,141592100000,NormalDistributionWithDups,3,StdSort,3,420227100000,NormalDistributionWithDups,3,StdSort,4,874160100000,NormalDistributionWithDups,3,StdSort,5,1618428100000,NormalDistributionWithDups,3,StdSort,6,2731769100000,NormalDistributionWithDups,3,StdSort,7,4286418100000,NormalDistributionWithDups,3,StdSort,8,6351406100000,NormalDistributionWithDups,3,StdSort,9,9005624100000,NormalDistributionWithDups,3,StdSort,10,12320990100000,NormalDistributionWithDups,4,ParallelSort,0,11619100000,NormalDistributionWithDups,4,ParallelSort,1,14759100000,NormalDistributionWithDups,4,ParallelSort,2,34996100000,NormalDistributionWithDups,4,ParallelSort,3,100784100000,NormalDistributionWithDups,4,ParallelSort,4,211915100000,NormalDistributionWithDups,4,ParallelSort,5,394041100000,NormalDistributionWithDups,4,ParallelSort,6,654138100000,NormalDistributionWithDups,4,ParallelSort,7,1044793100000,NormalDistributionWithDups,4,ParallelSort,8,1490168100000,NormalDistributionWithDups,4,ParallelSort,9,2173622100000,NormalDistributionWithDups,4,ParallelSort,10,2823830100000,NormalDistributionWithDups,4,ParallelBufferedSort,0,10829100000,NormalDistributionWithDups,4,ParallelBufferedSort,1,14066100000,NormalDistributionWithDups,4,ParallelBufferedSort,2,33824100000,NormalDistributionWithDups,4,ParallelBufferedSort,3,97567100000,NormalDistributionWithDups,4,ParallelBufferedSort,4,193985100000,NormalDistributionWithDups,4,ParallelBufferedSort,5,370751100000,NormalDistributionWithDups,4,ParallelBufferedSort,6,601833100000,NormalDistributionWithDups,4,ParallelBufferedSort,7,926995100000,NormalDistributionWithDups,4,ParallelBufferedSort,8,1404018100000,NormalDistributionWithDups,4,ParallelBufferedSort,9,1946759100000,NormalDistributionWithDups,4,ParallelBufferedSort,10,2653293100000,NormalDistributionWithDups,4,ParallelRadixSort,0,16985100000,NormalDistributionWithDups,4,ParallelRadixSort,1,24933100000,NormalDistributionWithDups,4,ParallelRadixSort,2,58583100000,NormalDistributionWithDups,4,ParallelRadixSort,3,163729100000,NormalDistributionWithDups,4,ParallelRadixSort,4,339975100000,NormalDistributionWithDups,4,ParallelRadixSort,5,630922100000,NormalDistributionWithDups,4,ParallelRadixSort,6,1064179100000,NormalDistributionWithDups,4,ParallelRadixSort,7,1669762100000,NormalDistributionWithDups,4,ParallelRadixSort,8,2475312100000,NormalDistributionWithDups,4,ParallelRadixSort,9,3507715100000,NormalDistributionWithDups,4,ParallelRadixSort,10,4803259100000,NormalDistributionWithDups,4,StdSort,0,35048100000,NormalDistributionWithDups,4,StdSort,1,47570100000,NormalDistributionWithDups,4,StdSort,2,129493100000,NormalDistributionWithDups,4,StdSort,3,384487100000,NormalDistributionWithDups,4,StdSort,4,799162100000,NormalDistributionWithDups,4,StdSort,5,1479661100000,NormalDistributionWithDups,4,StdSort,6,2496667100000,NormalDistributionWithDups,4,StdSort,7,3917446100000,NormalDistributionWithDups,4,StdSort,8,5804626100000,NormalDistributionWithDups,4,StdSort,9,8230440100000,NormalDistributionWithDups,4,StdSort,10,11260647100000,NormalDistributionWithDups,5,ParallelSort,0,12439100000,NormalDistributionWithDups,5,ParallelSort,1,15597100000,NormalDistributionWithDups,5,ParallelSort,2,36613100000,NormalDistributionWithDups,5,ParallelSort,3,105397100000,NormalDistributionWithDups,5,ParallelSort,4,219618100000,NormalDistributionWithDups,5,ParallelSort,5,411211100000,NormalDistributionWithDups,5,ParallelSort,6,695616100000,NormalDistributionWithDups,5,ParallelSort,7,1065460100000,NormalDistributionWithDups,5,ParallelSort,8,1623680100000,NormalDistributionWithDups,5,ParallelSort,9,2295949100000,NormalDistributionWithDups,5,ParallelSort,10,2959316100000,NormalDistributionWithDups,5,ParallelBufferedSort,0,11223100000,NormalDistributionWithDups,5,ParallelBufferedSort,1,14498100000,NormalDistributionWithDups,5,ParallelBufferedSort,2,35231100000,NormalDistributionWithDups,5,ParallelBufferedSort,3,100078100000,NormalDistributionWithDups,5,ParallelBufferedSort,4,213489100000,NormalDistributionWithDups,5,ParallelBufferedSort,5,385678100000,NormalDistributionWithDups,5,ParallelBufferedSort,6,656374100000,NormalDistributionWithDups,5,ParallelBufferedSort,7,957208100000,NormalDistributionWithDups,5,ParallelBufferedSort,8,1430736100000,NormalDistributionWithDups,5,ParallelBufferedSort,9,2012637100000,NormalDistributionWithDups,5,ParallelBufferedSort,10,2729649100000,NormalDistributionWithDups,5,ParallelRadixSort,0,36821100000,NormalDistributionWithDups,5,ParallelRadixSort,1,54415100000,NormalDistributionWithDups,5,ParallelRadixSort,2,129648100000,NormalDistributionWithDups,5,ParallelRadixSort,3,362279100000,NormalDistributionWithDups,5,ParallelRadixSort,4,753094100000,NormalDistributionWithDups,5,ParallelRadixSort,5,1395736100000,NormalDistributionWithDups,5,ParallelRadixSort,6,2355580100000,NormalDistributionWithDups,5,ParallelRadixSort,7,3694596100000,NormalDistributionWithDups,5,ParallelRadixSort,8,5468564100000,NormalDistributionWithDups,5,ParallelRadixSort,9,7753182100000,NormalDistributionWithDups,5,ParallelRadixSort,10,10609826100000,NormalDistributionWithDups,5,StdSort,0,40348100000,NormalDistributionWithDups,5,StdSort,1,55078100000,NormalDistributionWithDups,5,StdSort,2,149612100000,NormalDistributionWithDups,5,StdSort,3,444818100000,NormalDistributionWithDups,5,StdSort,4,923884100000,NormalDistributionWithDups,5,StdSort,5,1710025100000,NormalDistributionWithDups,5,StdSort,6,2885108100000,NormalDistributionWithDups,5,StdSort,7,4527061100000,NormalDistributionWithDups,5,StdSort,8,6707359100000,NormalDistributionWithDups,5,StdSort,9,9511401100000,NormalDistributionWithDups,5,StdSort,10,13012315100000,NormalDistributionWithDups,6,ParallelSort,0,9234100000,NormalDistributionWithDups,6,ParallelSort,1,11520100000,NormalDistributionWithDups,6,ParallelSort,2,26412100000,NormalDistributionWithDups,6,ParallelSort,3,75889100000,NormalDistributionWithDups,6,ParallelSort,4,156575100000,NormalDistributionWithDups,6,ParallelSort,5,295075100000,NormalDistributionWithDups,6,ParallelSort,6,499907100000,NormalDistributionWithDups,6,ParallelSort,7,776310100000,NormalDistributionWithDups,6,ParallelSort,8,1157830100000,NormalDistributionWithDups,6,ParallelSort,9,1648205100000,NormalDistributionWithDups,6,ParallelSort,10,2219938100000,NormalDistributionWithDups,6,ParallelBufferedSort,0,8333100000,NormalDistributionWithDups,6,ParallelBufferedSort,1,10743100000,NormalDistributionWithDups,6,ParallelBufferedSort,2,24023100000,NormalDistributionWithDups,6,ParallelBufferedSort,3,67453100000,NormalDistributionWithDups,6,ParallelBufferedSort,4,139309100000,NormalDistributionWithDups,6,ParallelBufferedSort,5,263973100000,NormalDistributionWithDups,6,ParallelBufferedSort,6,439841100000,NormalDistributionWithDups,6,ParallelBufferedSort,7,697864100000,NormalDistributionWithDups,6,ParallelBufferedSort,8,1038932100000,NormalDistributionWithDups,6,ParallelBufferedSort,9,1427345100000,NormalDistributionWithDups,6,ParallelBufferedSort,10,1970811100000,NormalDistributionWithDups,6,ParallelRadixSort,0,29531100000,NormalDistributionWithDups,6,ParallelRadixSort,1,43584100000,NormalDistributionWithDups,6,ParallelRadixSort,2,103405100000,NormalDistributionWithDups,6,ParallelRadixSort,3,287723100000,NormalDistributionWithDups,6,ParallelRadixSort,4,596817100000,NormalDistributionWithDups,6,ParallelRadixSort,5,1103699100000,NormalDistributionWithDups,6,ParallelRadixSort,6,1866900100000,NormalDistributionWithDups,6,ParallelRadixSort,7,2920118100000,NormalDistributionWithDups,6,ParallelRadixSort,8,4328016100000,NormalDistributionWithDups,6,ParallelRadixSort,9,6138108100000,NormalDistributionWithDups,6,ParallelRadixSort,10,8378641100000,NormalDistributionWithDups,6,StdSort,0,33041100000,NormalDistributionWithDups,6,StdSort,1,45164100000,NormalDistributionWithDups,6,StdSort,2,123175100000,NormalDistributionWithDups,6,StdSort,3,365520100000,NormalDistributionWithDups,6,StdSort,4,759319100000,NormalDistributionWithDups,6,StdSort,5,1406173100000,NormalDistributionWithDups,6,StdSort,6,2372740100000,NormalDistributionWithDups,6,StdSort,7,3722990100000,NormalDistributionWithDups,6,StdSort,8,5516460100000,NormalDistributionWithDups,6,StdSort,9,7822725100000,NormalDistributionWithDups,6,StdSort,10,10702074100000,NormalDistributionWithDups,7,ParallelSort,0,9942100000,NormalDistributionWithDups,7,ParallelSort,1,12459100000,NormalDistributionWithDups,7,ParallelSort,2,28668100000,NormalDistributionWithDups,7,ParallelSort,3,81521100000,NormalDistributionWithDups,7,ParallelSort,4,169626100000,NormalDistributionWithDups,7,ParallelSort,5,316192100000,NormalDistributionWithDups,7,ParallelSort,6,539627100000,NormalDistributionWithDups,7,ParallelSort,7,847703100000,NormalDistributionWithDups,7,ParallelSort,8,1249463100000,NormalDistributionWithDups,7,ParallelSort,9,1779422100000,NormalDistributionWithDups,7,ParallelSort,10,2437939100000,NormalDistributionWithDups,7,ParallelBufferedSort,0,8260100000,NormalDistributionWithDups,7,ParallelBufferedSort,1,10512100000,NormalDistributionWithDups,7,ParallelBufferedSort,2,24723100000,NormalDistributionWithDups,7,ParallelBufferedSort,3,68621100000,NormalDistributionWithDups,7,ParallelBufferedSort,4,145353100000,NormalDistributionWithDups,7,ParallelBufferedSort,5,268037100000,NormalDistributionWithDups,7,ParallelBufferedSort,6,449811100000,NormalDistributionWithDups,7,ParallelBufferedSort,7,702822100000,NormalDistributionWithDups,7,ParallelBufferedSort,8,1038073100000,NormalDistributionWithDups,7,ParallelBufferedSort,9,1472819100000,NormalDistributionWithDups,7,ParallelBufferedSort,10,2027563100000,NormalDistributionWithDups,7,ParallelRadixSort,0,34786100000,NormalDistributionWithDups,7,ParallelRadixSort,1,51153100000,NormalDistributionWithDups,7,ParallelRadixSort,2,121471100000,NormalDistributionWithDups,7,ParallelRadixSort,3,339749100000,NormalDistributionWithDups,7,ParallelRadixSort,4,701814100000,NormalDistributionWithDups,7,ParallelRadixSort,5,1299720100000,NormalDistributionWithDups,7,ParallelRadixSort,6,2192813100000,NormalDistributionWithDups,7,ParallelRadixSort,7,3439239100000,NormalDistributionWithDups,7,ParallelRadixSort,8,5122644100000,NormalDistributionWithDups,7,ParallelRadixSort,9,7227886100000,NormalDistributionWithDups,7,ParallelRadixSort,10,9895214100000,NormalDistributionWithDups,7,StdSort,0,38377100000,NormalDistributionWithDups,7,StdSort,1,52407100000,NormalDistributionWithDups,7,StdSort,2,142472100000,NormalDistributionWithDups,7,StdSort,3,423123100000,NormalDistributionWithDups,7,StdSort,4,880439100000,NormalDistributionWithDups,7,StdSort,5,1629333100000,NormalDistributionWithDups,7,StdSort,6,2749078100000,NormalDistributionWithDups,7,StdSort,7,4313630100000,NormalDistributionWithDups,7,StdSort,8,6391274100000,NormalDistributionWithDups,7,StdSort,9,9061832100000,NormalDistributionWithDups,7,StdSort,10,12398143100000,NormalDistributionWithDups,8,ParallelSort,0,9212100000,NormalDistributionWithDups,8,ParallelSort,1,11482100000,NormalDistributionWithDups,8,ParallelSort,2,26147100000,NormalDistributionWithDups,8,ParallelSort,3,73521100000,NormalDistributionWithDups,8,ParallelSort,4,154139100000,NormalDistributionWithDups,8,ParallelSort,5,283334100000,NormalDistributionWithDups,8,ParallelSort,6,484658100000,NormalDistributionWithDups,8,ParallelSort,7,756301100000,NormalDistributionWithDups,8,ParallelSort,8,1129224100000,NormalDistributionWithDups,8,ParallelSort,9,1599711100000,NormalDistributionWithDups,8,ParallelSort,10,2191435100000,NormalDistributionWithDups,8,ParallelBufferedSort,0,9984100000,NormalDistributionWithDups,8,ParallelBufferedSort,1,11936100000,NormalDistributionWithDups,8,ParallelBufferedSort,2,28395100000,NormalDistributionWithDups,8,ParallelBufferedSort,3,72393100000,NormalDistributionWithDups,8,ParallelBufferedSort,4,133165100000,NormalDistributionWithDups,8,ParallelBufferedSort,5,251279100000,NormalDistributionWithDups,8,ParallelBufferedSort,6,395875100000,NormalDistributionWithDups,8,ParallelBufferedSort,7,633394100000,NormalDistributionWithDups,8,ParallelBufferedSort,8,958886100000,NormalDistributionWithDups,8,ParallelBufferedSort,9,1335006100000,NormalDistributionWithDups,8,ParallelBufferedSort,10,1817192100000,NormalDistributionWithDups,8,ParallelRadixSort,0,17446100000,NormalDistributionWithDups,8,ParallelRadixSort,1,25687100000,NormalDistributionWithDups,8,ParallelRadixSort,2,59624100000,NormalDistributionWithDups,8,ParallelRadixSort,3,162215100000,NormalDistributionWithDups,8,ParallelRadixSort,4,335379100000,NormalDistributionWithDups,8,ParallelRadixSort,5,622751100000,NormalDistributionWithDups,8,ParallelRadixSort,6,1067930100000,NormalDistributionWithDups,8,ParallelRadixSort,7,1666297100000,NormalDistributionWithDups,8,ParallelRadixSort,8,2454792100000,NormalDistributionWithDups,8,ParallelRadixSort,9,3489748100000,NormalDistributionWithDups,8,ParallelRadixSort,10,4778315100000,NormalDistributionWithDups,8,StdSort,0,35792100000,NormalDistributionWithDups,8,StdSort,1,48865100000,NormalDistributionWithDups,8,StdSort,2,133053100000,NormalDistributionWithDups,8,StdSort,3,393769100000,NormalDistributionWithDups,8,StdSort,4,819262100000,NormalDistributionWithDups,8,StdSort,5,1516964100000,NormalDistributionWithDups,8,StdSort,6,2559385100000,NormalDistributionWithDups,8,StdSort,7,4015873100000,NormalDistributionWithDups,8,StdSort,8,5950713100000,NormalDistributionWithDups,8,StdSort,9,8436360100000,NormalDistributionWithDups,8,StdSort,10,11542511100000,SawTooth,1,ParallelSort,0,43095100000,SawTooth,1,ParallelSort,1,61882100000,SawTooth,1,ParallelSort,2,178114100000,SawTooth,1,ParallelSort,3,551842100000,SawTooth,1,ParallelSort,4,1157959100000,SawTooth,1,ParallelSort,5,2153543100000,SawTooth,1,ParallelSort,6,3639518100000,SawTooth,1,ParallelSort,7,5713794100000,SawTooth,1,ParallelSort,8,8469666100000,SawTooth,1,ParallelSort,9,12011661100000,SawTooth,1,ParallelSort,10,16437668100000,SawTooth,1,ParallelBufferedSort,0,43100100000,SawTooth,1,ParallelBufferedSort,1,61916100000,SawTooth,1,ParallelBufferedSort,2,178102100000,SawTooth,1,ParallelBufferedSort,3,551873100000,SawTooth,1,ParallelBufferedSort,4,1157889100000,SawTooth,1,ParallelBufferedSort,5,2153069100000,SawTooth,1,ParallelBufferedSort,6,3637322100000,SawTooth,1,ParallelBufferedSort,7,5713213100000,SawTooth,1,ParallelBufferedSort,8,8469983100000,SawTooth,1,ParallelBufferedSort,9,12014276100000,SawTooth,1,ParallelBufferedSort,10,16443264100000,SawTooth,1,ParallelRadixSort,0,30660100000,SawTooth,1,ParallelRadixSort,1,47025100000,SawTooth,1,ParallelRadixSort,2,116663100000,SawTooth,1,ParallelRadixSort,3,334774100000,SawTooth,1,ParallelRadixSort,4,701779100000,SawTooth,1,ParallelRadixSort,5,1306782100000,SawTooth,1,ParallelRadixSort,6,2209959100000,SawTooth,1,ParallelRadixSort,7,3469430100000,SawTooth,1,ParallelRadixSort,8,5147584100000,SawTooth,1,ParallelRadixSort,9,7302837100000,SawTooth,1,ParallelRadixSort,10,9989510100000,SawTooth,1,StdSort,0,43082100000,SawTooth,1,StdSort,1,61874100000,SawTooth,1,StdSort,2,178111100000,SawTooth,1,StdSort,3,552529100000,SawTooth,1,StdSort,4,1157972100000,SawTooth,1,StdSort,5,2151645100000,SawTooth,1,StdSort,6,3637321100000,SawTooth,1,StdSort,7,5713078100000,SawTooth,1,StdSort,8,8467187100000,SawTooth,1,StdSort,9,12011489100000,SawTooth,1,StdSort,10,16437346100000,SawTooth,2,ParallelSort,0,21206100000,SawTooth,2,ParallelSort,1,30231100000,SawTooth,2,ParallelSort,2,85192100000,SawTooth,2,ParallelSort,3,260390100000,SawTooth,2,ParallelSort,4,547286100000,SawTooth,2,ParallelSort,5,1019325100000,SawTooth,2,ParallelSort,6,1723726100000,SawTooth,2,ParallelSort,7,2709105100000,SawTooth,2,ParallelSort,8,4016616100000,SawTooth,2,ParallelSort,9,5696705100000,SawTooth,2,ParallelSort,10,7794180100000,SawTooth,2,ParallelBufferedSort,0,14946100000,SawTooth,2,ParallelBufferedSort,1,20757100000,SawTooth,2,ParallelBufferedSort,2,56714100000,SawTooth,2,ParallelBufferedSort,3,168461100000,SawTooth,2,ParallelBufferedSort,4,352890100000,SawTooth,2,ParallelBufferedSort,5,656215100000,SawTooth,2,ParallelBufferedSort,6,1108937100000,SawTooth,2,ParallelBufferedSort,7,1740971100000,SawTooth,2,ParallelBufferedSort,8,2582353100000,SawTooth,2,ParallelBufferedSort,9,3661807100000,SawTooth,2,ParallelBufferedSort,10,5013784100000,SawTooth,2,ParallelRadixSort,0,16476100000,SawTooth,2,ParallelRadixSort,1,24783100000,SawTooth,2,ParallelRadixSort,2,60354100000,SawTooth,2,ParallelRadixSort,3,170759100000,SawTooth,2,ParallelRadixSort,4,356791100000,SawTooth,2,ParallelRadixSort,5,663116100000,SawTooth,2,ParallelRadixSort,6,1121909100000,SawTooth,2,ParallelRadixSort,7,1760099100000,SawTooth,2,ParallelRadixSort,8,2611317100000,SawTooth,2,ParallelRadixSort,9,3702271100000,SawTooth,2,ParallelRadixSort,10,5063393100000,SawTooth,2,StdSort,0,43148100000,SawTooth,2,StdSort,1,61863100000,SawTooth,2,StdSort,2,178107100000,SawTooth,2,StdSort,3,552981100000,SawTooth,2,StdSort,4,1157934100000,SawTooth,2,StdSort,5,2152162100000,SawTooth,2,StdSort,6,3638125100000,SawTooth,2,StdSort,7,5712937100000,SawTooth,2,StdSort,8,8469387100000,SawTooth,2,StdSort,9,12011686100000,SawTooth,2,StdSort,10,16437480100000,SawTooth,3,ParallelSort,0,16899100000,SawTooth,3,ParallelSort,1,24244100000,SawTooth,3,ParallelSort,2,68190100000,SawTooth,3,ParallelSort,3,208576100000,SawTooth,3,ParallelSort,4,438129100000,SawTooth,3,ParallelSort,5,815281100000,SawTooth,3,ParallelSort,6,1378548100000,SawTooth,3,ParallelSort,7,2168016100000,SawTooth,3,ParallelSort,8,3216957100000,SawTooth,3,ParallelSort,9,4556886100000,SawTooth,3,ParallelSort,10,6233963100000,SawTooth,3,ParallelBufferedSort,0,9833100000,SawTooth,3,ParallelBufferedSort,1,13617100000,SawTooth,3,ParallelBufferedSort,2,37208100000,SawTooth,3,ParallelBufferedSort,3,110602100000,SawTooth,3,ParallelBufferedSort,4,231790100000,SawTooth,3,ParallelBufferedSort,5,430958100000,SawTooth,3,ParallelBufferedSort,6,727996100000,SawTooth,3,ParallelBufferedSort,7,1143321100000,SawTooth,3,ParallelBufferedSort,8,1707965100000,SawTooth,3,ParallelBufferedSort,9,2415585100000,SawTooth,3,ParallelBufferedSort,10,3291503100000,SawTooth,3,ParallelRadixSort,0,29434100000,SawTooth,3,ParallelRadixSort,1,44046100000,SawTooth,3,ParallelRadixSort,2,106076100000,SawTooth,3,ParallelRadixSort,3,297851100000,SawTooth,3,ParallelRadixSort,4,618794100000,SawTooth,3,ParallelRadixSort,5,1147998100000,SawTooth,3,ParallelRadixSort,6,1939662100000,SawTooth,3,ParallelRadixSort,7,3040227100000,SawTooth,3,ParallelRadixSort,8,4506854100000,SawTooth,3,ParallelRadixSort,9,6393318100000,SawTooth,3,ParallelRadixSort,10,8744461100000,SawTooth,3,StdSort,0,43080100000,SawTooth,3,StdSort,1,61874100000,SawTooth,3,StdSort,2,178105100000,SawTooth,3,StdSort,3,551840100000,SawTooth,3,StdSort,4,1158547100000,SawTooth,3,StdSort,5,2152285100000,SawTooth,3,StdSort,6,3637932100000,SawTooth,3,StdSort,7,5712561100000,SawTooth,3,StdSort,8,8468845100000,SawTooth,3,StdSort,9,12010763100000,SawTooth,3,StdSort,10,16432688100000,SawTooth,4,ParallelSort,0,14330100000,SawTooth,4,ParallelSort,1,20260100000,SawTooth,4,ParallelSort,2,56699100000,SawTooth,4,ParallelSort,3,173914100000,SawTooth,4,ParallelSort,4,367804100000,SawTooth,4,ParallelSort,5,693394100000,SawTooth,4,ParallelSort,6,1171521100000,SawTooth,4,ParallelSort,7,1834625100000,SawTooth,4,ParallelSort,8,2708014100000,SawTooth,4,ParallelSort,9,3858343100000,SawTooth,4,ParallelSort,10,5271394100000,SawTooth,4,ParallelBufferedSort,0,9596100000,SawTooth,4,ParallelBufferedSort,1,13348100000,SawTooth,4,ParallelBufferedSort,2,35772100000,SawTooth,4,ParallelBufferedSort,3,111801100000,SawTooth,4,ParallelBufferedSort,4,216416100000,SawTooth,4,ParallelBufferedSort,5,398529100000,SawTooth,4,ParallelBufferedSort,6,681530100000,SawTooth,4,ParallelBufferedSort,7,1067157100000,SawTooth,4,ParallelBufferedSort,8,1565460100000,SawTooth,4,ParallelBufferedSort,9,2190695100000,SawTooth,4,ParallelBufferedSort,10,3035070100000,SawTooth,4,ParallelRadixSort,0,16583100000,SawTooth,4,ParallelRadixSort,1,23580100000,SawTooth,4,ParallelRadixSort,2,55796100000,SawTooth,4,ParallelRadixSort,3,156608100000,SawTooth,4,ParallelRadixSort,4,325132100000,SawTooth,4,ParallelRadixSort,5,603831100000,SawTooth,4,ParallelRadixSort,6,1019450100000,SawTooth,4,ParallelRadixSort,7,1597184100000,SawTooth,4,ParallelRadixSort,8,2370156100000,SawTooth,4,ParallelRadixSort,9,3351969100000,SawTooth,4,ParallelRadixSort,10,4597995100000,SawTooth,4,StdSort,0,43113100000,SawTooth,4,StdSort,1,61876100000,SawTooth,4,StdSort,2,178170100000,SawTooth,4,StdSort,3,551875100000,SawTooth,4,StdSort,4,1159206100000,SawTooth,4,StdSort,5,2152241100000,SawTooth,4,StdSort,6,3636530100000,SawTooth,4,StdSort,7,5712653100000,SawTooth,4,StdSort,8,8468982100000,SawTooth,4,StdSort,9,12010599100000,SawTooth,4,StdSort,10,16436846100000,SawTooth,5,ParallelSort,0,13407100000,SawTooth,5,ParallelSort,1,18992100000,SawTooth,5,ParallelSort,2,52303100000,SawTooth,5,ParallelSort,3,164281100000,SawTooth,5,ParallelSort,4,346661100000,SawTooth,5,ParallelSort,5,645827100000,SawTooth,5,ParallelSort,6,1097825100000,SawTooth,5,ParallelSort,7,1722528100000,SawTooth,5,ParallelSort,8,2534872100000,SawTooth,5,ParallelSort,9,3589374100000,SawTooth,5,ParallelSort,10,4923770100000,SawTooth,5,ParallelBufferedSort,0,8660100000,SawTooth,5,ParallelBufferedSort,1,11763100000,SawTooth,5,ParallelBufferedSort,2,31362100000,SawTooth,5,ParallelBufferedSort,3,95110100000,SawTooth,5,ParallelBufferedSort,4,198555100000,SawTooth,5,ParallelBufferedSort,5,351413100000,SawTooth,5,ParallelBufferedSort,6,563322100000,SawTooth,5,ParallelBufferedSort,7,885229100000,SawTooth,5,ParallelBufferedSort,8,1313603100000,SawTooth,5,ParallelBufferedSort,9,1856122100000,SawTooth,5,ParallelBufferedSort,10,2562403100000,SawTooth,5,ParallelRadixSort,0,29451100000,SawTooth,5,ParallelRadixSort,1,43312100000,SawTooth,5,ParallelRadixSort,2,103529100000,SawTooth,5,ParallelRadixSort,3,289967100000,SawTooth,5,ParallelRadixSort,4,601831100000,SawTooth,5,ParallelRadixSort,5,1115965100000,SawTooth,5,ParallelRadixSort,6,1886135100000,SawTooth,5,ParallelRadixSort,7,2955901100000,SawTooth,5,ParallelRadixSort,8,4378134100000,SawTooth,5,ParallelRadixSort,9,6211087100000,SawTooth,5,ParallelRadixSort,10,8512054100000,SawTooth,5,StdSort,0,43082100000,SawTooth,5,StdSort,1,61872100000,SawTooth,5,StdSort,2,178430100000,SawTooth,5,StdSort,3,552479100000,SawTooth,5,StdSort,4,1158754100000,SawTooth,5,StdSort,5,2152281100000,SawTooth,5,StdSort,6,3637623100000,SawTooth,5,StdSort,7,5712631100000,SawTooth,5,StdSort,8,8468594100000,SawTooth,5,StdSort,9,12011725100000,SawTooth,5,StdSort,10,16437923100000,SawTooth,6,ParallelSort,0,12642100000,SawTooth,6,ParallelSort,1,17938100000,SawTooth,6,ParallelSort,2,48986100000,SawTooth,6,ParallelSort,3,152453100000,SawTooth,6,ParallelSort,4,322630100000,SawTooth,6,ParallelSort,5,601464100000,SawTooth,6,ParallelSort,6,1012123100000,SawTooth,6,ParallelSort,7,1599167100000,SawTooth,6,ParallelSort,8,2375782100000,SawTooth,6,ParallelSort,9,3344104100000,SawTooth,6,ParallelSort,10,4572533100000,SawTooth,6,ParallelBufferedSort,0,7938100000,SawTooth,6,ParallelBufferedSort,1,10554100000,SawTooth,6,ParallelBufferedSort,2,26167100000,SawTooth,6,ParallelBufferedSort,3,81782100000,SawTooth,6,ParallelBufferedSort,4,158814100000,SawTooth,6,ParallelBufferedSort,5,299942100000,SawTooth,6,ParallelBufferedSort,6,498191100000,SawTooth,6,ParallelBufferedSort,7,796721100000,SawTooth,6,ParallelBufferedSort,8,1156835100000,SawTooth,6,ParallelBufferedSort,9,1663659100000,SawTooth,6,ParallelBufferedSort,10,2240411100000,SawTooth,6,ParallelRadixSort,0,29261100000,SawTooth,6,ParallelRadixSort,1,43110100000,SawTooth,6,ParallelRadixSort,2,102981100000,SawTooth,6,ParallelRadixSort,3,287828100000,SawTooth,6,ParallelRadixSort,4,597824100000,SawTooth,6,ParallelRadixSort,5,1106756100000,SawTooth,6,ParallelRadixSort,6,1868313100000,SawTooth,6,ParallelRadixSort,7,2938383100000,SawTooth,6,ParallelRadixSort,8,4352933100000,SawTooth,6,ParallelRadixSort,9,6174769100000,SawTooth,6,ParallelRadixSort,10,8441680100000,SawTooth,6,StdSort,0,43081100000,SawTooth,6,StdSort,1,61872100000,SawTooth,6,StdSort,2,178112100000,SawTooth,6,StdSort,3,552470100000,SawTooth,6,StdSort,4,1157959100000,SawTooth,6,StdSort,5,2151540100000,SawTooth,6,StdSort,6,3636488100000,SawTooth,6,StdSort,7,5712640100000,SawTooth,6,StdSort,8,8467370100000,SawTooth,6,StdSort,9,12010735100000,SawTooth,6,StdSort,10,16437376100000,SawTooth,7,ParallelSort,0,12412100000,SawTooth,7,ParallelSort,1,17436100000,SawTooth,7,ParallelSort,2,48113100000,SawTooth,7,ParallelSort,3,146943100000,SawTooth,7,ParallelSort,4,308295100000,SawTooth,7,ParallelSort,5,576500100000,SawTooth,7,ParallelSort,6,985597100000,SawTooth,7,ParallelSort,7,1539537100000,SawTooth,7,ParallelSort,8,2277849100000,SawTooth,7,ParallelSort,9,3226376100000,SawTooth,7,ParallelSort,10,4467157100000,SawTooth,7,ParallelBufferedSort,0,7263100000,SawTooth,7,ParallelBufferedSort,1,8491100000,SawTooth,7,ParallelBufferedSort,2,21655100000,SawTooth,7,ParallelBufferedSort,3,63311100000,SawTooth,7,ParallelBufferedSort,4,132528100000,SawTooth,7,ParallelBufferedSort,5,245531100000,SawTooth,7,ParallelBufferedSort,6,414972100000,SawTooth,7,ParallelBufferedSort,7,650541100000,SawTooth,7,ParallelBufferedSort,8,964787100000,SawTooth,7,ParallelBufferedSort,9,1367716100000,SawTooth,7,ParallelBufferedSort,10,1871811100000,SawTooth,7,ParallelRadixSort,0,29325100000,SawTooth,7,ParallelRadixSort,1,43281100000,SawTooth,7,ParallelRadixSort,2,102629100000,SawTooth,7,ParallelRadixSort,3,286483100000,SawTooth,7,ParallelRadixSort,4,594463100000,SawTooth,7,ParallelRadixSort,5,1104292100000,SawTooth,7,ParallelRadixSort,6,1860643100000,SawTooth,7,ParallelRadixSort,7,2921989100000,SawTooth,7,ParallelRadixSort,8,4323106100000,SawTooth,7,ParallelRadixSort,9,6129923100000,SawTooth,7,ParallelRadixSort,10,8388183100000,SawTooth,7,StdSort,0,43081100000,SawTooth,7,StdSort,1,61860100000,SawTooth,7,StdSort,2,178116100000,SawTooth,7,StdSort,3,552731100000,SawTooth,7,StdSort,4,1159036100000,SawTooth,7,StdSort,5,2152525100000,SawTooth,7,StdSort,6,3638093100000,SawTooth,7,StdSort,7,5712600100000,SawTooth,7,StdSort,8,8469173100000,SawTooth,7,StdSort,9,12014358100000,SawTooth,7,StdSort,10,16437279100000,SawTooth,8,ParallelSort,0,11918100000,SawTooth,8,ParallelSort,1,16933100000,SawTooth,8,ParallelSort,2,46212100000,SawTooth,8,ParallelSort,3,142382100000,SawTooth,8,ParallelSort,4,299246100000,SawTooth,8,ParallelSort,5,561905100000,SawTooth,8,ParallelSort,6,944003100000,SawTooth,8,ParallelSort,7,1490789100000,SawTooth,8,ParallelSort,8,2200857100000,SawTooth,8,ParallelSort,9,3120941100000,SawTooth,8,ParallelSort,10,4257584100000,SawTooth,8,ParallelBufferedSort,0,5831100000,SawTooth,8,ParallelBufferedSort,1,7294100000,SawTooth,8,ParallelBufferedSort,2,15016100000,SawTooth,8,ParallelBufferedSort,3,38788100000,SawTooth,8,ParallelBufferedSort,4,81154100000,SawTooth,8,ParallelBufferedSort,5,144422100000,SawTooth,8,ParallelBufferedSort,6,260940100000,SawTooth,8,ParallelBufferedSort,7,378308100000,SawTooth,8,ParallelBufferedSort,8,564996100000,SawTooth,8,ParallelBufferedSort,9,786102100000,SawTooth,8,ParallelBufferedSort,10,1084308100000,SawTooth,8,ParallelRadixSort,0,16020100000,SawTooth,8,ParallelRadixSort,1,23635100000,SawTooth,8,ParallelRadixSort,2,55161100000,SawTooth,8,ParallelRadixSort,3,149123100000,SawTooth,8,ParallelRadixSort,4,308028100000,SawTooth,8,ParallelRadixSort,5,575997100000,SawTooth,8,ParallelRadixSort,6,979294100000,SawTooth,8,ParallelRadixSort,7,1518329100000,SawTooth,8,ParallelRadixSort,8,2257301100000,SawTooth,8,ParallelRadixSort,9,3167691100000,SawTooth,8,ParallelRadixSort,10,4334495100000,SawTooth,8,StdSort,0,43178100000,SawTooth,8,StdSort,1,61885100000,SawTooth,8,StdSort,2,178130100000,SawTooth,8,StdSort,3,552813100000,SawTooth,8,StdSort,4,1157938100000,SawTooth,8,StdSort,5,2152709100000,SawTooth,8,StdSort,6,3637383100000,SawTooth,8,StdSort,7,5712602100000,SawTooth,8,StdSort,8,8468732100000,SawTooth,8,StdSort,9,12013267100000,SawTooth,8,StdSort,10,164373721000000,Random,1,ParallelSort,0,5363281000000,Random,1,ParallelSort,1,7539301000000,Random,1,ParallelSort,2,20982231000000,Random,1,ParallelSort,3,60278151000000,Random,1,ParallelSort,4,125961971000000,Random,1,ParallelSort,5,233728561000000,Random,1,ParallelSort,6,394355821000000,Random,1,ParallelSort,7,619156611000000,Random,1,ParallelSort,8,917625561000000,Random,1,ParallelSort,9,1301063141000000,Random,1,ParallelSort,10,1780207891000000,Random,1,ParallelBufferedSort,0,5362371000000,Random,1,ParallelBufferedSort,1,7538671000000,Random,1,ParallelBufferedSort,2,20979971000000,Random,1,ParallelBufferedSort,3,60362551000000,Random,1,ParallelBufferedSort,4,126056711000000,Random,1,ParallelBufferedSort,5,233678701000000,Random,1,ParallelBufferedSort,6,394555771000000,Random,1,ParallelBufferedSort,7,619278521000000,Random,1,ParallelBufferedSort,8,917745121000000,Random,1,ParallelBufferedSort,9,1301294841000000,Random,1,ParallelBufferedSort,10,1780491131000000,Random,1,ParallelRadixSort,0,2280041000000,Random,1,ParallelRadixSort,1,3586291000000,Random,1,ParallelRadixSort,2,8866911000000,Random,1,ParallelRadixSort,3,25872661000000,Random,1,ParallelRadixSort,4,54254521000000,Random,1,ParallelRadixSort,5,101383591000000,Random,1,ParallelRadixSort,6,171320621000000,Random,1,ParallelRadixSort,7,268967761000000,Random,1,ParallelRadixSort,8,399468361000000,Random,1,ParallelRadixSort,9,566315611000000,Random,1,ParallelRadixSort,10,774828191000000,Random,1,StdSort,0,5364291000000,Random,1,StdSort,1,7537211000000,Random,1,StdSort,2,20840141000000,Random,1,StdSort,3,60454611000000,Random,1,StdSort,4,126115681000000,Random,1,StdSort,5,233649071000000,Random,1,StdSort,6,394443511000000,Random,1,StdSort,7,619110231000000,Random,1,StdSort,8,917561761000000,Random,1,StdSort,9,1301013001000000,Random,1,StdSort,10,1780244411000000,Random,2,ParallelSort,0,2272951000000,Random,2,ParallelSort,1,2772761000000,Random,2,ParallelSort,2,7058561000000,Random,2,ParallelSort,3,20820321000000,Random,2,ParallelSort,4,47819391000000,Random,2,ParallelSort,5,89149011000000,Random,2,ParallelSort,6,150566531000000,Random,2,ParallelSort,7,236387321000000,Random,2,ParallelSort,8,351074611000000,Random,2,ParallelSort,9,496511441000000,Random,2,ParallelSort,10,679720221000000,Random,2,ParallelBufferedSort,0,2067071000000,Random,2,ParallelBufferedSort,1,2748271000000,Random,2,ParallelBufferedSort,2,6931701000000,Random,2,ParallelBufferedSort,3,19819441000000,Random,2,ParallelBufferedSort,4,41504541000000,Random,2,ParallelBufferedSort,5,77121141000000,Random,2,ParallelBufferedSort,6,130164751000000,Random,2,ParallelBufferedSort,7,204329471000000,Random,2,ParallelBufferedSort,8,302785091000000,Random,2,ParallelBufferedSort,9,429619181000000,Random,2,ParallelBufferedSort,10,587475121000000,Random,2,ParallelRadixSort,0,1257111000000,Random,2,ParallelRadixSort,1,1898801000000,Random,2,ParallelRadixSort,2,4538281000000,Random,2,ParallelRadixSort,3,13063641000000,Random,2,ParallelRadixSort,4,27257901000000,Random,2,ParallelRadixSort,5,50766051000000,Random,2,ParallelRadixSort,6,85835511000000,Random,2,ParallelRadixSort,7,134685701000000,Random,2,ParallelRadixSort,8,199896031000000,Random,2,ParallelRadixSort,9,283506801000000,Random,2,ParallelRadixSort,10,387727941000000,Random,2,StdSort,0,5350091000000,Random,2,StdSort,1,7540521000000,Random,2,StdSort,2,20922681000000,Random,2,StdSort,3,60326471000000,Random,2,StdSort,4,125756141000000,Random,2,StdSort,5,232958421000000,Random,2,StdSort,6,393273201000000,Random,2,StdSort,7,617258641000000,Random,2,StdSort,8,914834831000000,Random,2,StdSort,9,1297113771000000,Random,2,StdSort,10,1774884381000000,Random,3,ParallelSort,0,1958171000000,Random,3,ParallelSort,1,2580561000000,Random,3,ParallelSort,2,6602271000000,Random,3,ParallelSort,3,19200931000000,Random,3,ParallelSort,4,40104201000000,Random,3,ParallelSort,5,74671421000000,Random,3,ParallelSort,6,126319571000000,Random,3,ParallelSort,7,197506981000000,Random,3,ParallelSort,8,294399581000000,Random,3,ParallelSort,9,415745061000000,Random,3,ParallelSort,10,570805631000000,Random,3,ParallelBufferedSort,0,1406731000000,Random,3,ParallelBufferedSort,1,1831951000000,Random,3,ParallelBufferedSort,2,4589611000000,Random,3,ParallelBufferedSort,3,13130731000000,Random,3,ParallelBufferedSort,4,27430911000000,Random,3,ParallelBufferedSort,5,50954711000000,Random,3,ParallelBufferedSort,6,86052301000000,Random,3,ParallelBufferedSort,7,135081261000000,Random,3,ParallelBufferedSort,8,200366971000000,Random,3,ParallelBufferedSort,9,283906881000000,Random,3,ParallelBufferedSort,10,388523151000000,Random,3,ParallelRadixSort,0,1231771000000,Random,3,ParallelRadixSort,1,1857951000000,Random,3,ParallelRadixSort,2,4371031000000,Random,3,ParallelRadixSort,3,12344091000000,Random,3,ParallelRadixSort,4,25710381000000,Random,3,ParallelRadixSort,5,47886571000000,Random,3,ParallelRadixSort,6,64158611000000,Random,3,ParallelRadixSort,7,99938991000000,Random,3,ParallelRadixSort,8,149053901000000,Random,3,ParallelRadixSort,9,266847911000000,Random,3,ParallelRadixSort,10,289219151000000,Random,3,StdSort,0,5387711000000,Random,3,StdSort,1,7594521000000,Random,3,StdSort,2,20997891000000,Random,3,StdSort,3,60798491000000,Random,3,StdSort,4,126747631000000,Random,3,StdSort,5,234861221000000,Random,3,StdSort,6,396405411000000,Random,3,StdSort,7,622300671000000,Random,3,StdSort,8,922251721000000,Random,3,StdSort,9,1307627121000000,Random,3,StdSort,10,1789253071000000,Random,4,ParallelSort,0,1539601000000,Random,4,ParallelSort,1,2074351000000,Random,4,ParallelSort,2,5226011000000,Random,4,ParallelSort,3,15147511000000,Random,4,ParallelSort,4,31097001000000,Random,4,ParallelSort,5,58013421000000,Random,4,ParallelSort,6,96819741000000,Random,4,ParallelSort,7,151770151000000,Random,4,ParallelSort,8,226462971000000,Random,4,ParallelSort,9,320736551000000,Random,4,ParallelSort,10,437629901000000,Random,4,ParallelBufferedSort,0,1384121000000,Random,4,ParallelBufferedSort,1,1830241000000,Random,4,ParallelBufferedSort,2,4655821000000,Random,4,ParallelBufferedSort,3,12604161000000,Random,4,ParallelBufferedSort,4,25363841000000,Random,4,ParallelBufferedSort,5,45639961000000,Random,4,ParallelBufferedSort,6,77473341000000,Random,4,ParallelBufferedSort,7,119789701000000,Random,4,ParallelBufferedSort,8,178811971000000,Random,4,ParallelBufferedSort,9,249038471000000,Random,4,ParallelBufferedSort,10,341278701000000,Random,4,ParallelRadixSort,0,1147391000000,Random,4,ParallelRadixSort,1,1319201000000,Random,4,ParallelRadixSort,2,2561771000000,Random,4,ParallelRadixSort,3,7211491000000,Random,4,ParallelRadixSort,4,15457431000000,Random,4,ParallelRadixSort,5,26050001000000,Random,4,ParallelRadixSort,6,43612561000000,Random,4,ParallelRadixSort,7,67944981000000,Random,4,ParallelRadixSort,8,104782171000000,Random,4,ParallelRadixSort,9,245379791000000,Random,4,ParallelRadixSort,10,258714461000000,Random,4,StdSort,0,5483711000000,Random,4,StdSort,1,7665901000000,Random,4,StdSort,2,21240881000000,Random,4,StdSort,3,61458851000000,Random,4,StdSort,4,128097371000000,Random,4,StdSort,5,237332691000000,Random,4,StdSort,6,400672281000000,Random,4,StdSort,7,628874111000000,Random,4,StdSort,8,932000541000000,Random,4,StdSort,9,1321472231000000,Random,4,StdSort,10,1808242751000000,Random,5,ParallelSort,0,1360551000000,Random,5,ParallelSort,1,1718691000000,Random,5,ParallelSort,2,4245211000000,Random,5,ParallelSort,3,12698921000000,Random,5,ParallelSort,4,24393031000000,Random,5,ParallelSort,5,47272911000000,Random,5,ParallelSort,6,78876621000000,Random,5,ParallelSort,7,122595401000000,Random,5,ParallelSort,8,186658701000000,Random,5,ParallelSort,9,252988311000000,Random,5,ParallelSort,10,348639901000000,Random,5,ParallelBufferedSort,0,1106351000000,Random,5,ParallelBufferedSort,1,1446381000000,Random,5,ParallelBufferedSort,2,3578321000000,Random,5,ParallelBufferedSort,3,10108011000000,Random,5,ParallelBufferedSort,4,20925681000000,Random,5,ParallelBufferedSort,5,39242061000000,Random,5,ParallelBufferedSort,6,65351941000000,Random,5,ParallelBufferedSort,7,102662831000000,Random,5,ParallelBufferedSort,8,151404771000000,Random,5,ParallelBufferedSort,9,214791451000000,Random,5,ParallelBufferedSort,10,294157821000000,Random,5,ParallelRadixSort,0,724131000000,Random,5,ParallelRadixSort,1,986341000000,Random,5,ParallelRadixSort,2,2246431000000,Random,5,ParallelRadixSort,3,6244691000000,Random,5,ParallelRadixSort,4,12939771000000,Random,5,ParallelRadixSort,5,24022791000000,Random,5,ParallelRadixSort,6,41725401000000,Random,5,ParallelRadixSort,7,63864861000000,Random,5,ParallelRadixSort,8,94707041000000,Random,5,ParallelRadixSort,9,136430851000000,Random,5,ParallelRadixSort,10,183780591000000,Random,5,StdSort,0,5358961000000,Random,5,StdSort,1,7552221000000,Random,5,StdSort,2,20870051000000,Random,5,StdSort,3,60205441000000,Random,5,StdSort,4,125833701000000,Random,5,StdSort,5,233399841000000,Random,5,StdSort,6,393962421000000,Random,5,StdSort,7,618380011000000,Random,5,StdSort,8,916465861000000,Random,5,StdSort,9,1299470001000000,Random,5,StdSort,10,1778191551000000,Random,6,ParallelSort,0,1172511000000,Random,6,ParallelSort,1,1534631000000,Random,6,ParallelSort,2,3819491000000,Random,6,ParallelSort,3,11151381000000,Random,6,ParallelSort,4,22695481000000,Random,6,ParallelSort,5,42902531000000,Random,6,ParallelSort,6,71017841000000,Random,6,ParallelSort,7,111627941000000,Random,6,ParallelSort,8,166555911000000,Random,6,ParallelSort,9,236379251000000,Random,6,ParallelSort,10,320306851000000,Random,6,ParallelBufferedSort,0,1026681000000,Random,6,ParallelBufferedSort,1,1349181000000,Random,6,ParallelBufferedSort,2,3317281000000,Random,6,ParallelBufferedSort,3,8854131000000,Random,6,ParallelBufferedSort,4,19099381000000,Random,6,ParallelBufferedSort,5,34944761000000,Random,6,ParallelBufferedSort,6,59034771000000,Random,6,ParallelBufferedSort,7,94694531000000,Random,6,ParallelBufferedSort,8,132292681000000,Random,6,ParallelBufferedSort,9,186687831000000,Random,6,ParallelBufferedSort,10,260868531000000,Random,6,ParallelRadixSort,0,631121000000,Random,6,ParallelRadixSort,1,861381000000,Random,6,ParallelRadixSort,2,1836541000000,Random,6,ParallelRadixSort,3,5093311000000,Random,6,ParallelRadixSort,4,10700831000000,Random,6,ParallelRadixSort,5,19481371000000,Random,6,ParallelRadixSort,6,33556551000000,Random,6,ParallelRadixSort,7,52640811000000,Random,6,ParallelRadixSort,8,76631241000000,Random,6,ParallelRadixSort,9,108453971000000,Random,6,ParallelRadixSort,10,148392581000000,Random,6,StdSort,0,5418561000000,Random,6,StdSort,1,7617681000000,Random,6,StdSort,2,21095511000000,Random,6,StdSort,3,61239991000000,Random,6,StdSort,4,127674451000000,Random,6,StdSort,5,236583281000000,Random,6,StdSort,6,399407231000000,Random,6,StdSort,7,626890711000000,Random,6,StdSort,8,929106141000000,Random,6,StdSort,9,1317379021000000,Random,6,StdSort,10,1802630681000000,Random,7,ParallelSort,0,1093401000000,Random,7,ParallelSort,1,1405051000000,Random,7,ParallelSort,2,3492961000000,Random,7,ParallelSort,3,10060691000000,Random,7,ParallelSort,4,20950991000000,Random,7,ParallelSort,5,39136901000000,Random,7,ParallelSort,6,66423441000000,Random,7,ParallelSort,7,102952121000000,Random,7,ParallelSort,8,151912291000000,Random,7,ParallelSort,9,214542791000000,Random,7,ParallelSort,10,290146401000000,Random,7,ParallelBufferedSort,0,917561000000,Random,7,ParallelBufferedSort,1,1185351000000,Random,7,ParallelBufferedSort,2,2879051000000,Random,7,ParallelBufferedSort,3,8275661000000,Random,7,ParallelBufferedSort,4,17117911000000,Random,7,ParallelBufferedSort,5,31015191000000,Random,7,ParallelBufferedSort,6,53171441000000,Random,7,ParallelBufferedSort,7,81625261000000,Random,7,ParallelBufferedSort,8,118090211000000,Random,7,ParallelBufferedSort,9,166599391000000,Random,7,ParallelBufferedSort,10,228423971000000,Random,7,ParallelRadixSort,0,598501000000,Random,7,ParallelRadixSort,1,811761000000,Random,7,ParallelRadixSort,2,1737261000000,Random,7,ParallelRadixSort,3,4681291000000,Random,7,ParallelRadixSort,4,9932861000000,Random,7,ParallelRadixSort,5,17850851000000,Random,7,ParallelRadixSort,6,30055621000000,Random,7,ParallelRadixSort,7,47414561000000,Random,7,ParallelRadixSort,8,70237011000000,Random,7,ParallelRadixSort,9,103120951000000,Random,7,ParallelRadixSort,10,134750011000000,Random,7,StdSort,0,5406191000000,Random,7,StdSort,1,7564821000000,Random,7,StdSort,2,20958431000000,Random,7,StdSort,3,60362991000000,Random,7,StdSort,4,126189581000000,Random,7,StdSort,5,233814751000000,Random,7,StdSort,6,394760891000000,Random,7,StdSort,7,619596371000000,Random,7,StdSort,8,918229471000000,Random,7,StdSort,9,1301978731000000,Random,7,StdSort,10,1781505401000000,Random,8,ParallelSort,0,1030021000000,Random,8,ParallelSort,1,1324661000000,Random,8,ParallelSort,2,3289511000000,Random,8,ParallelSort,3,9405651000000,Random,8,ParallelSort,4,19725361000000,Random,8,ParallelSort,5,36752941000000,Random,8,ParallelSort,6,61688541000000,Random,8,ParallelSort,7,97107501000000,Random,8,ParallelSort,8,144116281000000,Random,8,ParallelSort,9,203609341000000,Random,8,ParallelSort,10,279234601000000,Random,8,ParallelBufferedSort,0,741651000000,Random,8,ParallelBufferedSort,1,979501000000,Random,8,ParallelBufferedSort,2,2295951000000,Random,8,ParallelBufferedSort,3,6507051000000,Random,8,ParallelBufferedSort,4,13725071000000,Random,8,ParallelBufferedSort,5,25348921000000,Random,8,ParallelBufferedSort,6,42814021000000,Random,8,ParallelBufferedSort,7,66913171000000,Random,8,ParallelBufferedSort,8,99161211000000,Random,8,ParallelBufferedSort,9,140321181000000,Random,8,ParallelBufferedSort,10,191532171000000,Random,8,ParallelRadixSort,0,560081000000,Random,8,ParallelRadixSort,1,726111000000,Random,8,ParallelRadixSort,2,1512651000000,Random,8,ParallelRadixSort,3,4256881000000,Random,8,ParallelRadixSort,4,8314391000000,Random,8,ParallelRadixSort,5,16236541000000,Random,8,ParallelRadixSort,6,25888381000000,Random,8,ParallelRadixSort,7,42287271000000,Random,8,ParallelRadixSort,8,62597071000000,Random,8,ParallelRadixSort,9,85546751000000,Random,8,ParallelRadixSort,10,117074311000000,Random,8,StdSort,0,5391261000000,Random,8,StdSort,1,7531171000000,Random,8,StdSort,2,20819701000000,Random,8,StdSort,3,60107091000000,Random,8,StdSort,4,125355771000000,Random,8,StdSort,5,232355371000000,Random,8,StdSort,6,392251351000000,Random,8,StdSort,7,615646231000000,Random,8,StdSort,8,912403161000000,Random,8,StdSort,9,1293690221000000,Random,8,StdSort,10,1770247671000000,PreSorted,1,ParallelSort,0,2347091000000,PreSorted,1,ParallelSort,1,3365781000000,PreSorted,1,ParallelSort,2,10337031000000,PreSorted,1,ParallelSort,3,32485081000000,PreSorted,1,ParallelSort,4,68259301000000,PreSorted,1,ParallelSort,5,127008221000000,PreSorted,1,ParallelSort,6,214660371000000,PreSorted,1,ParallelSort,7,337153461000000,PreSorted,1,ParallelSort,8,499815441000000,PreSorted,1,ParallelSort,9,708832091000000,PreSorted,1,ParallelSort,10,969921741000000,PreSorted,1,ParallelBufferedSort,0,2344411000000,PreSorted,1,ParallelBufferedSort,1,3368051000000,PreSorted,1,ParallelBufferedSort,2,10319301000000,PreSorted,1,ParallelBufferedSort,3,32478481000000,PreSorted,1,ParallelBufferedSort,4,68331321000000,PreSorted,1,ParallelBufferedSort,5,126975921000000,PreSorted,1,ParallelBufferedSort,6,214644601000000,PreSorted,1,ParallelBufferedSort,7,337145681000000,PreSorted,1,ParallelBufferedSort,8,499834171000000,PreSorted,1,ParallelBufferedSort,9,708773711000000,PreSorted,1,ParallelBufferedSort,10,969999981000000,PreSorted,1,ParallelRadixSort,0,2294731000000,PreSorted,1,ParallelRadixSort,1,3608551000000,PreSorted,1,ParallelRadixSort,2,8888151000000,PreSorted,1,ParallelRadixSort,3,25831471000000,PreSorted,1,ParallelRadixSort,4,54400401000000,PreSorted,1,ParallelRadixSort,5,101742691000000,PreSorted,1,ParallelRadixSort,6,171997941000000,PreSorted,1,ParallelRadixSort,7,270159501000000,PreSorted,1,ParallelRadixSort,8,401190181000000,PreSorted,1,ParallelRadixSort,9,569537911000000,PreSorted,1,ParallelRadixSort,10,779619831000000,PreSorted,1,StdSort,0,2343101000000,PreSorted,1,StdSort,1,3364151000000,PreSorted,1,StdSort,2,10330061000000,PreSorted,1,StdSort,3,32403851000000,PreSorted,1,StdSort,4,68200161000000,PreSorted,1,StdSort,5,126863431000000,PreSorted,1,StdSort,6,214495651000000,PreSorted,1,StdSort,7,336996781000000,PreSorted,1,StdSort,8,499701131000000,PreSorted,1,StdSort,9,708676241000000,PreSorted,1,StdSort,10,969885641000000,PreSorted,2,ParallelSort,0,1077041000000,PreSorted,2,ParallelSort,1,1529841000000,PreSorted,2,ParallelSort,2,4477321000000,PreSorted,2,ParallelSort,3,13980621000000,PreSorted,2,ParallelSort,4,29207511000000,PreSorted,2,ParallelSort,5,54263491000000,PreSorted,2,ParallelSort,6,91634171000000,PreSorted,2,ParallelSort,7,144130781000000,PreSorted,2,ParallelSort,8,213659961000000,PreSorted,2,ParallelSort,9,302781441000000,PreSorted,2,ParallelSort,10,414192201000000,PreSorted,2,ParallelBufferedSort,0,952961000000,PreSorted,2,ParallelBufferedSort,1,1315041000000,PreSorted,2,ParallelBufferedSort,2,3679631000000,PreSorted,2,ParallelBufferedSort,3,11211491000000,PreSorted,2,ParallelBufferedSort,4,23334061000000,PreSorted,2,ParallelBufferedSort,5,43330881000000,PreSorted,2,ParallelBufferedSort,6,72953681000000,PreSorted,2,ParallelBufferedSort,7,114480821000000,PreSorted,2,ParallelBufferedSort,8,169731271000000,PreSorted,2,ParallelBufferedSort,9,240553171000000,PreSorted,2,ParallelBufferedSort,10,329204371000000,PreSorted,2,ParallelRadixSort,0,1199041000000,PreSorted,2,ParallelRadixSort,1,1857221000000,PreSorted,2,ParallelRadixSort,2,4504951000000,PreSorted,2,ParallelRadixSort,3,12980871000000,PreSorted,2,ParallelRadixSort,4,27250491000000,PreSorted,2,ParallelRadixSort,5,50975441000000,PreSorted,2,ParallelRadixSort,6,86169081000000,PreSorted,2,ParallelRadixSort,7,135443221000000,PreSorted,2,ParallelRadixSort,8,201430711000000,PreSorted,2,ParallelRadixSort,9,285559531000000,PreSorted,2,ParallelRadixSort,10,390647321000000,PreSorted,2,StdSort,0,2343451000000,PreSorted,2,StdSort,1,3364911000000,PreSorted,2,StdSort,2,10324371000000,PreSorted,2,StdSort,3,32401381000000,PreSorted,2,StdSort,4,68186411000000,PreSorted,2,StdSort,5,126913631000000,PreSorted,2,StdSort,6,214469601000000,PreSorted,2,StdSort,7,336977261000000,PreSorted,2,StdSort,8,499662931000000,PreSorted,2,StdSort,9,708682411000000,PreSorted,2,StdSort,10,969888261000000,PreSorted,3,ParallelSort,0,780261000000,PreSorted,3,ParallelSort,1,1105891000000,PreSorted,3,ParallelSort,2,3234231000000,PreSorted,3,ParallelSort,3,10171281000000,PreSorted,3,ParallelSort,4,21432951000000,PreSorted,3,ParallelSort,5,39485471000000,PreSorted,3,ParallelSort,6,66503791000000,PreSorted,3,ParallelSort,7,104146561000000,PreSorted,3,ParallelSort,8,154425631000000,PreSorted,3,ParallelSort,9,218964781000000,PreSorted,3,ParallelSort,10,299405631000000,PreSorted,3,ParallelBufferedSort,0,718321000000,PreSorted,3,ParallelBufferedSort,1,960381000000,PreSorted,3,ParallelBufferedSort,2,2506401000000,PreSorted,3,ParallelBufferedSort,3,7403901000000,PreSorted,3,ParallelBufferedSort,4,15304611000000,PreSorted,3,ParallelBufferedSort,5,28294151000000,PreSorted,3,ParallelBufferedSort,6,47689821000000,PreSorted,3,ParallelBufferedSort,7,74791861000000,PreSorted,3,ParallelBufferedSort,8,110987961000000,PreSorted,3,ParallelBufferedSort,9,157072601000000,PreSorted,3,ParallelBufferedSort,10,214833451000000,PreSorted,3,ParallelRadixSort,0,1256101000000,PreSorted,3,ParallelRadixSort,1,1822811000000,PreSorted,3,ParallelRadixSort,2,4526431000000,PreSorted,3,ParallelRadixSort,3,12729011000000,PreSorted,3,ParallelRadixSort,4,26940841000000,PreSorted,3,ParallelRadixSort,5,38063671000000,PreSorted,3,ParallelRadixSort,6,65527651000000,PreSorted,3,ParallelRadixSort,7,101175101000000,PreSorted,3,ParallelRadixSort,8,149918851000000,PreSorted,3,ParallelRadixSort,9,213093561000000,PreSorted,3,ParallelRadixSort,10,290202301000000,PreSorted,3,StdSort,0,2344131000000,PreSorted,3,StdSort,1,3368541000000,PreSorted,3,StdSort,2,10322261000000,PreSorted,3,StdSort,3,32386851000000,PreSorted,3,StdSort,4,68172481000000,PreSorted,3,StdSort,5,126872551000000,PreSorted,3,StdSort,6,214421301000000,PreSorted,3,StdSort,7,336975091000000,PreSorted,3,StdSort,8,499604481000000,PreSorted,3,StdSort,9,708713151000000,PreSorted,3,StdSort,10,969905801000000,PreSorted,4,ParallelSort,0,770261000000,PreSorted,4,ParallelSort,1,1083071000000,PreSorted,4,ParallelSort,2,3129651000000,PreSorted,4,ParallelSort,3,9399261000000,PreSorted,4,ParallelSort,4,18906871000000,PreSorted,4,ParallelSort,5,35121501000000,PreSorted,4,ParallelSort,6,61518821000000,PreSorted,4,ParallelSort,7,96555501000000,PreSorted,4,ParallelSort,8,143355591000000,PreSorted,4,ParallelSort,9,203312811000000,PreSorted,4,ParallelSort,10,278239231000000,PreSorted,4,ParallelBufferedSort,0,655991000000,PreSorted,4,ParallelBufferedSort,1,859911000000,PreSorted,4,ParallelBufferedSort,2,2253871000000,PreSorted,4,ParallelBufferedSort,3,6660031000000,PreSorted,4,ParallelBufferedSort,4,14240461000000,PreSorted,4,ParallelBufferedSort,5,25464201000000,PreSorted,4,ParallelBufferedSort,6,42897331000000,PreSorted,4,ParallelBufferedSort,7,67271421000000,PreSorted,4,ParallelBufferedSort,8,99669931000000,PreSorted,4,ParallelBufferedSort,9,141303021000000,PreSorted,4,ParallelBufferedSort,10,193256711000000,PreSorted,4,ParallelRadixSort,0,1140211000000,PreSorted,4,ParallelRadixSort,1,1694401000000,PreSorted,4,ParallelRadixSort,2,4034571000000,PreSorted,4,ParallelRadixSort,3,11479831000000,PreSorted,4,ParallelRadixSort,4,13850831000000,PreSorted,4,ParallelRadixSort,5,27144471000000,PreSorted,4,ParallelRadixSort,6,43987871000000,PreSorted,4,ParallelRadixSort,7,67507211000000,PreSorted,4,ParallelRadixSort,8,99498731000000,PreSorted,4,ParallelRadixSort,9,149152731000000,PreSorted,4,ParallelRadixSort,10,197548461000000,PreSorted,4,StdSort,0,2342861000000,PreSorted,4,StdSort,1,3365411000000,PreSorted,4,StdSort,2,10322121000000,PreSorted,4,StdSort,3,32403711000000,PreSorted,4,StdSort,4,68163411000000,PreSorted,4,StdSort,5,126855551000000,PreSorted,4,StdSort,6,214455111000000,PreSorted,4,StdSort,7,336958441000000,PreSorted,4,StdSort,8,499668251000000,PreSorted,4,StdSort,9,708677591000000,PreSorted,4,StdSort,10,969950781000000,PreSorted,5,ParallelSort,0,677861000000,PreSorted,5,ParallelSort,1,958441000000,PreSorted,5,ParallelSort,2,2719731000000,PreSorted,5,ParallelSort,3,8798191000000,PreSorted,5,ParallelSort,4,17452101000000,PreSorted,5,ParallelSort,5,32312681000000,PreSorted,5,ParallelSort,6,54522031000000,PreSorted,5,ParallelSort,7,85578541000000,PreSorted,5,ParallelSort,8,127153891000000,PreSorted,5,ParallelSort,9,179854231000000,PreSorted,5,ParallelSort,10,252622951000000,PreSorted,5,ParallelBufferedSort,0,537401000000,PreSorted,5,ParallelBufferedSort,1,754311000000,PreSorted,5,ParallelBufferedSort,2,1875401000000,PreSorted,5,ParallelBufferedSort,3,5551591000000,PreSorted,5,ParallelBufferedSort,4,11493571000000,PreSorted,5,ParallelBufferedSort,5,21292181000000,PreSorted,5,ParallelBufferedSort,6,35852571000000,PreSorted,5,ParallelBufferedSort,7,56203331000000,PreSorted,5,ParallelBufferedSort,8,83318251000000,PreSorted,5,ParallelBufferedSort,9,118105041000000,PreSorted,5,ParallelBufferedSort,10,161564591000000,PreSorted,5,ParallelRadixSort,0,746391000000,PreSorted,5,ParallelRadixSort,1,1020191000000,PreSorted,5,ParallelRadixSort,2,2301611000000,PreSorted,5,ParallelRadixSort,3,6324851000000,PreSorted,5,ParallelRadixSort,4,13036541000000,PreSorted,5,ParallelRadixSort,5,25751241000000,PreSorted,5,ParallelRadixSort,6,43547681000000,PreSorted,5,ParallelRadixSort,7,63951741000000,PreSorted,5,ParallelRadixSort,8,94707141000000,PreSorted,5,ParallelRadixSort,9,142503921000000,PreSorted,5,ParallelRadixSort,10,184655721000000,PreSorted,5,StdSort,0,2344141000000,PreSorted,5,StdSort,1,3364991000000,PreSorted,5,StdSort,2,10320601000000,PreSorted,5,StdSort,3,32362681000000,PreSorted,5,StdSort,4,68155341000000,PreSorted,5,StdSort,5,126848001000000,PreSorted,5,StdSort,6,214433081000000,PreSorted,5,StdSort,7,336970341000000,PreSorted,5,StdSort,8,499646721000000,PreSorted,5,StdSort,9,708659621000000,PreSorted,5,StdSort,10,969953151000000,PreSorted,6,ParallelSort,0,609041000000,PreSorted,6,ParallelSort,1,847741000000,PreSorted,6,ParallelSort,2,2421911000000,PreSorted,6,ParallelSort,3,7635351000000,PreSorted,6,ParallelSort,4,15939901000000,PreSorted,6,ParallelSort,5,29600431000000,PreSorted,6,ParallelSort,6,49993081000000,PreSorted,6,ParallelSort,7,78480511000000,PreSorted,6,ParallelSort,8,116487661000000,PreSorted,6,ParallelSort,9,165023571000000,PreSorted,6,ParallelSort,10,226724571000000,PreSorted,6,ParallelBufferedSort,0,491591000000,PreSorted,6,ParallelBufferedSort,1,646971000000,PreSorted,6,ParallelBufferedSort,2,1642111000000,PreSorted,6,ParallelBufferedSort,3,4875601000000,PreSorted,6,ParallelBufferedSort,4,10064071000000,PreSorted,6,ParallelBufferedSort,5,18625821000000,PreSorted,6,ParallelBufferedSort,6,31331381000000,PreSorted,6,ParallelBufferedSort,7,49122451000000,PreSorted,6,ParallelBufferedSort,8,72795421000000,PreSorted,6,ParallelBufferedSort,9,103167121000000,PreSorted,6,ParallelBufferedSort,10,141149291000000,PreSorted,6,ParallelRadixSort,0,692501000000,PreSorted,6,ParallelRadixSort,1,883081000000,PreSorted,6,ParallelRadixSort,2,1921261000000,PreSorted,6,ParallelRadixSort,3,5312651000000,PreSorted,6,ParallelRadixSort,4,10556861000000,PreSorted,6,ParallelRadixSort,5,19696801000000,PreSorted,6,ParallelRadixSort,6,33196141000000,PreSorted,6,ParallelRadixSort,7,53319201000000,PreSorted,6,ParallelRadixSort,8,79476711000000,PreSorted,6,ParallelRadixSort,9,112347971000000,PreSorted,6,ParallelRadixSort,10,149279251000000,PreSorted,6,StdSort,0,2343861000000,PreSorted,6,StdSort,1,3366601000000,PreSorted,6,StdSort,2,10320791000000,PreSorted,6,StdSort,3,32418991000000,PreSorted,6,StdSort,4,68206141000000,PreSorted,6,StdSort,5,126878821000000,PreSorted,6,StdSort,6,214430231000000,PreSorted,6,StdSort,7,336943301000000,PreSorted,6,StdSort,8,499578311000000,PreSorted,6,StdSort,9,708670351000000,PreSorted,6,StdSort,10,969895271000000,PreSorted,7,ParallelSort,0,520401000000,PreSorted,7,ParallelSort,1,733231000000,PreSorted,7,ParallelSort,2,2134661000000,PreSorted,7,ParallelSort,3,6753721000000,PreSorted,7,ParallelSort,4,14138491000000,PreSorted,7,ParallelSort,5,26300771000000,PreSorted,7,ParallelSort,6,44378571000000,PreSorted,7,ParallelSort,7,69714301000000,PreSorted,7,ParallelSort,8,103425151000000,PreSorted,7,ParallelSort,9,147515421000000,PreSorted,7,ParallelSort,10,200778771000000,PreSorted,7,ParallelBufferedSort,0,502361000000,PreSorted,7,ParallelBufferedSort,1,634221000000,PreSorted,7,ParallelBufferedSort,2,1442951000000,PreSorted,7,ParallelBufferedSort,3,4053981000000,PreSorted,7,ParallelBufferedSort,4,8526201000000,PreSorted,7,ParallelBufferedSort,5,15316001000000,PreSorted,7,ParallelBufferedSort,6,25658651000000,PreSorted,7,ParallelBufferedSort,7,40269101000000,PreSorted,7,ParallelBufferedSort,8,59679181000000,PreSorted,7,ParallelBufferedSort,9,84471701000000,PreSorted,7,ParallelBufferedSort,10,115506691000000,PreSorted,7,ParallelRadixSort,0,590001000000,PreSorted,7,ParallelRadixSort,1,798881000000,PreSorted,7,ParallelRadixSort,2,1668371000000,PreSorted,7,ParallelRadixSort,3,5052231000000,PreSorted,7,ParallelRadixSort,4,9605541000000,PreSorted,7,ParallelRadixSort,5,18712431000000,PreSorted,7,ParallelRadixSort,6,30060681000000,PreSorted,7,ParallelRadixSort,7,49362881000000,PreSorted,7,ParallelRadixSort,8,70473981000000,PreSorted,7,ParallelRadixSort,9,99275961000000,PreSorted,7,ParallelRadixSort,10,135999001000000,PreSorted,7,StdSort,0,2341421000000,PreSorted,7,StdSort,1,3365091000000,PreSorted,7,StdSort,2,10330151000000,PreSorted,7,StdSort,3,32365041000000,PreSorted,7,StdSort,4,68137571000000,PreSorted,7,StdSort,5,126838661000000,PreSorted,7,StdSort,6,214482901000000,PreSorted,7,StdSort,7,336947511000000,PreSorted,7,StdSort,8,499724421000000,PreSorted,7,StdSort,9,708753531000000,PreSorted,7,StdSort,10,969931521000000,PreSorted,8,ParallelSort,0,517071000000,PreSorted,8,ParallelSort,1,731061000000,PreSorted,8,ParallelSort,2,2135641000000,PreSorted,8,ParallelSort,3,6768291000000,PreSorted,8,ParallelSort,4,14151881000000,PreSorted,8,ParallelSort,5,26204271000000,PreSorted,8,ParallelSort,6,44227831000000,PreSorted,8,ParallelSort,7,69399961000000,PreSorted,8,ParallelSort,8,102830911000000,PreSorted,8,ParallelSort,9,145839651000000,PreSorted,8,ParallelSort,10,199483241000000,PreSorted,8,ParallelBufferedSort,0,447331000000,PreSorted,8,ParallelBufferedSort,1,531321000000,PreSorted,8,ParallelBufferedSort,2,1234171000000,PreSorted,8,ParallelBufferedSort,3,3361871000000,PreSorted,8,ParallelBufferedSort,4,6904591000000,PreSorted,8,ParallelBufferedSort,5,12462151000000,PreSorted,8,ParallelBufferedSort,6,21000551000000,PreSorted,8,ParallelBufferedSort,7,32771481000000,PreSorted,8,ParallelBufferedSort,8,48527031000000,PreSorted,8,ParallelBufferedSort,9,68706221000000,PreSorted,8,ParallelBufferedSort,10,93697311000000,PreSorted,8,ParallelRadixSort,0,561971000000,PreSorted,8,ParallelRadixSort,1,739451000000,PreSorted,8,ParallelRadixSort,2,1528481000000,PreSorted,8,ParallelRadixSort,3,4075371000000,PreSorted,8,ParallelRadixSort,4,8321011000000,PreSorted,8,ParallelRadixSort,5,15805691000000,PreSorted,8,ParallelRadixSort,6,26640571000000,PreSorted,8,ParallelRadixSort,7,40919161000000,PreSorted,8,ParallelRadixSort,8,62733421000000,PreSorted,8,ParallelRadixSort,9,87448361000000,PreSorted,8,ParallelRadixSort,10,121214721000000,PreSorted,8,StdSort,0,2344521000000,PreSorted,8,StdSort,1,3364121000000,PreSorted,8,StdSort,2,10320431000000,PreSorted,8,StdSort,3,32351571000000,PreSorted,8,StdSort,4,68167111000000,PreSorted,8,StdSort,5,126820021000000,PreSorted,8,StdSort,6,214423571000000,PreSorted,8,StdSort,7,336984341000000,PreSorted,8,StdSort,8,499680061000000,PreSorted,8,StdSort,9,708708661000000,PreSorted,8,StdSort,10,969931981000000,NearlySorted,1,ParallelSort,0,2344661000000,NearlySorted,1,ParallelSort,1,3369041000000,NearlySorted,1,ParallelSort,2,10149061000000,NearlySorted,1,ParallelSort,3,32446371000000,NearlySorted,1,ParallelSort,4,68228521000000,NearlySorted,1,ParallelSort,5,126936621000000,NearlySorted,1,ParallelSort,6,214557311000000,NearlySorted,1,ParallelSort,7,337058401000000,NearlySorted,1,ParallelSort,8,499724011000000,NearlySorted,1,ParallelSort,9,708749861000000,NearlySorted,1,ParallelSort,10,969938021000000,NearlySorted,1,ParallelBufferedSort,0,2342551000000,NearlySorted,1,ParallelBufferedSort,1,3372111000000,NearlySorted,1,ParallelBufferedSort,2,10144821000000,NearlySorted,1,ParallelBufferedSort,3,32459631000000,NearlySorted,1,ParallelBufferedSort,4,68304601000000,NearlySorted,1,ParallelBufferedSort,5,126908151000000,NearlySorted,1,ParallelBufferedSort,6,214613281000000,NearlySorted,1,ParallelBufferedSort,7,336961001000000,NearlySorted,1,ParallelBufferedSort,8,499677551000000,NearlySorted,1,ParallelBufferedSort,9,708714411000000,NearlySorted,1,ParallelBufferedSort,10,969789541000000,NearlySorted,1,ParallelRadixSort,0,2293881000000,NearlySorted,1,ParallelRadixSort,1,3606621000000,NearlySorted,1,ParallelRadixSort,2,8889581000000,NearlySorted,1,ParallelRadixSort,3,25829111000000,NearlySorted,1,ParallelRadixSort,4,54411741000000,NearlySorted,1,ParallelRadixSort,5,101742551000000,NearlySorted,1,ParallelRadixSort,6,172032341000000,NearlySorted,1,ParallelRadixSort,7,270214491000000,NearlySorted,1,ParallelRadixSort,8,401367621000000,NearlySorted,1,ParallelRadixSort,9,569457761000000,NearlySorted,1,ParallelRadixSort,10,779785041000000,NearlySorted,1,StdSort,0,2345391000000,NearlySorted,1,StdSort,1,3371851000000,NearlySorted,1,StdSort,2,10154641000000,NearlySorted,1,StdSort,3,32415491000000,NearlySorted,1,StdSort,4,68164991000000,NearlySorted,1,StdSort,5,126890751000000,NearlySorted,1,StdSort,6,214486731000000,NearlySorted,1,StdSort,7,336992061000000,NearlySorted,1,StdSort,8,499706131000000,NearlySorted,1,StdSort,9,708616731000000,NearlySorted,1,StdSort,10,969905731000000,NearlySorted,2,ParallelSort,0,1085031000000,NearlySorted,2,ParallelSort,1,1538421000000,NearlySorted,2,ParallelSort,2,4484731000000,NearlySorted,2,ParallelSort,3,13993181000000,NearlySorted,2,ParallelSort,4,29220281000000,NearlySorted,2,ParallelSort,5,54252091000000,NearlySorted,2,ParallelSort,6,91618831000000,NearlySorted,2,ParallelSort,7,143835591000000,NearlySorted,2,ParallelSort,8,213294491000000,NearlySorted,2,ParallelSort,9,302426301000000,NearlySorted,2,ParallelSort,10,413630591000000,NearlySorted,2,ParallelBufferedSort,0,975361000000,NearlySorted,2,ParallelBufferedSort,1,1332991000000,NearlySorted,2,ParallelBufferedSort,2,3710641000000,NearlySorted,2,ParallelBufferedSort,3,11221251000000,NearlySorted,2,ParallelBufferedSort,4,23336911000000,NearlySorted,2,ParallelBufferedSort,5,43266561000000,NearlySorted,2,ParallelBufferedSort,6,72963701000000,NearlySorted,2,ParallelBufferedSort,7,114478841000000,NearlySorted,2,ParallelBufferedSort,8,169715171000000,NearlySorted,2,ParallelBufferedSort,9,240665061000000,NearlySorted,2,ParallelBufferedSort,10,329303201000000,NearlySorted,2,ParallelRadixSort,0,1201141000000,NearlySorted,2,ParallelRadixSort,1,1847611000000,NearlySorted,2,ParallelRadixSort,2,4493201000000,NearlySorted,2,ParallelRadixSort,3,12994381000000,NearlySorted,2,ParallelRadixSort,4,27286391000000,NearlySorted,2,ParallelRadixSort,5,50968001000000,NearlySorted,2,ParallelRadixSort,6,86186261000000,NearlySorted,2,ParallelRadixSort,7,135329671000000,NearlySorted,2,ParallelRadixSort,8,201005141000000,NearlySorted,2,ParallelRadixSort,9,285217821000000,NearlySorted,2,ParallelRadixSort,10,390442731000000,NearlySorted,2,StdSort,0,2345281000000,NearlySorted,2,StdSort,1,3373361000000,NearlySorted,2,StdSort,2,10157231000000,NearlySorted,2,StdSort,3,32400181000000,NearlySorted,2,StdSort,4,68213581000000,NearlySorted,2,StdSort,5,126841391000000,NearlySorted,2,StdSort,6,214522231000000,NearlySorted,2,StdSort,7,336962431000000,NearlySorted,2,StdSort,8,499698701000000,NearlySorted,2,StdSort,9,708651461000000,NearlySorted,2,StdSort,10,970018011000000,NearlySorted,3,ParallelSort,0,789001000000,NearlySorted,3,ParallelSort,1,1110861000000,NearlySorted,3,ParallelSort,2,3236541000000,NearlySorted,3,ParallelSort,3,10132821000000,NearlySorted,3,ParallelSort,4,21163241000000,NearlySorted,3,ParallelSort,5,39279051000000,NearlySorted,3,ParallelSort,6,66346421000000,NearlySorted,3,ParallelSort,7,104161161000000,NearlySorted,3,ParallelSort,8,154442151000000,NearlySorted,3,ParallelSort,9,219049611000000,NearlySorted,3,ParallelSort,10,299436491000000,NearlySorted,3,ParallelBufferedSort,0,685611000000,NearlySorted,3,ParallelBufferedSort,1,920151000000,NearlySorted,3,ParallelBufferedSort,2,2466081000000,NearlySorted,3,ParallelBufferedSort,3,7365961000000,NearlySorted,3,ParallelBufferedSort,4,15279461000000,NearlySorted,3,ParallelBufferedSort,5,28288531000000,NearlySorted,3,ParallelBufferedSort,6,47666941000000,NearlySorted,3,ParallelBufferedSort,7,74758151000000,NearlySorted,3,ParallelBufferedSort,8,110781071000000,NearlySorted,3,ParallelBufferedSort,9,157099991000000,NearlySorted,3,ParallelBufferedSort,10,214913331000000,NearlySorted,3,ParallelRadixSort,0,1234411000000,NearlySorted,3,ParallelRadixSort,1,1821141000000,NearlySorted,3,ParallelRadixSort,2,4538101000000,NearlySorted,3,ParallelRadixSort,3,12324821000000,NearlySorted,3,ParallelRadixSort,4,25783131000000,NearlySorted,3,ParallelRadixSort,5,48023231000000,NearlySorted,3,ParallelRadixSort,6,66917121000000,NearlySorted,3,ParallelRadixSort,7,102874961000000,NearlySorted,3,ParallelRadixSort,8,149514231000000,NearlySorted,3,ParallelRadixSort,9,194855741000000,NearlySorted,3,ParallelRadixSort,10,290676341000000,NearlySorted,3,StdSort,0,2342461000000,NearlySorted,3,StdSort,1,3367651000000,NearlySorted,3,StdSort,2,10148131000000,NearlySorted,3,StdSort,3,32407031000000,NearlySorted,3,StdSort,4,68165241000000,NearlySorted,3,StdSort,5,126809751000000,NearlySorted,3,StdSort,6,214426371000000,NearlySorted,3,StdSort,7,336878751000000,NearlySorted,3,StdSort,8,499659371000000,NearlySorted,3,StdSort,9,708693011000000,NearlySorted,3,StdSort,10,969881531000000,NearlySorted,4,ParallelSort,0,769841000000,NearlySorted,4,ParallelSort,1,1096191000000,NearlySorted,4,ParallelSort,2,3227611000000,NearlySorted,4,ParallelSort,3,10149851000000,NearlySorted,4,ParallelSort,4,19607711000000,NearlySorted,4,ParallelSort,5,36436891000000,NearlySorted,4,ParallelSort,6,61531821000000,NearlySorted,4,ParallelSort,7,96688671000000,NearlySorted,4,ParallelSort,8,143476081000000,NearlySorted,4,ParallelSort,9,203296051000000,NearlySorted,4,ParallelSort,10,277949221000000,NearlySorted,4,ParallelBufferedSort,0,712161000000,NearlySorted,4,ParallelBufferedSort,1,953151000000,NearlySorted,4,ParallelBufferedSort,2,2486061000000,NearlySorted,4,ParallelBufferedSort,3,7384641000000,NearlySorted,4,ParallelBufferedSort,4,15353591000000,NearlySorted,4,ParallelBufferedSort,5,27972491000000,NearlySorted,4,ParallelBufferedSort,6,47888651000000,NearlySorted,4,ParallelBufferedSort,7,74852901000000,NearlySorted,4,ParallelBufferedSort,8,100901491000000,NearlySorted,4,ParallelBufferedSort,9,141415591000000,NearlySorted,4,ParallelBufferedSort,10,193466461000000,NearlySorted,4,ParallelRadixSort,0,891391000000,NearlySorted,4,ParallelRadixSort,1,1170131000000,NearlySorted,4,ParallelRadixSort,2,2671081000000,NearlySorted,4,ParallelRadixSort,3,11500531000000,NearlySorted,4,ParallelRadixSort,4,15506391000000,NearlySorted,4,ParallelRadixSort,5,28817301000000,NearlySorted,4,ParallelRadixSort,6,47328541000000,NearlySorted,4,ParallelRadixSort,7,80786091000000,NearlySorted,4,ParallelRadixSort,8,103194721000000,NearlySorted,4,ParallelRadixSort,9,162365521000000,NearlySorted,4,ParallelRadixSort,10,213572891000000,NearlySorted,4,StdSort,0,2343561000000,NearlySorted,4,StdSort,1,3367421000000,NearlySorted,4,StdSort,2,10148961000000,NearlySorted,4,StdSort,3,32358271000000,NearlySorted,4,StdSort,4,68137421000000,NearlySorted,4,StdSort,5,126829151000000,NearlySorted,4,StdSort,6,214448641000000,NearlySorted,4,StdSort,7,336949511000000,NearlySorted,4,StdSort,8,499673691000000,NearlySorted,4,StdSort,9,708668011000000,NearlySorted,4,StdSort,10,969832851000000,NearlySorted,5,ParallelSort,0,680821000000,NearlySorted,5,ParallelSort,1,960601000000,NearlySorted,5,ParallelSort,2,2651201000000,NearlySorted,5,ParallelSort,3,8396961000000,NearlySorted,5,ParallelSort,4,17391921000000,NearlySorted,5,ParallelSort,5,32562851000000,NearlySorted,5,ParallelSort,6,54639761000000,NearlySorted,5,ParallelSort,7,85586741000000,NearlySorted,5,ParallelSort,8,126918651000000,NearlySorted,5,ParallelSort,9,180042111000000,NearlySorted,5,ParallelSort,10,246362831000000,NearlySorted,5,ParallelBufferedSort,0,629901000000,NearlySorted,5,ParallelBufferedSort,1,801481000000,NearlySorted,5,ParallelBufferedSort,2,2088761000000,NearlySorted,5,ParallelBufferedSort,3,6119141000000,NearlySorted,5,ParallelBufferedSort,4,12551821000000,NearlySorted,5,ParallelBufferedSort,5,23190121000000,NearlySorted,5,ParallelBufferedSort,6,36934751000000,NearlySorted,5,ParallelBufferedSort,7,56238651000000,NearlySorted,5,ParallelBufferedSort,8,83363801000000,NearlySorted,5,ParallelBufferedSort,9,118150181000000,NearlySorted,5,ParallelBufferedSort,10,161652191000000,NearlySorted,5,ParallelRadixSort,0,775201000000,NearlySorted,5,ParallelRadixSort,1,1118991000000,NearlySorted,5,ParallelRadixSort,2,2592951000000,NearlySorted,5,ParallelRadixSort,3,7013041000000,NearlySorted,5,ParallelRadixSort,4,14150171000000,NearlySorted,5,ParallelRadixSort,5,24829071000000,NearlySorted,5,ParallelRadixSort,6,42122601000000,NearlySorted,5,ParallelRadixSort,7,65263971000000,NearlySorted,5,ParallelRadixSort,8,94915561000000,NearlySorted,5,ParallelRadixSort,9,135558461000000,NearlySorted,5,ParallelRadixSort,10,192950031000000,NearlySorted,5,StdSort,0,2347591000000,NearlySorted,5,StdSort,1,3369221000000,NearlySorted,5,StdSort,2,10153261000000,NearlySorted,5,StdSort,3,32357831000000,NearlySorted,5,StdSort,4,68192731000000,NearlySorted,5,StdSort,5,126900121000000,NearlySorted,5,StdSort,6,214461641000000,NearlySorted,5,StdSort,7,336932081000000,NearlySorted,5,StdSort,8,499673061000000,NearlySorted,5,StdSort,9,708588891000000,NearlySorted,5,StdSort,10,969843171000000,NearlySorted,6,ParallelSort,0,610371000000,NearlySorted,6,ParallelSort,1,829951000000,NearlySorted,6,ParallelSort,2,2444541000000,NearlySorted,6,ParallelSort,3,7640591000000,NearlySorted,6,ParallelSort,4,15941061000000,NearlySorted,6,ParallelSort,5,29613481000000,NearlySorted,6,ParallelSort,6,50032001000000,NearlySorted,6,ParallelSort,7,78492501000000,NearlySorted,6,ParallelSort,8,116505451000000,NearlySorted,6,ParallelSort,9,164946491000000,NearlySorted,6,ParallelSort,10,225653471000000,NearlySorted,6,ParallelBufferedSort,0,461161000000,NearlySorted,6,ParallelBufferedSort,1,627031000000,NearlySorted,6,ParallelBufferedSort,2,1630651000000,NearlySorted,6,ParallelBufferedSort,3,4861711000000,NearlySorted,6,ParallelBufferedSort,4,10046601000000,NearlySorted,6,ParallelBufferedSort,5,18600861000000,NearlySorted,6,ParallelBufferedSort,6,31342841000000,NearlySorted,6,ParallelBufferedSort,7,49159471000000,NearlySorted,6,ParallelBufferedSort,8,72849381000000,NearlySorted,6,ParallelBufferedSort,9,103201641000000,NearlySorted,6,ParallelBufferedSort,10,141179651000000,NearlySorted,6,ParallelRadixSort,0,593201000000,NearlySorted,6,ParallelRadixSort,1,803911000000,NearlySorted,6,ParallelRadixSort,2,1888671000000,NearlySorted,6,ParallelRadixSort,3,5098461000000,NearlySorted,6,ParallelRadixSort,4,10645681000000,NearlySorted,6,ParallelRadixSort,5,19570311000000,NearlySorted,6,ParallelRadixSort,6,33236981000000,NearlySorted,6,ParallelRadixSort,7,52826291000000,NearlySorted,6,ParallelRadixSort,8,77445231000000,NearlySorted,6,ParallelRadixSort,9,112039691000000,NearlySorted,6,ParallelRadixSort,10,149143061000000,NearlySorted,6,StdSort,0,2342201000000,NearlySorted,6,StdSort,1,3368161000000,NearlySorted,6,StdSort,2,10149061000000,NearlySorted,6,StdSort,3,32355721000000,NearlySorted,6,StdSort,4,68149741000000,NearlySorted,6,StdSort,5,126845531000000,NearlySorted,6,StdSort,6,214425771000000,NearlySorted,6,StdSort,7,336953461000000,NearlySorted,6,StdSort,8,499648851000000,NearlySorted,6,StdSort,9,708717611000000,NearlySorted,6,StdSort,10,969942181000000,NearlySorted,7,ParallelSort,0,519751000000,NearlySorted,7,ParallelSort,1,734341000000,NearlySorted,7,ParallelSort,2,2149591000000,NearlySorted,7,ParallelSort,3,6782701000000,NearlySorted,7,ParallelSort,4,14305941000000,NearlySorted,7,ParallelSort,5,26308201000000,NearlySorted,7,ParallelSort,6,44377661000000,NearlySorted,7,ParallelSort,7,69751451000000,NearlySorted,7,ParallelSort,8,103378201000000,NearlySorted,7,ParallelSort,9,146387901000000,NearlySorted,7,ParallelSort,10,199961651000000,NearlySorted,7,ParallelBufferedSort,0,457251000000,NearlySorted,7,ParallelBufferedSort,1,581431000000,NearlySorted,7,ParallelBufferedSort,2,1400701000000,NearlySorted,7,ParallelBufferedSort,3,4064281000000,NearlySorted,7,ParallelBufferedSort,4,8274781000000,NearlySorted,7,ParallelBufferedSort,5,15304381000000,NearlySorted,7,ParallelBufferedSort,6,25767701000000,NearlySorted,7,ParallelBufferedSort,7,40314811000000,NearlySorted,7,ParallelBufferedSort,8,59524551000000,NearlySorted,7,ParallelBufferedSort,9,84481461000000,NearlySorted,7,ParallelBufferedSort,10,115496291000000,NearlySorted,7,ParallelRadixSort,0,573701000000,NearlySorted,7,ParallelRadixSort,1,802671000000,NearlySorted,7,ParallelRadixSort,2,1664511000000,NearlySorted,7,ParallelRadixSort,3,4748051000000,NearlySorted,7,ParallelRadixSort,4,9578841000000,NearlySorted,7,ParallelRadixSort,5,17828741000000,NearlySorted,7,ParallelRadixSort,6,30027621000000,NearlySorted,7,ParallelRadixSort,7,49009721000000,NearlySorted,7,ParallelRadixSort,8,70399421000000,NearlySorted,7,ParallelRadixSort,9,103195891000000,NearlySorted,7,ParallelRadixSort,10,141836671000000,NearlySorted,7,StdSort,0,2341181000000,NearlySorted,7,StdSort,1,3369921000000,NearlySorted,7,StdSort,2,10148411000000,NearlySorted,7,StdSort,3,32393661000000,NearlySorted,7,StdSort,4,68174151000000,NearlySorted,7,StdSort,5,126864651000000,NearlySorted,7,StdSort,6,214453491000000,NearlySorted,7,StdSort,7,336943521000000,NearlySorted,7,StdSort,8,499661401000000,NearlySorted,7,StdSort,9,708693221000000,NearlySorted,7,StdSort,10,969862301000000,NearlySorted,8,ParallelSort,0,517531000000,NearlySorted,8,ParallelSort,1,730821000000,NearlySorted,8,ParallelSort,2,2138881000000,NearlySorted,8,ParallelSort,3,6768591000000,NearlySorted,8,ParallelSort,4,14144861000000,NearlySorted,8,ParallelSort,5,26182621000000,NearlySorted,8,ParallelSort,6,44213591000000,NearlySorted,8,ParallelSort,7,69379931000000,NearlySorted,8,ParallelSort,8,102843741000000,NearlySorted,8,ParallelSort,9,146100221000000,NearlySorted,8,ParallelSort,10,199379221000000,NearlySorted,8,ParallelBufferedSort,0,413391000000,NearlySorted,8,ParallelBufferedSort,1,517821000000,NearlySorted,8,ParallelBufferedSort,2,1200331000000,NearlySorted,8,ParallelBufferedSort,3,3326451000000,NearlySorted,8,ParallelBufferedSort,4,6787281000000,NearlySorted,8,ParallelBufferedSort,5,12454511000000,NearlySorted,8,ParallelBufferedSort,6,21002391000000,NearlySorted,8,ParallelBufferedSort,7,32812781000000,NearlySorted,8,ParallelBufferedSort,8,48468671000000,NearlySorted,8,ParallelBufferedSort,9,68971921000000,NearlySorted,8,ParallelBufferedSort,10,93889571000000,NearlySorted,8,ParallelRadixSort,0,524411000000,NearlySorted,8,ParallelRadixSort,1,693561000000,NearlySorted,8,ParallelRadixSort,2,1490111000000,NearlySorted,8,ParallelRadixSort,3,4066471000000,NearlySorted,8,ParallelRadixSort,4,9361351000000,NearlySorted,8,ParallelRadixSort,5,15752981000000,NearlySorted,8,ParallelRadixSort,6,26353121000000,NearlySorted,8,ParallelRadixSort,7,41894551000000,NearlySorted,8,ParallelRadixSort,8,61578491000000,NearlySorted,8,ParallelRadixSort,9,85135521000000,NearlySorted,8,ParallelRadixSort,10,117669801000000,NearlySorted,8,StdSort,0,2346621000000,NearlySorted,8,StdSort,1,3371991000000,NearlySorted,8,StdSort,2,10152351000000,NearlySorted,8,StdSort,3,32385331000000,NearlySorted,8,StdSort,4,68171141000000,NearlySorted,8,StdSort,5,126837011000000,NearlySorted,8,StdSort,6,214483971000000,NearlySorted,8,StdSort,7,336924841000000,NearlySorted,8,StdSort,8,499682641000000,NearlySorted,8,StdSort,9,708706651000000,NearlySorted,8,StdSort,10,969898531000000,NormalDistributionWithDups,1,ParallelSort,0,3203631000000,NormalDistributionWithDups,1,ParallelSort,1,4378151000000,NormalDistributionWithDups,1,ParallelSort,2,11869371000000,NormalDistributionWithDups,1,ParallelSort,3,35556861000000,NormalDistributionWithDups,1,ParallelSort,4,73807501000000,NormalDistributionWithDups,1,ParallelSort,5,136606841000000,NormalDistributionWithDups,1,ParallelSort,6,230516631000000,NormalDistributionWithDups,1,ParallelSort,7,361729771000000,NormalDistributionWithDups,1,ParallelSort,8,535990451000000,NormalDistributionWithDups,1,ParallelSort,9,760019401000000,NormalDistributionWithDups,1,ParallelSort,10,1039882571000000,NormalDistributionWithDups,1,ParallelBufferedSort,0,3204231000000,NormalDistributionWithDups,1,ParallelBufferedSort,1,4377721000000,NormalDistributionWithDups,1,ParallelBufferedSort,2,11869551000000,NormalDistributionWithDups,1,ParallelBufferedSort,3,35488141000000,NormalDistributionWithDups,1,ParallelBufferedSort,4,73829551000000,NormalDistributionWithDups,1,ParallelBufferedSort,5,136689521000000,NormalDistributionWithDups,1,ParallelBufferedSort,6,230650141000000,NormalDistributionWithDups,1,ParallelBufferedSort,7,361901161000000,NormalDistributionWithDups,1,ParallelBufferedSort,8,536316941000000,NormalDistributionWithDups,1,ParallelBufferedSort,9,760533541000000,NormalDistributionWithDups,1,ParallelBufferedSort,10,1040331511000000,NormalDistributionWithDups,1,ParallelRadixSort,0,2148041000000,NormalDistributionWithDups,1,ParallelRadixSort,1,3410781000000,NormalDistributionWithDups,1,ParallelRadixSort,2,8395591000000,NormalDistributionWithDups,1,ParallelRadixSort,3,24566451000000,NormalDistributionWithDups,1,ParallelRadixSort,4,51821921000000,NormalDistributionWithDups,1,ParallelRadixSort,5,96918951000000,NormalDistributionWithDups,1,ParallelRadixSort,6,163940141000000,NormalDistributionWithDups,1,ParallelRadixSort,7,257464231000000,NormalDistributionWithDups,1,ParallelRadixSort,8,382520821000000,NormalDistributionWithDups,1,ParallelRadixSort,9,542337301000000,NormalDistributionWithDups,1,ParallelRadixSort,10,741890371000000,NormalDistributionWithDups,1,StdSort,0,3207561000000,NormalDistributionWithDups,1,StdSort,1,4382221000000,NormalDistributionWithDups,1,StdSort,2,11878211000000,NormalDistributionWithDups,1,StdSort,3,35504951000000,NormalDistributionWithDups,1,StdSort,4,73833441000000,NormalDistributionWithDups,1,StdSort,5,136626951000000,NormalDistributionWithDups,1,StdSort,6,230553541000000,NormalDistributionWithDups,1,StdSort,7,361759951000000,NormalDistributionWithDups,1,StdSort,8,536049451000000,NormalDistributionWithDups,1,StdSort,9,760018111000000,NormalDistributionWithDups,1,StdSort,10,1039903551000000,NormalDistributionWithDups,2,ParallelSort,0,1492331000000,NormalDistributionWithDups,2,ParallelSort,1,1929461000000,NormalDistributionWithDups,2,ParallelSort,2,4599051000000,NormalDistributionWithDups,2,ParallelSort,3,13490101000000,NormalDistributionWithDups,2,ParallelSort,4,28355381000000,NormalDistributionWithDups,2,ParallelSort,5,52937691000000,NormalDistributionWithDups,2,ParallelSort,6,89726801000000,NormalDistributionWithDups,2,ParallelSort,7,140692101000000,NormalDistributionWithDups,2,ParallelSort,8,209138521000000,NormalDistributionWithDups,2,ParallelSort,9,296254901000000,NormalDistributionWithDups,2,ParallelSort,10,404713841000000,NormalDistributionWithDups,2,ParallelBufferedSort,0,1428971000000,NormalDistributionWithDups,2,ParallelBufferedSort,1,1869101000000,NormalDistributionWithDups,2,ParallelBufferedSort,2,4506391000000,NormalDistributionWithDups,2,ParallelBufferedSort,3,13152041000000,NormalDistributionWithDups,2,ParallelBufferedSort,4,27442911000000,NormalDistributionWithDups,2,ParallelBufferedSort,5,50992981000000,NormalDistributionWithDups,2,ParallelBufferedSort,6,86134331000000,NormalDistributionWithDups,2,ParallelBufferedSort,7,135372061000000,NormalDistributionWithDups,2,ParallelBufferedSort,8,200720201000000,NormalDistributionWithDups,2,ParallelBufferedSort,9,284147921000000,NormalDistributionWithDups,2,ParallelBufferedSort,10,388694411000000,NormalDistributionWithDups,2,ParallelRadixSort,0,1144621000000,NormalDistributionWithDups,2,ParallelRadixSort,1,1782601000000,NormalDistributionWithDups,2,ParallelRadixSort,2,4220441000000,NormalDistributionWithDups,2,ParallelRadixSort,3,12123061000000,NormalDistributionWithDups,2,ParallelRadixSort,4,25484521000000,NormalDistributionWithDups,2,ParallelRadixSort,5,47624951000000,NormalDistributionWithDups,2,ParallelRadixSort,6,80496641000000,NormalDistributionWithDups,2,ParallelRadixSort,7,126310371000000,NormalDistributionWithDups,2,ParallelRadixSort,8,187767781000000,NormalDistributionWithDups,2,ParallelRadixSort,9,266014721000000,NormalDistributionWithDups,2,ParallelRadixSort,10,363854071000000,NormalDistributionWithDups,2,StdSort,0,3184831000000,NormalDistributionWithDups,2,StdSort,1,4359381000000,NormalDistributionWithDups,2,StdSort,2,11841361000000,NormalDistributionWithDups,2,StdSort,3,35410061000000,NormalDistributionWithDups,2,StdSort,4,73646591000000,NormalDistributionWithDups,2,StdSort,5,136331841000000,NormalDistributionWithDups,2,StdSort,6,230061171000000,NormalDistributionWithDups,2,StdSort,7,360962591000000,NormalDistributionWithDups,2,StdSort,8,534882611000000,NormalDistributionWithDups,2,StdSort,9,758354071000000,NormalDistributionWithDups,2,StdSort,10,1037614011000000,NormalDistributionWithDups,3,ParallelSort,0,1297661000000,NormalDistributionWithDups,3,ParallelSort,1,1684261000000,NormalDistributionWithDups,3,ParallelSort,2,4023421000000,NormalDistributionWithDups,3,ParallelSort,3,11812221000000,NormalDistributionWithDups,3,ParallelSort,4,24770611000000,NormalDistributionWithDups,3,ParallelSort,5,46236971000000,NormalDistributionWithDups,3,ParallelSort,6,78147501000000,NormalDistributionWithDups,3,ParallelSort,7,122773361000000,NormalDistributionWithDups,3,ParallelSort,8,182129811000000,NormalDistributionWithDups,3,ParallelSort,9,258087911000000,NormalDistributionWithDups,3,ParallelSort,10,353230481000000,NormalDistributionWithDups,3,ParallelBufferedSort,0,979691000000,NormalDistributionWithDups,3,ParallelBufferedSort,1,1244131000000,NormalDistributionWithDups,3,ParallelBufferedSort,2,2967221000000,NormalDistributionWithDups,3,ParallelBufferedSort,3,8644211000000,NormalDistributionWithDups,3,ParallelBufferedSort,4,18078141000000,NormalDistributionWithDups,3,ParallelBufferedSort,5,33617051000000,NormalDistributionWithDups,3,ParallelBufferedSort,6,56796751000000,NormalDistributionWithDups,3,ParallelBufferedSort,7,89134831000000,NormalDistributionWithDups,3,ParallelBufferedSort,8,132247401000000,NormalDistributionWithDups,3,ParallelBufferedSort,9,187598821000000,NormalDistributionWithDups,3,ParallelBufferedSort,10,256858981000000,NormalDistributionWithDups,3,ParallelRadixSort,0,1108951000000,NormalDistributionWithDups,3,ParallelRadixSort,1,1701851000000,NormalDistributionWithDups,3,ParallelRadixSort,2,4038471000000,NormalDistributionWithDups,3,ParallelRadixSort,3,11553411000000,NormalDistributionWithDups,3,ParallelRadixSort,4,24130941000000,NormalDistributionWithDups,3,ParallelRadixSort,5,38817061000000,NormalDistributionWithDups,3,ParallelRadixSort,6,76031401000000,NormalDistributionWithDups,3,ParallelRadixSort,7,94866961000000,NormalDistributionWithDups,3,ParallelRadixSort,8,149916781000000,NormalDistributionWithDups,3,ParallelRadixSort,9,203297041000000,NormalDistributionWithDups,3,ParallelRadixSort,10,273172851000000,NormalDistributionWithDups,3,StdSort,0,3222101000000,NormalDistributionWithDups,3,StdSort,1,4415501000000,NormalDistributionWithDups,3,StdSort,2,12003541000000,NormalDistributionWithDups,3,StdSort,3,35895371000000,NormalDistributionWithDups,3,StdSort,4,74652681000000,NormalDistributionWithDups,3,StdSort,5,138203301000000,NormalDistributionWithDups,3,StdSort,6,233244921000000,NormalDistributionWithDups,3,StdSort,7,365986141000000,NormalDistributionWithDups,3,StdSort,8,542333381000000,NormalDistributionWithDups,3,StdSort,9,768961401000000,NormalDistributionWithDups,3,StdSort,10,1052088101000000,NormalDistributionWithDups,4,ParallelSort,0,1084391000000,NormalDistributionWithDups,4,ParallelSort,1,1391331000000,NormalDistributionWithDups,4,ParallelSort,2,3281941000000,NormalDistributionWithDups,4,ParallelSort,3,9642301000000,NormalDistributionWithDups,4,ParallelSort,4,19123061000000,NormalDistributionWithDups,4,ParallelSort,5,35821111000000,NormalDistributionWithDups,4,ParallelSort,6,62208711000000,NormalDistributionWithDups,4,ParallelSort,7,95086581000000,NormalDistributionWithDups,4,ParallelSort,8,142582261000000,NormalDistributionWithDups,4,ParallelSort,9,195104751000000,NormalDistributionWithDups,4,ParallelSort,10,270826661000000,NormalDistributionWithDups,4,ParallelBufferedSort,0,1013671000000,NormalDistributionWithDups,4,ParallelBufferedSort,1,1258571000000,NormalDistributionWithDups,4,ParallelBufferedSort,2,3008201000000,NormalDistributionWithDups,4,ParallelBufferedSort,3,8559091000000,NormalDistributionWithDups,4,ParallelBufferedSort,4,17302521000000,NormalDistributionWithDups,4,ParallelBufferedSort,5,32082091000000,NormalDistributionWithDups,4,ParallelBufferedSort,6,53930001000000,NormalDistributionWithDups,4,ParallelBufferedSort,7,81528071000000,NormalDistributionWithDups,4,ParallelBufferedSort,8,120330051000000,NormalDistributionWithDups,4,ParallelBufferedSort,9,170501331000000,NormalDistributionWithDups,4,ParallelBufferedSort,10,229711721000000,NormalDistributionWithDups,4,ParallelRadixSort,0,1027771000000,NormalDistributionWithDups,4,ParallelRadixSort,1,1125971000000,NormalDistributionWithDups,4,ParallelRadixSort,2,3168961000000,NormalDistributionWithDups,4,ParallelRadixSort,3,10763621000000,NormalDistributionWithDups,4,ParallelRadixSort,4,15135061000000,NormalDistributionWithDups,4,ParallelRadixSort,5,33871221000000,NormalDistributionWithDups,4,ParallelRadixSort,6,44695711000000,NormalDistributionWithDups,4,ParallelRadixSort,7,75294131000000,NormalDistributionWithDups,4,ParallelRadixSort,8,103498591000000,NormalDistributionWithDups,4,ParallelRadixSort,9,147539561000000,NormalDistributionWithDups,4,ParallelRadixSort,10,203847951000000,NormalDistributionWithDups,4,StdSort,0,3286951000000,NormalDistributionWithDups,4,StdSort,1,4501851000000,NormalDistributionWithDups,4,StdSort,2,12241251000000,NormalDistributionWithDups,4,StdSort,3,36621231000000,NormalDistributionWithDups,4,StdSort,4,76156221000000,NormalDistributionWithDups,4,StdSort,5,141075351000000,NormalDistributionWithDups,4,StdSort,6,238069471000000,NormalDistributionWithDups,4,StdSort,7,373705551000000,NormalDistributionWithDups,4,StdSort,8,553599901000000,NormalDistributionWithDups,4,StdSort,9,784968701000000,NormalDistributionWithDups,4,StdSort,10,1073989951000000,NormalDistributionWithDups,5,ParallelSort,0,975721000000,NormalDistributionWithDups,5,ParallelSort,1,1258541000000,NormalDistributionWithDups,5,ParallelSort,2,2749611000000,NormalDistributionWithDups,5,ParallelSort,3,7764631000000,NormalDistributionWithDups,5,ParallelSort,4,16509141000000,NormalDistributionWithDups,5,ParallelSort,5,31626641000000,NormalDistributionWithDups,5,ParallelSort,6,53326171000000,NormalDistributionWithDups,5,ParallelSort,7,83995361000000,NormalDistributionWithDups,5,ParallelSort,8,124631841000000,NormalDistributionWithDups,5,ParallelSort,9,173143621000000,NormalDistributionWithDups,5,ParallelSort,10,241091131000000,NormalDistributionWithDups,5,ParallelBufferedSort,0,887281000000,NormalDistributionWithDups,5,ParallelBufferedSort,1,1096461000000,NormalDistributionWithDups,5,ParallelBufferedSort,2,2551911000000,NormalDistributionWithDups,5,ParallelBufferedSort,3,7402151000000,NormalDistributionWithDups,5,ParallelBufferedSort,4,15348241000000,NormalDistributionWithDups,5,ParallelBufferedSort,5,28470491000000,NormalDistributionWithDups,5,ParallelBufferedSort,6,48297301000000,NormalDistributionWithDups,5,ParallelBufferedSort,7,75630961000000,NormalDistributionWithDups,5,ParallelBufferedSort,8,106132421000000,NormalDistributionWithDups,5,ParallelBufferedSort,9,150288981000000,NormalDistributionWithDups,5,ParallelBufferedSort,10,203866471000000,NormalDistributionWithDups,5,ParallelRadixSort,0,806451000000,NormalDistributionWithDups,5,ParallelRadixSort,1,1088791000000,NormalDistributionWithDups,5,ParallelRadixSort,2,2700551000000,NormalDistributionWithDups,5,ParallelRadixSort,3,6306951000000,NormalDistributionWithDups,5,ParallelRadixSort,4,13440621000000,NormalDistributionWithDups,5,ParallelRadixSort,5,25036691000000,NormalDistributionWithDups,5,ParallelRadixSort,6,41562261000000,NormalDistributionWithDups,5,ParallelRadixSort,7,70777691000000,NormalDistributionWithDups,5,ParallelRadixSort,8,95898031000000,NormalDistributionWithDups,5,ParallelRadixSort,9,135325341000000,NormalDistributionWithDups,5,ParallelRadixSort,10,198261801000000,NormalDistributionWithDups,5,StdSort,0,3264841000000,NormalDistributionWithDups,5,StdSort,1,4467701000000,NormalDistributionWithDups,5,StdSort,2,12145851000000,NormalDistributionWithDups,5,StdSort,3,36310051000000,NormalDistributionWithDups,5,StdSort,4,75563021000000,NormalDistributionWithDups,5,StdSort,5,139899171000000,NormalDistributionWithDups,5,StdSort,6,236060661000000,NormalDistributionWithDups,5,StdSort,7,370486061000000,NormalDistributionWithDups,5,StdSort,8,548912551000000,NormalDistributionWithDups,5,StdSort,9,778212961000000,NormalDistributionWithDups,5,StdSort,10,1064804731000000,NormalDistributionWithDups,6,ParallelSort,0,874591000000,NormalDistributionWithDups,6,ParallelSort,1,1076991000000,NormalDistributionWithDups,6,ParallelSort,2,2561001000000,NormalDistributionWithDups,6,ParallelSort,3,7333581000000,NormalDistributionWithDups,6,ParallelSort,4,15412021000000,NormalDistributionWithDups,6,ParallelSort,5,28817901000000,NormalDistributionWithDups,6,ParallelSort,6,48797881000000,NormalDistributionWithDups,6,ParallelSort,7,76314131000000,NormalDistributionWithDups,6,ParallelSort,8,113224561000000,NormalDistributionWithDups,6,ParallelSort,9,159798881000000,NormalDistributionWithDups,6,ParallelSort,10,219473661000000,NormalDistributionWithDups,6,ParallelBufferedSort,0,793841000000,NormalDistributionWithDups,6,ParallelBufferedSort,1,950801000000,NormalDistributionWithDups,6,ParallelBufferedSort,2,2206471000000,NormalDistributionWithDups,6,ParallelBufferedSort,3,6364361000000,NormalDistributionWithDups,6,ParallelBufferedSort,4,13077141000000,NormalDistributionWithDups,6,ParallelBufferedSort,5,23111311000000,NormalDistributionWithDups,6,ParallelBufferedSort,6,40861641000000,NormalDistributionWithDups,6,ParallelBufferedSort,7,61481451000000,NormalDistributionWithDups,6,ParallelBufferedSort,8,94998781000000,NormalDistributionWithDups,6,ParallelBufferedSort,9,126223301000000,NormalDistributionWithDups,6,ParallelBufferedSort,10,173999811000000,NormalDistributionWithDups,6,ParallelRadixSort,0,752491000000,NormalDistributionWithDups,6,ParallelRadixSort,1,970451000000,NormalDistributionWithDups,6,ParallelRadixSort,2,1972711000000,NormalDistributionWithDups,6,ParallelRadixSort,3,5398121000000,NormalDistributionWithDups,6,ParallelRadixSort,4,11194331000000,NormalDistributionWithDups,6,ParallelRadixSort,5,20772301000000,NormalDistributionWithDups,6,ParallelRadixSort,6,35288281000000,NormalDistributionWithDups,6,ParallelRadixSort,7,54888821000000,NormalDistributionWithDups,6,ParallelRadixSort,8,81699851000000,NormalDistributionWithDups,6,ParallelRadixSort,9,115790061000000,NormalDistributionWithDups,6,ParallelRadixSort,10,158305531000000,NormalDistributionWithDups,6,StdSort,0,3214711000000,NormalDistributionWithDups,6,StdSort,1,4401831000000,NormalDistributionWithDups,6,StdSort,2,11952501000000,NormalDistributionWithDups,6,StdSort,3,35722821000000,NormalDistributionWithDups,6,StdSort,4,74293401000000,NormalDistributionWithDups,6,StdSort,5,137554171000000,NormalDistributionWithDups,6,StdSort,6,232147441000000,NormalDistributionWithDups,6,StdSort,7,364279731000000,NormalDistributionWithDups,6,StdSort,8,539785181000000,NormalDistributionWithDups,6,StdSort,9,765334051000000,NormalDistributionWithDups,6,StdSort,10,1047185861000000,NormalDistributionWithDups,7,ParallelSort,0,832621000000,NormalDistributionWithDups,7,ParallelSort,1,1043061000000,NormalDistributionWithDups,7,ParallelSort,2,2434261000000,NormalDistributionWithDups,7,ParallelSort,3,7110381000000,NormalDistributionWithDups,7,ParallelSort,4,14770261000000,NormalDistributionWithDups,7,ParallelSort,5,27832621000000,NormalDistributionWithDups,7,ParallelSort,6,47471531000000,NormalDistributionWithDups,7,ParallelSort,7,74911771000000,NormalDistributionWithDups,7,ParallelSort,8,109784971000000,NormalDistributionWithDups,7,ParallelSort,9,155878851000000,NormalDistributionWithDups,7,ParallelSort,10,213566041000000,NormalDistributionWithDups,7,ParallelBufferedSort,0,723951000000,NormalDistributionWithDups,7,ParallelBufferedSort,1,854301000000,NormalDistributionWithDups,7,ParallelBufferedSort,2,1979761000000,NormalDistributionWithDups,7,ParallelBufferedSort,3,5659901000000,NormalDistributionWithDups,7,ParallelBufferedSort,4,11758841000000,NormalDistributionWithDups,7,ParallelBufferedSort,5,21861661000000,NormalDistributionWithDups,7,ParallelBufferedSort,6,36649271000000,NormalDistributionWithDups,7,ParallelBufferedSort,7,58009521000000,NormalDistributionWithDups,7,ParallelBufferedSort,8,85251451000000,NormalDistributionWithDups,7,ParallelBufferedSort,9,117929391000000,NormalDistributionWithDups,7,ParallelBufferedSort,10,161494391000000,NormalDistributionWithDups,7,ParallelRadixSort,0,725531000000,NormalDistributionWithDups,7,ParallelRadixSort,1,934741000000,NormalDistributionWithDups,7,ParallelRadixSort,2,1901821000000,NormalDistributionWithDups,7,ParallelRadixSort,3,4858271000000,NormalDistributionWithDups,7,ParallelRadixSort,4,10379131000000,NormalDistributionWithDups,7,ParallelRadixSort,5,19027831000000,NormalDistributionWithDups,7,ParallelRadixSort,6,31964081000000,NormalDistributionWithDups,7,ParallelRadixSort,7,51016581000000,NormalDistributionWithDups,7,ParallelRadixSort,8,73679811000000,NormalDistributionWithDups,7,ParallelRadixSort,9,103376791000000,NormalDistributionWithDups,7,ParallelRadixSort,10,141329291000000,NormalDistributionWithDups,7,StdSort,0,3194151000000,NormalDistributionWithDups,7,StdSort,1,4364841000000,NormalDistributionWithDups,7,StdSort,2,11839241000000,NormalDistributionWithDups,7,StdSort,3,35436541000000,NormalDistributionWithDups,7,StdSort,4,73681341000000,NormalDistributionWithDups,7,StdSort,5,136438041000000,NormalDistributionWithDups,7,StdSort,6,230260551000000,NormalDistributionWithDups,7,StdSort,7,361290861000000,NormalDistributionWithDups,7,StdSort,8,535351501000000,NormalDistributionWithDups,7,StdSort,9,759055991000000,NormalDistributionWithDups,7,StdSort,10,1038597401000000,NormalDistributionWithDups,8,ParallelSort,0,784471000000,NormalDistributionWithDups,8,ParallelSort,1,986941000000,NormalDistributionWithDups,8,ParallelSort,2,2262211000000,NormalDistributionWithDups,8,ParallelSort,3,6521281000000,NormalDistributionWithDups,8,ParallelSort,4,13941061000000,NormalDistributionWithDups,8,ParallelSort,5,26161051000000,NormalDistributionWithDups,8,ParallelSort,6,44046391000000,NormalDistributionWithDups,8,ParallelSort,7,69396321000000,NormalDistributionWithDups,8,ParallelSort,8,102861571000000,NormalDistributionWithDups,8,ParallelSort,9,145532081000000,NormalDistributionWithDups,8,ParallelSort,10,198946621000000,NormalDistributionWithDups,8,ParallelBufferedSort,0,744691000000,NormalDistributionWithDups,8,ParallelBufferedSort,1,900151000000,NormalDistributionWithDups,8,ParallelBufferedSort,2,2000121000000,NormalDistributionWithDups,8,ParallelBufferedSort,3,6004901000000,NormalDistributionWithDups,8,ParallelBufferedSort,4,10797821000000,NormalDistributionWithDups,8,ParallelBufferedSort,5,19920541000000,NormalDistributionWithDups,8,ParallelBufferedSort,6,33521021000000,NormalDistributionWithDups,8,ParallelBufferedSort,7,53366291000000,NormalDistributionWithDups,8,ParallelBufferedSort,8,77812301000000,NormalDistributionWithDups,8,ParallelBufferedSort,9,110950731000000,NormalDistributionWithDups,8,ParallelBufferedSort,10,152348251000000,NormalDistributionWithDups,8,ParallelRadixSort,0,661661000000,NormalDistributionWithDups,8,ParallelRadixSort,1,861861000000,NormalDistributionWithDups,8,ParallelRadixSort,2,1684011000000,NormalDistributionWithDups,8,ParallelRadixSort,3,4508591000000,NormalDistributionWithDups,8,ParallelRadixSort,4,9897371000000,NormalDistributionWithDups,8,ParallelRadixSort,5,17668411000000,NormalDistributionWithDups,8,ParallelRadixSort,6,30139921000000,NormalDistributionWithDups,8,ParallelRadixSort,7,45627361000000,NormalDistributionWithDups,8,ParallelRadixSort,8,67978691000000,NormalDistributionWithDups,8,ParallelRadixSort,9,95206331000000,NormalDistributionWithDups,8,ParallelRadixSort,10,131778151000000,NormalDistributionWithDups,8,StdSort,0,3263681000000,NormalDistributionWithDups,8,StdSort,1,4467181000000,NormalDistributionWithDups,8,StdSort,2,12116341000000,NormalDistributionWithDups,8,StdSort,3,36326261000000,NormalDistributionWithDups,8,StdSort,4,75581131000000,NormalDistributionWithDups,8,StdSort,5,139919681000000,NormalDistributionWithDups,8,StdSort,6,236110321000000,NormalDistributionWithDups,8,StdSort,7,370497221000000,NormalDistributionWithDups,8,StdSort,8,548949851000000,NormalDistributionWithDups,8,StdSort,9,778346381000000,NormalDistributionWithDups,8,StdSort,10,1064879011000000,SawTooth,1,ParallelSort,0,5307181000000,SawTooth,1,ParallelSort,1,7644551000000,SawTooth,1,ParallelSort,2,22055591000000,SawTooth,1,ParallelSort,3,68625641000000,SawTooth,1,ParallelSort,4,144005921000000,SawTooth,1,ParallelSort,5,267664271000000,SawTooth,1,ParallelSort,6,452415271000000,SawTooth,1,ParallelSort,7,710555221000000,SawTooth,1,ParallelSort,8,1053282721000000,SawTooth,1,ParallelSort,9,1493822671000000,SawTooth,1,ParallelSort,10,2044294521000000,SawTooth,1,ParallelBufferedSort,0,5301621000000,SawTooth,1,ParallelBufferedSort,1,7646681000000,SawTooth,1,ParallelBufferedSort,2,22081361000000,SawTooth,1,ParallelBufferedSort,3,68649521000000,SawTooth,1,ParallelBufferedSort,4,144069421000000,SawTooth,1,ParallelBufferedSort,5,267630301000000,SawTooth,1,ParallelBufferedSort,6,452347771000000,SawTooth,1,ParallelBufferedSort,7,710573221000000,SawTooth,1,ParallelBufferedSort,8,1053420481000000,SawTooth,1,ParallelBufferedSort,9,1493952251000000,SawTooth,1,ParallelBufferedSort,10,2044483681000000,SawTooth,1,ParallelRadixSort,0,2122211000000,SawTooth,1,ParallelRadixSort,1,3352751000000,SawTooth,1,ParallelRadixSort,2,8205881000000,SawTooth,1,ParallelRadixSort,3,23857961000000,SawTooth,1,ParallelRadixSort,4,50088561000000,SawTooth,1,ParallelRadixSort,5,93618831000000,SawTooth,1,ParallelRadixSort,6,158251191000000,SawTooth,1,ParallelRadixSort,7,248351331000000,SawTooth,1,ParallelRadixSort,8,368885721000000,SawTooth,1,ParallelRadixSort,9,523180911000000,SawTooth,1,ParallelRadixSort,10,715417541000000,SawTooth,1,StdSort,0,5300131000000,SawTooth,1,StdSort,1,7641541000000,SawTooth,1,StdSort,2,22066961000000,SawTooth,1,StdSort,3,68691781000000,SawTooth,1,StdSort,4,144092731000000,SawTooth,1,StdSort,5,267622501000000,SawTooth,1,StdSort,6,452411491000000,SawTooth,1,StdSort,7,710477561000000,SawTooth,1,StdSort,8,1053268961000000,SawTooth,1,StdSort,9,1493770921000000,SawTooth,1,StdSort,10,2044277021000000,SawTooth,2,ParallelSort,0,2493141000000,SawTooth,2,ParallelSort,1,3645541000000,SawTooth,2,ParallelSort,2,10511031000000,SawTooth,2,ParallelSort,3,32586901000000,SawTooth,2,ParallelSort,4,68606741000000,SawTooth,2,ParallelSort,5,127710991000000,SawTooth,2,ParallelSort,6,216156291000000,SawTooth,2,ParallelSort,7,339671271000000,SawTooth,2,ParallelSort,8,503100721000000,SawTooth,2,ParallelSort,9,713230131000000,SawTooth,2,ParallelSort,10,976086951000000,SawTooth,2,ParallelBufferedSort,0,1652871000000,SawTooth,2,ParallelBufferedSort,1,2352911000000,SawTooth,2,ParallelBufferedSort,2,6647841000000,SawTooth,2,ParallelBufferedSort,3,20220551000000,SawTooth,2,ParallelBufferedSort,4,42431831000000,SawTooth,2,ParallelBufferedSort,5,78814071000000,SawTooth,2,ParallelBufferedSort,6,133220361000000,SawTooth,2,ParallelBufferedSort,7,209213521000000,SawTooth,2,ParallelBufferedSort,8,310291571000000,SawTooth,2,ParallelBufferedSort,9,440267361000000,SawTooth,2,ParallelBufferedSort,10,602428151000000,SawTooth,2,ParallelRadixSort,0,1123561000000,SawTooth,2,ParallelRadixSort,1,1720571000000,SawTooth,2,ParallelRadixSort,2,4150341000000,SawTooth,2,ParallelRadixSort,3,11977621000000,SawTooth,2,ParallelRadixSort,4,25069521000000,SawTooth,2,ParallelRadixSort,5,46863451000000,SawTooth,2,ParallelRadixSort,6,79144791000000,SawTooth,2,ParallelRadixSort,7,124492461000000,SawTooth,2,ParallelRadixSort,8,185132081000000,SawTooth,2,ParallelRadixSort,9,261410531000000,SawTooth,2,ParallelRadixSort,10,357776581000000,SawTooth,2,StdSort,0,5316141000000,SawTooth,2,StdSort,1,7650901000000,SawTooth,2,StdSort,2,22074701000000,SawTooth,2,StdSort,3,68666701000000,SawTooth,2,StdSort,4,144051201000000,SawTooth,2,StdSort,5,267639421000000,SawTooth,2,StdSort,6,452366801000000,SawTooth,2,StdSort,7,710453271000000,SawTooth,2,StdSort,8,1053279191000000,SawTooth,2,StdSort,9,1493735441000000,SawTooth,2,StdSort,10,2044169321000000,SawTooth,3,ParallelSort,0,1940641000000,SawTooth,3,ParallelSort,1,2850611000000,SawTooth,3,ParallelSort,2,8207431000000,SawTooth,3,ParallelSort,3,25580901000000,SawTooth,3,ParallelSort,4,53822101000000,SawTooth,3,ParallelSort,5,100180161000000,SawTooth,3,ParallelSort,6,169817321000000,SawTooth,3,ParallelSort,7,266603421000000,SawTooth,3,ParallelSort,8,395164901000000,SawTooth,3,ParallelSort,9,560526281000000,SawTooth,3,ParallelSort,10,766319641000000,SawTooth,3,ParallelBufferedSort,0,1165231000000,SawTooth,3,ParallelBufferedSort,1,1549581000000,SawTooth,3,ParallelBufferedSort,2,4402241000000,SawTooth,3,ParallelBufferedSort,3,13314081000000,SawTooth,3,ParallelBufferedSort,4,28061861000000,SawTooth,3,ParallelBufferedSort,5,52133401000000,SawTooth,3,ParallelBufferedSort,6,88047111000000,SawTooth,3,ParallelBufferedSort,7,138023441000000,SawTooth,3,ParallelBufferedSort,8,204601351000000,SawTooth,3,ParallelBufferedSort,9,290908061000000,SawTooth,3,ParallelBufferedSort,10,397120581000000,SawTooth,3,ParallelRadixSort,0,1036361000000,SawTooth,3,ParallelRadixSort,1,1598861000000,SawTooth,3,ParallelRadixSort,2,3830521000000,SawTooth,3,ParallelRadixSort,3,10977251000000,SawTooth,3,ParallelRadixSort,4,23007251000000,SawTooth,3,ParallelRadixSort,5,42754641000000,SawTooth,3,ParallelRadixSort,6,54698771000000,SawTooth,3,ParallelRadixSort,7,85720631000000,SawTooth,3,ParallelRadixSort,8,126999421000000,SawTooth,3,ParallelRadixSort,9,184833841000000,SawTooth,3,ParallelRadixSort,10,246476771000000,SawTooth,3,StdSort,0,5300481000000,SawTooth,3,StdSort,1,7640731000000,SawTooth,3,StdSort,2,22057071000000,SawTooth,3,StdSort,3,68740471000000,SawTooth,3,StdSort,4,144076761000000,SawTooth,3,StdSort,5,267630011000000,SawTooth,3,StdSort,6,452319051000000,SawTooth,3,StdSort,7,710415461000000,SawTooth,3,StdSort,8,1053336841000000,SawTooth,3,StdSort,9,1493732701000000,SawTooth,3,StdSort,10,2044100581000000,SawTooth,4,ParallelSort,0,1695761000000,SawTooth,4,ParallelSort,1,2504291000000,SawTooth,4,ParallelSort,2,7176571000000,SawTooth,4,ParallelSort,3,22013981000000,SawTooth,4,ParallelSort,4,46677511000000,SawTooth,4,ParallelSort,5,86808011000000,SawTooth,4,ParallelSort,6,146806331000000,SawTooth,4,ParallelSort,7,227016421000000,SawTooth,4,ParallelSort,8,340474151000000,SawTooth,4,ParallelSort,9,479573331000000,SawTooth,4,ParallelSort,10,659944931000000,SawTooth,4,ParallelBufferedSort,0,1087541000000,SawTooth,4,ParallelBufferedSort,1,1454601000000,SawTooth,4,ParallelBufferedSort,2,3979451000000,SawTooth,4,ParallelBufferedSort,3,11962211000000,SawTooth,4,ParallelBufferedSort,4,25112021000000,SawTooth,4,ParallelBufferedSort,5,46743931000000,SawTooth,4,ParallelBufferedSort,6,78965771000000,SawTooth,4,ParallelBufferedSort,7,124020691000000,SawTooth,4,ParallelBufferedSort,8,183573841000000,SawTooth,4,ParallelBufferedSort,9,260045301000000,SawTooth,4,ParallelBufferedSort,10,355741251000000,SawTooth,4,ParallelRadixSort,0,1035901000000,SawTooth,4,ParallelRadixSort,1,1545341000000,SawTooth,4,ParallelRadixSort,2,3651461000000,SawTooth,4,ParallelRadixSort,3,10458401000000,SawTooth,4,ParallelRadixSort,4,21136541000000,SawTooth,4,ParallelRadixSort,5,29230431000000,SawTooth,4,ParallelRadixSort,6,41648741000000,SawTooth,4,ParallelRadixSort,7,65024281000000,SawTooth,4,ParallelRadixSort,8,95355791000000,SawTooth,4,ParallelRadixSort,9,130054281000000,SawTooth,4,ParallelRadixSort,10,187256451000000,SawTooth,4,StdSort,0,5300111000000,SawTooth,4,StdSort,1,7641151000000,SawTooth,4,StdSort,2,22060671000000,SawTooth,4,StdSort,3,68680351000000,SawTooth,4,StdSort,4,144065141000000,SawTooth,4,StdSort,5,267635061000000,SawTooth,4,StdSort,6,452339481000000,SawTooth,4,StdSort,7,710469751000000,SawTooth,4,StdSort,8,1053273461000000,SawTooth,4,StdSort,9,1493785081000000,SawTooth,4,StdSort,10,2044181821000000,SawTooth,5,ParallelSort,0,1586281000000,SawTooth,5,ParallelSort,1,2332031000000,SawTooth,5,ParallelSort,2,6540741000000,SawTooth,5,ParallelSort,3,20516711000000,SawTooth,5,ParallelSort,4,43214381000000,SawTooth,5,ParallelSort,5,80406711000000,SawTooth,5,ParallelSort,6,134882601000000,SawTooth,5,ParallelSort,7,212184521000000,SawTooth,5,ParallelSort,8,312995001000000,SawTooth,5,ParallelSort,9,444352261000000,SawTooth,5,ParallelSort,10,606696641000000,SawTooth,5,ParallelBufferedSort,0,912751000000,SawTooth,5,ParallelBufferedSort,1,1189121000000,SawTooth,5,ParallelBufferedSort,2,3271481000000,SawTooth,5,ParallelBufferedSort,3,9904031000000,SawTooth,5,ParallelBufferedSort,4,20823381000000,SawTooth,5,ParallelBufferedSort,5,38949101000000,SawTooth,5,ParallelBufferedSort,6,65537041000000,SawTooth,5,ParallelBufferedSort,7,102810121000000,SawTooth,5,ParallelBufferedSort,8,152558241000000,SawTooth,5,ParallelBufferedSort,9,215664391000000,SawTooth,5,ParallelBufferedSort,10,295774201000000,SawTooth,5,ParallelRadixSort,0,563241000000,SawTooth,5,ParallelRadixSort,1,771561000000,SawTooth,5,ParallelRadixSort,2,1767861000000,SawTooth,5,ParallelRadixSort,3,5071671000000,SawTooth,5,ParallelRadixSort,4,10498221000000,SawTooth,5,ParallelRadixSort,5,19603351000000,SawTooth,5,ParallelRadixSort,6,32843521000000,SawTooth,5,ParallelRadixSort,7,51924731000000,SawTooth,5,ParallelRadixSort,8,80106481000000,SawTooth,5,ParallelRadixSort,9,112360711000000,SawTooth,5,ParallelRadixSort,10,146979251000000,SawTooth,5,StdSort,0,5300861000000,SawTooth,5,StdSort,1,7641101000000,SawTooth,5,StdSort,2,22042581000000,SawTooth,5,StdSort,3,68659261000000,SawTooth,5,StdSort,4,144061481000000,SawTooth,5,StdSort,5,267623031000000,SawTooth,5,StdSort,6,452376501000000,SawTooth,5,StdSort,7,710458571000000,SawTooth,5,StdSort,8,1053367941000000,SawTooth,5,StdSort,9,1493735251000000,SawTooth,5,StdSort,10,2044142261000000,SawTooth,6,ParallelSort,0,1493641000000,SawTooth,6,ParallelSort,1,2137731000000,SawTooth,6,ParallelSort,2,6045941000000,SawTooth,6,ParallelSort,3,19248551000000,SawTooth,6,ParallelSort,4,39834881000000,SawTooth,6,ParallelSort,5,73857381000000,SawTooth,6,ParallelSort,6,125080601000000,SawTooth,6,ParallelSort,7,197031021000000,SawTooth,6,ParallelSort,8,287368321000000,SawTooth,6,ParallelSort,9,414076261000000,SawTooth,6,ParallelSort,10,565466041000000,SawTooth,6,ParallelBufferedSort,0,881761000000,SawTooth,6,ParallelBufferedSort,1,1155311000000,SawTooth,6,ParallelBufferedSort,2,3206341000000,SawTooth,6,ParallelBufferedSort,3,9871811000000,SawTooth,6,ParallelBufferedSort,4,19845061000000,SawTooth,6,ParallelBufferedSort,5,36513661000000,SawTooth,6,ParallelBufferedSort,6,61643291000000,SawTooth,6,ParallelBufferedSort,7,96853561000000,SawTooth,6,ParallelBufferedSort,8,143629541000000,SawTooth,6,ParallelBufferedSort,9,203575131000000,SawTooth,6,ParallelBufferedSort,10,278231641000000,SawTooth,6,ParallelRadixSort,0,487821000000,SawTooth,6,ParallelRadixSort,1,663351000000,SawTooth,6,ParallelRadixSort,2,1446741000000,SawTooth,6,ParallelRadixSort,3,4117251000000,SawTooth,6,ParallelRadixSort,4,8531821000000,SawTooth,6,ParallelRadixSort,5,15834361000000,SawTooth,6,ParallelRadixSort,6,26751671000000,SawTooth,6,ParallelRadixSort,7,42067721000000,SawTooth,6,ParallelRadixSort,8,62587771000000,SawTooth,6,ParallelRadixSort,9,88422771000000,SawTooth,6,ParallelRadixSort,10,120796921000000,SawTooth,6,StdSort,0,5300431000000,SawTooth,6,StdSort,1,7640581000000,SawTooth,6,StdSort,2,22045241000000,SawTooth,6,StdSort,3,68674681000000,SawTooth,6,StdSort,4,144072521000000,SawTooth,6,StdSort,5,267643261000000,SawTooth,6,StdSort,6,452350621000000,SawTooth,6,StdSort,7,710453421000000,SawTooth,6,StdSort,8,1053266381000000,SawTooth,6,StdSort,9,1493727231000000,SawTooth,6,StdSort,10,2044144181000000,SawTooth,7,ParallelSort,0,1398171000000,SawTooth,7,ParallelSort,1,2052041000000,SawTooth,7,ParallelSort,2,5801671000000,SawTooth,7,ParallelSort,3,17903141000000,SawTooth,7,ParallelSort,4,38608481000000,SawTooth,7,ParallelSort,5,70783941000000,SawTooth,7,ParallelSort,6,118914721000000,SawTooth,7,ParallelSort,7,188351401000000,SawTooth,7,ParallelSort,8,277138811000000,SawTooth,7,ParallelSort,9,392691191000000,SawTooth,7,ParallelSort,10,542492271000000,SawTooth,7,ParallelBufferedSort,0,797071000000,SawTooth,7,ParallelBufferedSort,1,1116091000000,SawTooth,7,ParallelBufferedSort,2,3028041000000,SawTooth,7,ParallelBufferedSort,3,9086031000000,SawTooth,7,ParallelBufferedSort,4,18824441000000,SawTooth,7,ParallelBufferedSort,5,29798561000000,SawTooth,7,ParallelBufferedSort,6,50449691000000,SawTooth,7,ParallelBufferedSort,7,79152491000000,SawTooth,7,ParallelBufferedSort,8,114822671000000,SawTooth,7,ParallelBufferedSort,9,165992921000000,SawTooth,7,ParallelBufferedSort,10,221435571000000,SawTooth,7,ParallelRadixSort,0,459971000000,SawTooth,7,ParallelRadixSort,1,681061000000,SawTooth,7,ParallelRadixSort,2,1305471000000,SawTooth,7,ParallelRadixSort,3,3612891000000,SawTooth,7,ParallelRadixSort,4,7555331000000,SawTooth,7,ParallelRadixSort,5,14059251000000,SawTooth,7,ParallelRadixSort,6,23769701000000,SawTooth,7,ParallelRadixSort,7,37170931000000,SawTooth,7,ParallelRadixSort,8,54290991000000,SawTooth,7,ParallelRadixSort,9,76757601000000,SawTooth,7,ParallelRadixSort,10,104910721000000,SawTooth,7,StdSort,0,5402071000000,SawTooth,7,StdSort,1,7651181000000,SawTooth,7,StdSort,2,22082041000000,SawTooth,7,StdSort,3,68660701000000,SawTooth,7,StdSort,4,144053041000000,SawTooth,7,StdSort,5,267639341000000,SawTooth,7,StdSort,6,452356321000000,SawTooth,7,StdSort,7,710432051000000,SawTooth,7,StdSort,8,1053262621000000,SawTooth,7,StdSort,9,1493741791000000,SawTooth,7,StdSort,10,2044143701000000,SawTooth,8,ParallelSort,0,1334381000000,SawTooth,8,ParallelSort,1,1929941000000,SawTooth,8,ParallelSort,2,5681431000000,SawTooth,8,ParallelSort,3,17851221000000,SawTooth,8,ParallelSort,4,37046371000000,SawTooth,8,ParallelSort,5,68251571000000,SawTooth,8,ParallelSort,6,117137331000000,SawTooth,8,ParallelSort,7,184251791000000,SawTooth,8,ParallelSort,8,272812631000000,SawTooth,8,ParallelSort,9,387389591000000,SawTooth,8,ParallelSort,10,533684381000000,SawTooth,8,ParallelBufferedSort,0,449321000000,SawTooth,8,ParallelBufferedSort,1,561191000000,SawTooth,8,ParallelBufferedSort,2,1442001000000,SawTooth,8,ParallelBufferedSort,3,4331941000000,SawTooth,8,ParallelBufferedSort,4,8919961000000,SawTooth,8,ParallelBufferedSort,5,16390461000000,SawTooth,8,ParallelBufferedSort,6,27623211000000,SawTooth,8,ParallelBufferedSort,7,43270071000000,SawTooth,8,ParallelBufferedSort,8,64084421000000,SawTooth,8,ParallelBufferedSort,9,90913571000000,SawTooth,8,ParallelBufferedSort,10,125038521000000,SawTooth,8,ParallelRadixSort,0,415941000000,SawTooth,8,ParallelRadixSort,1,553101000000,SawTooth,8,ParallelRadixSort,2,1286531000000,SawTooth,8,ParallelRadixSort,3,3320151000000,SawTooth,8,ParallelRadixSort,4,7203321000000,SawTooth,8,ParallelRadixSort,5,12761241000000,SawTooth,8,ParallelRadixSort,6,21624781000000,SawTooth,8,ParallelRadixSort,7,33332191000000,SawTooth,8,ParallelRadixSort,8,49999401000000,SawTooth,8,ParallelRadixSort,9,67585061000000,SawTooth,8,ParallelRadixSort,10,93239731000000,SawTooth,8,StdSort,0,5496391000000,SawTooth,8,StdSort,1,7667701000000,SawTooth,8,StdSort,2,22064431000000,SawTooth,8,StdSort,3,68679341000000,SawTooth,8,StdSort,4,144074411000000,SawTooth,8,StdSort,5,267645821000000,SawTooth,8,StdSort,6,452344101000000,SawTooth,8,StdSort,7,710457611000000,SawTooth,8,StdSort,8,1053255841000000,SawTooth,8,StdSort,9,1493728341000000,SawTooth,8,StdSort,10,204420450