How to pick your parallel sort?

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.)

Observation:

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:

 2

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.

3 

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.  

Conclusion:

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.

Code + Data:

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;
}


 

2. Raw data generated by the code in this experiment:

 NumElements,DataSetCharacteristics,Concurrency,SortType,WorkInComparator,Performance
10,Random,1,ParallelSort,0,1
10,Random,1,ParallelSort,1,2
10,Random,1,ParallelSort,2,3
10,Random,1,ParallelSort,3,7
10,Random,1,ParallelSort,4,14
10,Random,1,ParallelSort,5,25
10,Random,1,ParallelSort,6,42
10,Random,1,ParallelSort,7,65
10,Random,1,ParallelSort,8,96
10,Random,1,ParallelSort,9,135
10,Random,1,ParallelSort,10,185
10,Random,1,ParallelBufferedSort,0,1
10,Random,1,ParallelBufferedSort,1,2
10,Random,1,ParallelBufferedSort,2,3
10,Random,1,ParallelBufferedSort,3,7
10,Random,1,ParallelBufferedSort,4,14
10,Random,1,ParallelBufferedSort,5,25
10,Random,1,ParallelBufferedSort,6,42
10,Random,1,ParallelBufferedSort,7,66
10,Random,1,ParallelBufferedSort,8,96
10,Random,1,ParallelBufferedSort,9,136
10,Random,1,ParallelBufferedSort,10,185
10,Random,1,ParallelRadixSort,0,22
10,Random,1,ParallelRadixSort,1,24
10,Random,1,ParallelRadixSort,2,31
10,Random,1,ParallelRadixSort,3,52
10,Random,1,ParallelRadixSort,4,88
10,Random,1,ParallelRadixSort,5,147
10,Random,1,ParallelRadixSort,6,235
10,Random,1,ParallelRadixSort,7,359
10,Random,1,ParallelRadixSort,8,524
10,Random,1,ParallelRadixSort,9,733
10,Random,1,ParallelRadixSort,10,1004
10,Random,1,StdSort,0,1
10,Random,1,StdSort,1,1
10,Random,1,StdSort,2,3
10,Random,1,StdSort,3,6
10,Random,1,StdSort,4,13
10,Random,1,StdSort,5,24
10,Random,1,StdSort,6,40
10,Random,1,StdSort,7,63
10,Random,1,StdSort,8,92
10,Random,1,StdSort,9,131
10,Random,1,StdSort,10,179
10,Random,2,ParallelSort,0,2
10,Random,2,ParallelSort,1,2
10,Random,2,ParallelSort,2,3
10,Random,2,ParallelSort,3,5
10,Random,2,ParallelSort,4,9
10,Random,2,ParallelSort,5,15
10,Random,2,ParallelSort,6,26
10,Random,2,ParallelSort,7,40
10,Random,2,ParallelSort,8,59
10,Random,2,ParallelSort,9,83
10,Random,2,ParallelSort,10,111
10,Random,2,ParallelBufferedSort,0,1
10,Random,2,ParallelBufferedSort,1,2
10,Random,2,ParallelBufferedSort,2,3
10,Random,2,ParallelBufferedSort,3,5
10,Random,2,ParallelBufferedSort,4,9
10,Random,2,ParallelBufferedSort,5,16
10,Random,2,ParallelBufferedSort,6,26
10,Random,2,ParallelBufferedSort,7,40
10,Random,2,ParallelBufferedSort,8,59
10,Random,2,ParallelBufferedSort,9,83
10,Random,2,ParallelBufferedSort,10,113
10,Random,2,ParallelRadixSort,0,48
10,Random,2,ParallelRadixSort,1,49
10,Random,2,ParallelRadixSort,2,56
10,Random,2,ParallelRadixSort,3,79
10,Random,2,ParallelRadixSort,4,116
10,Random,2,ParallelRadixSort,5,180
10,Random,2,ParallelRadixSort,6,264
10,Random,2,ParallelRadixSort,7,386
10,Random,2,ParallelRadixSort,8,562
10,Random,2,ParallelRadixSort,9,759
10,Random,2,ParallelRadixSort,10,1000
10,Random,2,StdSort,0,1
10,Random,2,StdSort,1,1
10,Random,2,StdSort,2,2
10,Random,2,StdSort,3,4
10,Random,2,StdSort,4,8
10,Random,2,StdSort,5,14
10,Random,2,StdSort,6,24
10,Random,2,StdSort,7,37
10,Random,2,StdSort,8,55
10,Random,2,StdSort,9,78
10,Random,2,StdSort,10,107
10,Random,3,ParallelSort,0,2
10,Random,3,ParallelSort,1,2
10,Random,3,ParallelSort,2,3
10,Random,3,ParallelSort,3,7
10,Random,3,ParallelSort,4,14
10,Random,3,ParallelSort,5,24
10,Random,3,ParallelSort,6,41
10,Random,3,ParallelSort,7,63
10,Random,3,ParallelSort,8,93
10,Random,3,ParallelSort,9,131
10,Random,3,ParallelSort,10,181
10,Random,3,ParallelBufferedSort,0,1
10,Random,3,ParallelBufferedSort,1,2
10,Random,3,ParallelBufferedSort,2,3
10,Random,3,ParallelBufferedSort,3,7
10,Random,3,ParallelBufferedSort,4,13
10,Random,3,ParallelBufferedSort,5,24
10,Random,3,ParallelBufferedSort,6,40
10,Random,3,ParallelBufferedSort,7,63
10,Random,3,ParallelBufferedSort,8,94
10,Random,3,ParallelBufferedSort,9,132
10,Random,3,ParallelBufferedSort,10,179
10,Random,3,ParallelRadixSort,0,72
10,Random,3,ParallelRadixSort,1,70
10,Random,3,ParallelRadixSort,2,84
10,Random,3,ParallelRadixSort,3,100
10,Random,3,ParallelRadixSort,4,145
10,Random,3,ParallelRadixSort,5,201
10,Random,3,ParallelRadixSort,6,285
10,Random,3,ParallelRadixSort,7,410
10,Random,3,ParallelRadixSort,8,576
10,Random,3,ParallelRadixSort,9,779
10,Random,3,ParallelRadixSort,10,1040
10,Random,3,StdSort,0,1
10,Random,3,StdSort,1,1
10,Random,3,StdSort,2,2
10,Random,3,StdSort,3,7
10,Random,3,StdSort,4,14
10,Random,3,StdSort,5,23
10,Random,3,StdSort,6,39
10,Random,3,StdSort,7,60
10,Random,3,StdSort,8,90
10,Random,3,StdSort,9,127
10,Random,3,StdSort,10,173
10,Random,4,ParallelSort,0,2
10,Random,4,ParallelSort,1,2
10,Random,4,ParallelSort,2,4
10,Random,4,ParallelSort,3,7
10,Random,4,ParallelSort,4,15
10,Random,4,ParallelSort,5,27
10,Random,4,ParallelSort,6,45
10,Random,4,ParallelSort,7,71
10,Random,4,ParallelSort,8,105
10,Random,4,ParallelSort,9,148
10,Random,4,ParallelSort,10,201
10,Random,4,ParallelBufferedSort,0,1
10,Random,4,ParallelBufferedSort,1,2
10,Random,4,ParallelBufferedSort,2,3
10,Random,4,ParallelBufferedSort,3,7
10,Random,4,ParallelBufferedSort,4,15
10,Random,4,ParallelBufferedSort,5,27
10,Random,4,ParallelBufferedSort,6,46
10,Random,4,ParallelBufferedSort,7,72
10,Random,4,ParallelBufferedSort,8,104
10,Random,4,ParallelBufferedSort,9,148
10,Random,4,ParallelBufferedSort,10,201
10,Random,4,ParallelRadixSort,0,101
10,Random,4,ParallelRadixSort,1,113
10,Random,4,ParallelRadixSort,2,108
10,Random,4,ParallelRadixSort,3,125
10,Random,4,ParallelRadixSort,4,165
10,Random,4,ParallelRadixSort,5,228
10,Random,4,ParallelRadixSort,6,318
10,Random,4,ParallelRadixSort,7,451
10,Random,4,ParallelRadixSort,8,596
10,Random,4,ParallelRadixSort,9,802
10,Random,4,ParallelRadixSort,10,1057
10,Random,4,StdSort,0,1
10,Random,4,StdSort,1,1
10,Random,4,StdSort,2,3
10,Random,4,StdSort,3,7
10,Random,4,StdSort,4,14
10,Random,4,StdSort,5,26
10,Random,4,StdSort,6,50
10,Random,4,StdSort,7,72
10,Random,4,StdSort,8,101
10,Random,4,StdSort,9,143
10,Random,4,StdSort,10,196
10,Random,5,ParallelSort,0,2
10,Random,5,ParallelSort,1,2
10,Random,5,ParallelSort,2,3
10,Random,5,ParallelSort,3,7
10,Random,5,ParallelSort,4,14
10,Random,5,ParallelSort,5,26
10,Random,5,ParallelSort,6,42
10,Random,5,ParallelSort,7,65
10,Random,5,ParallelSort,8,96
10,Random,5,ParallelSort,9,135
10,Random,5,ParallelSort,10,185
10,Random,5,ParallelBufferedSort,0,2
10,Random,5,ParallelBufferedSort,1,2
10,Random,5,ParallelBufferedSort,2,3
10,Random,5,ParallelBufferedSort,3,7
10,Random,5,ParallelBufferedSort,4,14
10,Random,5,ParallelBufferedSort,5,26
10,Random,5,ParallelBufferedSort,6,42
10,Random,5,ParallelBufferedSort,7,65
10,Random,5,ParallelBufferedSort,8,96
10,Random,5,ParallelBufferedSort,9,135
10,Random,5,ParallelBufferedSort,10,185
10,Random,5,ParallelRadixSort,0,854
10,Random,5,ParallelRadixSort,1,148
10,Random,5,ParallelRadixSort,2,124
10,Random,5,ParallelRadixSort,3,145
10,Random,5,ParallelRadixSort,4,260
10,Random,5,ParallelRadixSort,5,250
10,Random,5,ParallelRadixSort,6,372
10,Random,5,ParallelRadixSort,7,463
10,Random,5,ParallelRadixSort,8,633
10,Random,5,ParallelRadixSort,9,828
10,Random,5,ParallelRadixSort,10,1084
10,Random,5,StdSort,0,1
10,Random,5,StdSort,1,1
10,Random,5,StdSort,2,2
10,Random,5,StdSort,3,6
10,Random,5,StdSort,4,13
10,Random,5,StdSort,5,26
10,Random,5,StdSort,6,43
10,Random,5,StdSort,7,73
10,Random,5,StdSort,8,103
10,Random,5,StdSort,9,144
10,Random,5,StdSort,10,179
10,Random,6,ParallelSort,0,1
10,Random,6,ParallelSort,1,2
10,Random,6,ParallelSort,2,4
10,Random,6,ParallelSort,3,9
10,Random,6,ParallelSort,4,17
10,Random,6,ParallelSort,5,31
10,Random,6,ParallelSort,6,51
10,Random,6,ParallelSort,7,80
10,Random,6,ParallelSort,8,119
10,Random,6,ParallelSort,9,168
10,Random,6,ParallelSort,10,228
10,Random,6,ParallelBufferedSort,0,2
10,Random,6,ParallelBufferedSort,1,2
10,Random,6,ParallelBufferedSort,2,4
10,Random,6,ParallelBufferedSort,3,8
10,Random,6,ParallelBufferedSort,4,17
10,Random,6,ParallelBufferedSort,5,31
10,Random,6,ParallelBufferedSort,6,51
10,Random,6,ParallelBufferedSort,7,81
10,Random,6,ParallelBufferedSort,8,119
10,Random,6,ParallelBufferedSort,9,168
10,Random,6,ParallelBufferedSort,10,230
10,Random,6,ParallelRadixSort,0,1043
10,Random,6,ParallelRadixSort,1,511
10,Random,6,ParallelRadixSort,2,401
10,Random,6,ParallelRadixSort,3,476
10,Random,6,ParallelRadixSort,4,839
10,Random,6,ParallelRadixSort,5,560
10,Random,6,ParallelRadixSort,6,331
10,Random,6,ParallelRadixSort,7,594
10,Random,6,ParallelRadixSort,8,593
10,Random,6,ParallelRadixSort,9,796
10,Random,6,ParallelRadixSort,10,1259
10,Random,6,StdSort,0,1
10,Random,6,StdSort,1,1
10,Random,6,StdSort,2,3
10,Random,6,StdSort,3,8
10,Random,6,StdSort,4,16
10,Random,6,StdSort,5,29
10,Random,6,StdSort,6,50
10,Random,6,StdSort,7,82
10,Random,6,StdSort,8,132
10,Random,6,StdSort,9,185
10,Random,6,StdSort,10,223
10,Random,7,ParallelSort,0,2
10,Random,7,ParallelSort,1,2
10,Random,7,ParallelSort,2,3
10,Random,7,ParallelSort,3,8
10,Random,7,ParallelSort,4,15
10,Random,7,ParallelSort,5,30
10,Random,7,ParallelSort,6,45
10,Random,7,ParallelSort,7,71
10,Random,7,ParallelSort,8,104
10,Random,7,ParallelSort,9,147
10,Random,7,ParallelSort,10,202
10,Random,7,ParallelBufferedSort,0,2
10,Random,7,ParallelBufferedSort,1,1
10,Random,7,ParallelBufferedSort,2,3
10,Random,7,ParallelBufferedSort,3,8
10,Random,7,ParallelBufferedSort,4,15
10,Random,7,ParallelBufferedSort,5,27
10,Random,7,ParallelBufferedSort,6,45
10,Random,7,ParallelBufferedSort,7,71
10,Random,7,ParallelBufferedSort,8,105
10,Random,7,ParallelBufferedSort,9,148
10,Random,7,ParallelBufferedSort,10,203
10,Random,7,ParallelRadixSort,0,1253
10,Random,7,ParallelRadixSort,1,1006
10,Random,7,ParallelRadixSort,2,1189
10,Random,7,ParallelRadixSort,3,1058
10,Random,7,ParallelRadixSort,4,976
10,Random,7,ParallelRadixSort,5,733
10,Random,7,ParallelRadixSort,6,1011
10,Random,7,ParallelRadixSort,7,679
10,Random,7,ParallelRadixSort,8,1056
10,Random,7,ParallelRadixSort,9,1055
10,Random,7,ParallelRadixSort,10,1362
10,Random,7,StdSort,0,1
10,Random,7,StdSort,1,1
10,Random,7,StdSort,2,2
10,Random,7,StdSort,3,7
10,Random,7,StdSort,4,14
10,Random,7,StdSort,5,26
10,Random,7,StdSort,6,44
10,Random,7,StdSort,7,68
10,Random,7,StdSort,8,101
10,Random,7,StdSort,9,146
10,Random,7,StdSort,10,197
10,Random,8,ParallelSort,0,2
10,Random,8,ParallelSort,1,2
10,Random,8,ParallelSort,2,3
10,Random,8,ParallelSort,3,6
10,Random,8,ParallelSort,4,12
10,Random,8,ParallelSort,5,22
10,Random,8,ParallelSort,6,37
10,Random,8,ParallelSort,7,57
10,Random,8,ParallelSort,8,84
10,Random,8,ParallelSort,9,119
10,Random,8,ParallelSort,10,162
10,Random,8,ParallelBufferedSort,0,2
10,Random,8,ParallelBufferedSort,1,2
10,Random,8,ParallelBufferedSort,2,3
10,Random,8,ParallelBufferedSort,3,6
10,Random,8,ParallelBufferedSort,4,12
10,Random,8,ParallelBufferedSort,5,22
10,Random,8,ParallelBufferedSort,6,37
10,Random,8,ParallelBufferedSort,7,57
10,Random,8,ParallelBufferedSort,8,85
10,Random,8,ParallelBufferedSort,9,119
10,Random,8,ParallelBufferedSort,10,163
10,Random,8,ParallelRadixSort,0,1364
10,Random,8,ParallelRadixSort,1,845
10,Random,8,ParallelRadixSort,2,1284
10,Random,8,ParallelRadixSort,3,1076
10,Random,8,ParallelRadixSort,4,1413
10,Random,8,ParallelRadixSort,5,1337
10,Random,8,ParallelRadixSort,6,1491
10,Random,8,ParallelRadixSort,7,1509
10,Random,8,ParallelRadixSort,8,1290
10,Random,8,ParallelRadixSort,9,1431
10,Random,8,ParallelRadixSort,10,1411
10,Random,8,StdSort,0,1
10,Random,8,StdSort,1,1
10,Random,8,StdSort,2,3
10,Random,8,StdSort,3,6
10,Random,8,StdSort,4,12
10,Random,8,StdSort,5,21
10,Random,8,StdSort,6,35
10,Random,8,StdSort,7,55
10,Random,8,StdSort,8,81
10,Random,8,StdSort,9,115
10,Random,8,StdSort,10,156
10,PreSorted,1,ParallelSort,0,2
10,PreSorted,1,ParallelSort,1,1
10,PreSorted,1,ParallelSort,2,2
10,PreSorted,1,ParallelSort,3,4
10,PreSorted,1,ParallelSort,4,8
10,PreSorted,1,ParallelSort,5,15
10,PreSorted,1,ParallelSort,6,25
10,PreSorted,1,ParallelSort,7,40
10,PreSorted,1,ParallelSort,8,62
10,PreSorted,1,ParallelSort,9,81
10,PreSorted,1,ParallelSort,10,106
10,PreSorted,1,ParallelBufferedSort,0,1
10,PreSorted,1,ParallelBufferedSort,1,1
10,PreSorted,1,ParallelBufferedSort,2,2
10,PreSorted,1,ParallelBufferedSort,3,4
10,PreSorted,1,ParallelBufferedSort,4,8
10,PreSorted,1,ParallelBufferedSort,5,14
10,PreSorted,1,ParallelBufferedSort,6,24
10,PreSorted,1,ParallelBufferedSort,7,38
10,PreSorted,1,ParallelBufferedSort,8,56
10,PreSorted,1,ParallelBufferedSort,9,79
10,PreSorted,1,ParallelBufferedSort,10,107
10,PreSorted,1,ParallelRadixSort,0,22
10,PreSorted,1,ParallelRadixSort,1,24
10,PreSorted,1,ParallelRadixSort,2,31
10,PreSorted,1,ParallelRadixSort,3,52
10,PreSorted,1,ParallelRadixSort,4,89
10,PreSorted,1,ParallelRadixSort,5,148
10,PreSorted,1,ParallelRadixSort,6,239
10,PreSorted,1,ParallelRadixSort,7,365
10,PreSorted,1,ParallelRadixSort,8,530
10,PreSorted,1,ParallelRadixSort,9,745
10,PreSorted,1,ParallelRadixSort,10,1016
10,PreSorted,1,StdSort,0,1
10,PreSorted,1,StdSort,1,1
10,PreSorted,1,StdSort,2,2
10,PreSorted,1,StdSort,3,4
10,PreSorted,1,StdSort,4,8
10,PreSorted,1,StdSort,5,15
10,PreSorted,1,StdSort,6,23
10,PreSorted,1,StdSort,7,35
10,PreSorted,1,StdSort,8,52
10,PreSorted,1,StdSort,9,74
10,PreSorted,1,StdSort,10,101
10,PreSorted,2,ParallelSort,0,1
10,PreSorted,2,ParallelSort,1,1
10,PreSorted,2,ParallelSort,2,2
10,PreSorted,2,ParallelSort,3,4
10,PreSorted,2,ParallelSort,4,8
10,PreSorted,2,ParallelSort,5,14
10,PreSorted,2,ParallelSort,6,24
10,PreSorted,2,ParallelSort,7,37
10,PreSorted,2,ParallelSort,8,55
10,PreSorted,2,ParallelSort,9,78
10,PreSorted,2,ParallelSort,10,108
10,PreSorted,2,ParallelBufferedSort,0,1
10,PreSorted,2,ParallelBufferedSort,1,1
10,PreSorted,2,ParallelBufferedSort,2,2
10,PreSorted,2,ParallelBufferedSort,3,4
10,PreSorted,2,ParallelBufferedSort,4,8
10,PreSorted,2,ParallelBufferedSort,5,15
10,PreSorted,2,ParallelBufferedSort,6,24
10,PreSorted,2,ParallelBufferedSort,7,38
10,PreSorted,2,ParallelBufferedSort,8,56
10,PreSorted,2,ParallelBufferedSort,9,79
10,PreSorted,2,ParallelBufferedSort,10,107
10,PreSorted,2,ParallelRadixSort,0,48
10,PreSorted,2,ParallelRadixSort,1,45
10,PreSorted,2,ParallelRadixSort,2,53
10,PreSorted,2,ParallelRadixSort,3,73
10,PreSorted,2,ParallelRadixSort,4,112
10,PreSorted,2,ParallelRadixSort,5,169
10,PreSorted,2,ParallelRadixSort,6,259
10,PreSorted,2,ParallelRadixSort,7,383
10,PreSorted,2,ParallelRadixSort,8,540
10,PreSorted,2,ParallelRadixSort,9,738
10,PreSorted,2,ParallelRadixSort,10,1028
10,PreSorted,2,StdSort,0,0
10,PreSorted,2,StdSort,1,1
10,PreSorted,2,StdSort,2,1
10,PreSorted,2,StdSort,3,3
10,PreSorted,2,StdSort,4,8
10,PreSorted,2,StdSort,5,13
10,PreSorted,2,StdSort,6,23
10,PreSorted,2,StdSort,7,35
10,PreSorted,2,StdSort,8,52
10,PreSorted,2,StdSort,9,74
10,PreSorted,2,StdSort,10,101
10,PreSorted,3,ParallelSort,0,1
10,PreSorted,3,ParallelSort,1,1
10,PreSorted,3,ParallelSort,2,2
10,PreSorted,3,ParallelSort,3,4
10,PreSorted,3,ParallelSort,4,8
10,PreSorted,3,ParallelSort,5,14
10,PreSorted,3,ParallelSort,6,24
10,PreSorted,3,ParallelSort,7,38
10,PreSorted,3,ParallelSort,8,55
10,PreSorted,3,ParallelSort,9,79
10,PreSorted,3,ParallelSort,10,107
10,PreSorted,3,ParallelBufferedSort,0,1
10,PreSorted,3,ParallelBufferedSort,1,1
10,PreSorted,3,ParallelBufferedSort,2,2
10,PreSorted,3,ParallelBufferedSort,3,4
10,PreSorted,3,ParallelBufferedSort,4,8
10,PreSorted,3,ParallelBufferedSort,5,14
10,PreSorted,3,ParallelBufferedSort,6,24
10,PreSorted,3,ParallelBufferedSort,7,37
10,PreSorted,3,ParallelBufferedSort,8,55
10,PreSorted,3,ParallelBufferedSort,9,78
10,PreSorted,3,ParallelBufferedSort,10,107
10,PreSorted,3,ParallelRadixSort,0,73
10,PreSorted,3,ParallelRadixSort,1,71
10,PreSorted,3,ParallelRadixSort,2,85
10,PreSorted,3,ParallelRadixSort,3,97
10,PreSorted,3,ParallelRadixSort,4,141
10,PreSorted,3,ParallelRadixSort,5,195
10,PreSorted,3,ParallelRadixSort,6,280
10,PreSorted,3,ParallelRadixSort,7,409
10,PreSorted,3,ParallelRadixSort,8,577
10,PreSorted,3,ParallelRadixSort,9,776
10,PreSorted,3,ParallelRadixSort,10,1028
10,PreSorted,3,StdSort,0,0
10,PreSorted,3,StdSort,1,1
10,PreSorted,3,StdSort,2,1
10,PreSorted,3,StdSort,3,4
10,PreSorted,3,StdSort,4,7
10,PreSorted,3,StdSort,5,14
10,PreSorted,3,StdSort,6,22
10,PreSorted,3,StdSort,7,35
10,PreSorted,3,StdSort,8,52
10,PreSorted,3,StdSort,9,73
10,PreSorted,3,StdSort,10,100
10,PreSorted,4,ParallelSort,0,1
10,PreSorted,4,ParallelSort,1,1
10,PreSorted,4,ParallelSort,2,2
10,PreSorted,4,ParallelSort,3,4
10,PreSorted,4,ParallelSort,4,8
10,PreSorted,4,ParallelSort,5,14
10,PreSorted,4,ParallelSort,6,24
10,PreSorted,4,ParallelSort,7,37
10,PreSorted,4,ParallelSort,8,55
10,PreSorted,4,ParallelSort,9,78
10,PreSorted,4,ParallelSort,10,107
10,PreSorted,4,ParallelBufferedSort,0,1
10,PreSorted,4,ParallelBufferedSort,1,1
10,PreSorted,4,ParallelBufferedSort,2,2
10,PreSorted,4,ParallelBufferedSort,3,4
10,PreSorted,4,ParallelBufferedSort,4,8
10,PreSorted,4,ParallelBufferedSort,5,14
10,PreSorted,4,ParallelBufferedSort,6,24
10,PreSorted,4,ParallelBufferedSort,7,38
10,PreSorted,4,ParallelBufferedSort,8,55
10,PreSorted,4,ParallelBufferedSort,9,79
10,PreSorted,4,ParallelBufferedSort,10,108
10,PreSorted,4,ParallelRadixSort,0,292
10,PreSorted,4,ParallelRadixSort,1,104
10,PreSorted,4,ParallelRadixSort,2,103
10,PreSorted,4,ParallelRadixSort,3,120
10,PreSorted,4,ParallelRadixSort,4,162
10,PreSorted,4,ParallelRadixSort,5,222
10,PreSorted,4,ParallelRadixSort,6,311
10,PreSorted,4,ParallelRadixSort,7,435
10,PreSorted,4,ParallelRadixSort,8,596
10,PreSorted,4,ParallelRadixSort,9,804
10,PreSorted,4,ParallelRadixSort,10,1058
10,PreSorted,4,StdSort,0,1
10,PreSorted,4,StdSort,1,0
10,PreSorted,4,StdSort,2,1
10,PreSorted,4,StdSort,3,4
10,PreSorted,4,StdSort,4,7
10,PreSorted,4,StdSort,5,14
10,PreSorted,4,StdSort,6,25
10,PreSorted,4,StdSort,7,41
10,PreSorted,4,StdSort,8,60
10,PreSorted,4,StdSort,9,73
10,PreSorted,4,StdSort,10,100
10,PreSorted,5,ParallelSort,0,1
10,PreSorted,5,ParallelSort,1,1
10,PreSorted,5,ParallelSort,2,2
10,PreSorted,5,ParallelSort,3,4
10,PreSorted,5,ParallelSort,4,8
10,PreSorted,5,ParallelSort,5,14
10,PreSorted,5,ParallelSort,6,24
10,PreSorted,5,ParallelSort,7,37
10,PreSorted,5,ParallelSort,8,56
10,PreSorted,5,ParallelSort,9,78
10,PreSorted,5,ParallelSort,10,106
10,PreSorted,5,ParallelBufferedSort,0,1
10,PreSorted,5,ParallelBufferedSort,1,1
10,PreSorted,5,ParallelBufferedSort,2,2
10,PreSorted,5,ParallelBufferedSort,3,4
10,PreSorted,5,ParallelBufferedSort,4,8
10,PreSorted,5,ParallelBufferedSort,5,14
10,PreSorted,5,ParallelBufferedSort,6,25
10,PreSorted,5,ParallelBufferedSort,7,37
10,PreSorted,5,ParallelBufferedSort,8,56
10,PreSorted,5,ParallelBufferedSort,9,78
10,PreSorted,5,ParallelBufferedSort,10,106
10,PreSorted,5,ParallelRadixSort,0,536
10,PreSorted,5,ParallelRadixSort,1,278
10,PreSorted,5,ParallelRadixSort,2,284
10,PreSorted,5,ParallelRadixSort,3,124
10,PreSorted,5,ParallelRadixSort,4,159
10,PreSorted,5,ParallelRadixSort,5,232
10,PreSorted,5,ParallelRadixSort,6,332
10,PreSorted,5,ParallelRadixSort,7,446
10,PreSorted,5,ParallelRadixSort,8,641
10,PreSorted,5,ParallelRadixSort,9,840
10,PreSorted,5,ParallelRadixSort,10,1102
10,PreSorted,5,StdSort,0,0
10,PreSorted,5,StdSort,1,1
10,PreSorted,5,StdSort,2,1
10,PreSorted,5,StdSort,3,4
10,PreSorted,5,StdSort,4,7
10,PreSorted,5,StdSort,5,13
10,PreSorted,5,StdSort,6,23
10,PreSorted,5,StdSort,7,39
10,PreSorted,5,StdSort,8,65
10,PreSorted,5,StdSort,9,84
10,PreSorted,5,StdSort,10,117
10,PreSorted,6,ParallelSort,0,1
10,PreSorted,6,ParallelSort,1,1
10,PreSorted,6,ParallelSort,2,2
10,PreSorted,6,ParallelSort,3,4
10,PreSorted,6,ParallelSort,4,8
10,PreSorted,6,ParallelSort,5,14
10,PreSorted,6,ParallelSort,6,25
10,PreSorted,6,ParallelSort,7,37
10,PreSorted,6,ParallelSort,8,55
10,PreSorted,6,ParallelSort,9,79
10,PreSorted,6,ParallelSort,10,106
10,PreSorted,6,ParallelBufferedSort,0,1
10,PreSorted,6,ParallelBufferedSort,1,1
10,PreSorted,6,ParallelBufferedSort,2,2
10,PreSorted,6,ParallelBufferedSort,3,4
10,PreSorted,6,ParallelBufferedSort,4,8
10,PreSorted,6,ParallelBufferedSort,5,14
10,PreSorted,6,ParallelBufferedSort,6,24
10,PreSorted,6,ParallelBufferedSort,7,37
10,PreSorted,6,ParallelBufferedSort,8,56
10,PreSorted,6,ParallelBufferedSort,9,78
10,PreSorted,6,ParallelBufferedSort,10,107
10,PreSorted,6,ParallelRadixSort,0,609
10,PreSorted,6,ParallelRadixSort,1,552
10,PreSorted,6,ParallelRadixSort,2,863
10,PreSorted,6,ParallelRadixSort,3,367
10,PreSorted,6,ParallelRadixSort,4,542
10,PreSorted,6,ParallelRadixSort,5,481
10,PreSorted,6,ParallelRadixSort,6,494
10,PreSorted,6,ParallelRadixSort,7,476
10,PreSorted,6,ParallelRadixSort,8,624
10,PreSorted,6,ParallelRadixSort,9,806
10,PreSorted,6,ParallelRadixSort,10,1171
10,PreSorted,6,StdSort,0,0
10,PreSorted,6,StdSort,1,0
10,PreSorted,6,StdSort,2,1
10,PreSorted,6,StdSort,3,4
10,PreSorted,6,StdSort,4,7
10,PreSorted,6,StdSort,5,13
10,PreSorted,6,StdSort,6,23
10,PreSorted,6,StdSort,7,37
10,PreSorted,6,StdSort,8,52
10,PreSorted,6,StdSort,9,77
10,PreSorted,6,StdSort,10,122
10,PreSorted,7,ParallelSort,0,1
10,PreSorted,7,ParallelSort,1,1
10,PreSorted,7,ParallelSort,2,2
10,PreSorted,7,ParallelSort,3,4
10,PreSorted,7,ParallelSort,4,8
10,PreSorted,7,ParallelSort,5,14
10,PreSorted,7,ParallelSort,6,24
10,PreSorted,7,ParallelSort,7,38
10,PreSorted,7,ParallelSort,8,56
10,PreSorted,7,ParallelSort,9,78
10,PreSorted,7,ParallelSort,10,107
10,PreSorted,7,ParallelBufferedSort,0,1
10,PreSorted,7,ParallelBufferedSort,1,1
10,PreSorted,7,ParallelBufferedSort,2,2
10,PreSorted,7,ParallelBufferedSort,3,4
10,PreSorted,7,ParallelBufferedSort,4,8
10,PreSorted,7,ParallelBufferedSort,5,14
10,PreSorted,7,ParallelBufferedSort,6,24
10,PreSorted,7,ParallelBufferedSort,7,38
10,PreSorted,7,ParallelBufferedSort,8,56
10,PreSorted,7,ParallelBufferedSort,9,79
10,PreSorted,7,ParallelBufferedSort,10,107
10,PreSorted,7,ParallelRadixSort,0,1291
10,PreSorted,7,ParallelRadixSort,1,1148
10,PreSorted,7,ParallelRadixSort,2,896
10,PreSorted,7,ParallelRadixSort,3,1321
10,PreSorted,7,ParallelRadixSort,4,911
10,PreSorted,7,ParallelRadixSort,5,1056
10,PreSorted,7,ParallelRadixSort,6,1228
10,PreSorted,7,ParallelRadixSort,7,801
10,PreSorted,7,ParallelRadixSort,8,800
10,PreSorted,7,ParallelRadixSort,9,848
10,PreSorted,7,ParallelRadixSort,10,1094
10,PreSorted,7,StdSort,0,1
10,PreSorted,7,StdSort,1,1
10,PreSorted,7,StdSort,2,2
10,PreSorted,7,StdSort,3,4
10,PreSorted,7,StdSort,4,7
10,PreSorted,7,StdSort,5,13
10,PreSorted,7,StdSort,6,23
10,PreSorted,7,StdSort,7,35
10,PreSorted,7,StdSort,8,52
10,PreSorted,7,StdSort,9,74
10,PreSorted,7,StdSort,10,101
10,PreSorted,8,ParallelSort,0,1
10,PreSorted,8,ParallelSort,1,2
10,PreSorted,8,ParallelSort,2,2
10,PreSorted,8,ParallelSort,3,4
10,PreSorted,8,ParallelSort,4,8
10,PreSorted,8,ParallelSort,5,15
10,PreSorted,8,ParallelSort,6,24
10,PreSorted,8,ParallelSort,7,38
10,PreSorted,8,ParallelSort,8,56
10,PreSorted,8,ParallelSort,9,78
10,PreSorted,8,ParallelSort,10,107
10,PreSorted,8,ParallelBufferedSort,0,1
10,PreSorted,8,ParallelBufferedSort,1,1
10,PreSorted,8,ParallelBufferedSort,2,2
10,PreSorted,8,ParallelBufferedSort,3,4
10,PreSorted,8,ParallelBufferedSort,4,8
10,PreSorted,8,ParallelBufferedSort,5,14
10,PreSorted,8,ParallelBufferedSort,6,25
10,PreSorted,8,ParallelBufferedSort,7,39
10,PreSorted,8,ParallelBufferedSort,8,56
10,PreSorted,8,ParallelBufferedSort,9,79
10,PreSorted,8,ParallelBufferedSort,10,107
10,PreSorted,8,ParallelRadixSort,0,1403
10,PreSorted,8,ParallelRadixSort,1,1411
10,PreSorted,8,ParallelRadixSort,2,1284
10,PreSorted,8,ParallelRadixSort,3,1306
10,PreSorted,8,ParallelRadixSort,4,1471
10,PreSorted,8,ParallelRadixSort,5,1020
10,PreSorted,8,ParallelRadixSort,6,1160
10,PreSorted,8,ParallelRadixSort,7,1227
10,PreSorted,8,ParallelRadixSort,8,1939
10,PreSorted,8,ParallelRadixSort,9,1837
10,PreSorted,8,ParallelRadixSort,10,1297
10,PreSorted,8,StdSort,0,0
10,PreSorted,8,StdSort,1,1
10,PreSorted,8,StdSort,2,2
10,PreSorted,8,StdSort,3,3
10,PreSorted,8,StdSort,4,7
10,PreSorted,8,StdSort,5,13
10,PreSorted,8,StdSort,6,23
10,PreSorted,8,StdSort,7,37
10,PreSorted,8,StdSort,8,54
10,PreSorted,8,StdSort,9,73
10,PreSorted,8,StdSort,10,102
10,NearlySorted,1,ParallelSort,0,1
10,NearlySorted,1,ParallelSort,1,2
10,NearlySorted,1,ParallelSort,2,2
10,NearlySorted,1,ParallelSort,3,4
10,NearlySorted,1,ParallelSort,4,8
10,NearlySorted,1,ParallelSort,5,15
10,NearlySorted,1,ParallelSort,6,25
10,NearlySorted,1,ParallelSort,7,39
10,NearlySorted,1,ParallelSort,8,59
10,NearlySorted,1,ParallelSort,9,82
10,NearlySorted,1,ParallelSort,10,112
10,NearlySorted,1,ParallelBufferedSort,0,1
10,NearlySorted,1,ParallelBufferedSort,1,1
10,NearlySorted,1,ParallelBufferedSort,2,2
10,NearlySorted,1,ParallelBufferedSort,3,4
10,NearlySorted,1,ParallelBufferedSort,4,8
10,NearlySorted,1,ParallelBufferedSort,5,15
10,NearlySorted,1,ParallelBufferedSort,6,25
10,NearlySorted,1,ParallelBufferedSort,7,40
10,NearlySorted,1,ParallelBufferedSort,8,59
10,NearlySorted,1,ParallelBufferedSort,9,82
10,NearlySorted,1,ParallelBufferedSort,10,112
10,NearlySorted,1,ParallelRadixSort,0,23
10,NearlySorted,1,ParallelRadixSort,1,25
10,NearlySorted,1,ParallelRadixSort,2,33
10,NearlySorted,1,ParallelRadixSort,3,52
10,NearlySorted,1,ParallelRadixSort,4,88
10,NearlySorted,1,ParallelRadixSort,5,146
10,NearlySorted,1,ParallelRadixSort,6,236
10,NearlySorted,1,ParallelRadixSort,7,355
10,NearlySorted,1,ParallelRadixSort,8,517
10,NearlySorted,1,ParallelRadixSort,9,724
10,NearlySorted,1,ParallelRadixSort,10,999
10,NearlySorted,1,StdSort,0,0
10,NearlySorted,1,StdSort,1,1
10,NearlySorted,1,StdSort,2,1
10,NearlySorted,1,StdSort,3,4
10,NearlySorted,1,StdSort,4,8
10,NearlySorted,1,StdSort,5,14
10,NearlySorted,1,StdSort,6,24
10,NearlySorted,1,StdSort,7,37
10,NearlySorted,1,StdSort,8,55
10,NearlySorted,1,StdSort,9,78
10,NearlySorted,1,StdSort,10,106
10,NearlySorted,2,ParallelSort,0,1
10,NearlySorted,2,ParallelSort,1,1
10,NearlySorted,2,ParallelSort,2,2
10,NearlySorted,2,ParallelSort,3,4
10,NearlySorted,2,ParallelSort,4,9
10,NearlySorted,2,ParallelSort,5,15
10,NearlySorted,2,ParallelSort,6,25
10,NearlySorted,2,ParallelSort,7,40
10,NearlySorted,2,ParallelSort,8,58
10,NearlySorted,2,ParallelSort,9,84
10,NearlySorted,2,ParallelSort,10,112
10,NearlySorted,2,ParallelBufferedSort,0,1
10,NearlySorted,2,ParallelBufferedSort,1,1
10,NearlySorted,2,ParallelBufferedSort,2,2
10,NearlySorted,2,ParallelBufferedSort,3,4
10,NearlySorted,2,ParallelBufferedSort,4,9
10,NearlySorted,2,ParallelBufferedSort,5,15
10,NearlySorted,2,ParallelBufferedSort,6,26
10,NearlySorted,2,ParallelBufferedSort,7,39
10,NearlySorted,2,ParallelBufferedSort,8,58
10,NearlySorted,2,ParallelBufferedSort,9,83
10,NearlySorted,2,ParallelBufferedSort,10,113
10,NearlySorted,2,ParallelRadixSort,0,50
10,NearlySorted,2,ParallelRadixSort,1,49
10,NearlySorted,2,ParallelRadixSort,2,54
10,NearlySorted,2,ParallelRadixSort,3,74
10,NearlySorted,2,ParallelRadixSort,4,112
10,NearlySorted,2,ParallelRadixSort,5,174
10,NearlySorted,2,ParallelRadixSort,6,261
10,NearlySorted,2,ParallelRadixSort,7,381
10,NearlySorted,2,ParallelRadixSort,8,563
10,NearlySorted,2,ParallelRadixSort,9,757
10,NearlySorted,2,ParallelRadixSort,10,1000
10,NearlySorted,2,StdSort,0,0
10,NearlySorted,2,StdSort,1,1
10,NearlySorted,2,StdSort,2,2
10,NearlySorted,2,StdSort,3,4
10,NearlySorted,2,StdSort,4,8
10,NearlySorted,2,StdSort,5,14
10,NearlySorted,2,StdSort,6,24
10,NearlySorted,2,StdSort,7,37
10,NearlySorted,2,StdSort,8,55
10,NearlySorted,2,StdSort,9,78
10,NearlySorted,2,StdSort,10,106
10,NearlySorted,3,ParallelSort,0,1
10,NearlySorted,3,ParallelSort,1,1
10,NearlySorted,3,ParallelSort,2,2
10,NearlySorted,3,ParallelSort,3,4
10,NearlySorted,3,ParallelSort,4,8
10,NearlySorted,3,ParallelSort,5,15
10,NearlySorted,3,ParallelSort,6,25
10,NearlySorted,3,ParallelSort,7,39
10,NearlySorted,3,ParallelSort,8,58
10,NearlySorted,3,ParallelSort,9,83
10,NearlySorted,3,ParallelSort,10,111
10,NearlySorted,3,ParallelBufferedSort,0,1
10,NearlySorted,3,ParallelBufferedSort,1,1
10,NearlySorted,3,ParallelBufferedSort,2,2
10,NearlySorted,3,ParallelBufferedSort,3,4
10,NearlySorted,3,ParallelBufferedSort,4,8
10,NearlySorted,3,ParallelBufferedSort,5,15
10,NearlySorted,3,ParallelBufferedSort,6,25
10,NearlySorted,3,ParallelBufferedSort,7,39
10,NearlySorted,3,ParallelBufferedSort,8,58
10,NearlySorted,3,ParallelBufferedSort,9,83
10,NearlySorted,3,ParallelBufferedSort,10,112
10,NearlySorted,3,ParallelRadixSort,0,81
10,NearlySorted,3,ParallelRadixSort,1,67
10,NearlySorted,3,ParallelRadixSort,2,80
10,NearlySorted,3,ParallelRadixSort,3,107
10,NearlySorted,3,ParallelRadixSort,4,138
10,NearlySorted,3,ParallelRadixSort,5,209
10,NearlySorted,3,ParallelRadixSort,6,286
10,NearlySorted,3,ParallelRadixSort,7,410
10,NearlySorted,3,ParallelRadixSort,8,576
10,NearlySorted,3,ParallelRadixSort,9,768
10,NearlySorted,3,ParallelRadixSort,10,1008
10,NearlySorted,3,StdSort,0,1
10,NearlySorted,3,StdSort,1,1
10,NearlySorted,3,StdSort,2,1
10,NearlySorted,3,StdSort,3,4
10,NearlySorted,3,StdSort,4,8
10,NearlySorted,3,StdSort,5,16
10,NearlySorted,3,StdSort,6,24
10,NearlySorted,3,StdSort,7,37
10,NearlySorted,3,StdSort,8,55
10,NearlySorted,3,StdSort,9,78
10,NearlySorted,3,StdSort,10,106
10,NearlySorted,4,ParallelSort,0,1
10,NearlySorted,4,ParallelSort,1,1
10,NearlySorted,4,ParallelSort,2,2
10,NearlySorted,4,ParallelSort,3,4
10,NearlySorted,4,ParallelSort,4,9
10,NearlySorted,4,ParallelSort,5,15
10,NearlySorted,4,ParallelSort,6,26
10,NearlySorted,4,ParallelSort,7,39
10,NearlySorted,4,ParallelSort,8,59
10,NearlySorted,4,ParallelSort,9,82
10,NearlySorted,4,ParallelSort,10,112
10,NearlySorted,4,ParallelBufferedSort,0,1
10,NearlySorted,4,ParallelBufferedSort,1,1
10,NearlySorted,4,ParallelBufferedSort,2,2
10,NearlySorted,4,ParallelBufferedSort,3,4
10,NearlySorted,4,ParallelBufferedSort,4,8
10,NearlySorted,4,ParallelBufferedSort,5,15
10,NearlySorted,4,ParallelBufferedSort,6,25
10,NearlySorted,4,ParallelBufferedSort,7,40
10,NearlySorted,4,ParallelBufferedSort,8,59
10,NearlySorted,4,ParallelBufferedSort,9,82
10,NearlySorted,4,ParallelBufferedSort,10,113
10,NearlySorted,4,ParallelRadixSort,0,341
10,NearlySorted,4,ParallelRadixSort,1,102
10,NearlySorted,4,ParallelRadixSort,2,104
10,NearlySorted,4,ParallelRadixSort,3,125
10,NearlySorted,4,ParallelRadixSort,4,159
10,NearlySorted,4,ParallelRadixSort,5,225
10,NearlySorted,4,ParallelRadixSort,6,312
10,NearlySorted,4,ParallelRadixSort,7,443
10,NearlySorted,4,ParallelRadixSort,8,593
10,NearlySorted,4,ParallelRadixSort,9,794
10,NearlySorted,4,ParallelRadixSort,10,1063
10,NearlySorted,4,StdSort,0,1
10,NearlySorted,4,StdSort,1,1
10,NearlySorted,4,StdSort,2,1
10,NearlySorted,4,StdSort,3,4
10,NearlySorted,4,StdSort,4,8
10,NearlySorted,4,StdSort,5,15
10,NearlySorted,4,StdSort,6,24
10,NearlySorted,4,StdSort,7,43
10,NearlySorted,4,StdSort,8,63
10,NearlySorted,4,StdSort,9,79
10,NearlySorted,4,StdSort,10,106
10,NearlySorted,5,ParallelSort,0,1
10,NearlySorted,5,ParallelSort,1,1
10,NearlySorted,5,ParallelSort,2,2
10,NearlySorted,5,ParallelSort,3,5
10,NearlySorted,5,ParallelSort,4,9
10,NearlySorted,5,ParallelSort,5,15
10,NearlySorted,5,ParallelSort,6,27
10,NearlySorted,5,ParallelSort,7,45
10,NearlySorted,5,ParallelSort,8,59
10,NearlySorted,5,ParallelSort,9,83
10,NearlySorted,5,ParallelSort,10,113
10,NearlySorted,5,ParallelBufferedSort,0,1
10,NearlySorted,5,ParallelBufferedSort,1,1
10,NearlySorted,5,ParallelBufferedSort,2,2
10,NearlySorted,5,ParallelBufferedSort,3,5
10,NearlySorted,5,ParallelBufferedSort,4,9
10,NearlySorted,5,ParallelBufferedSort,5,15
10,NearlySorted,5,ParallelBufferedSort,6,28
10,NearlySorted,5,ParallelBufferedSort,7,43
10,NearlySorted,5,ParallelBufferedSort,8,59
10,NearlySorted,5,ParallelBufferedSort,9,83
10,NearlySorted,5,ParallelBufferedSort,10,111
10,NearlySorted,5,ParallelRadixSort,0,282
10,NearlySorted,5,ParallelRadixSort,1,141
10,NearlySorted,5,ParallelRadixSort,2,111
10,NearlySorted,5,ParallelRadixSort,3,316
10,NearlySorted,5,ParallelRadixSort,4,152
10,NearlySorted,5,ParallelRadixSort,5,221
10,NearlySorted,5,ParallelRadixSort,6,334
10,NearlySorted,5,ParallelRadixSort,7,443
10,NearlySorted,5,ParallelRadixSort,8,611
10,NearlySorted,5,ParallelRadixSort,9,822
10,NearlySorted,5,ParallelRadixSort,10,1078
10,NearlySorted,5,StdSort,0,1
10,NearlySorted,5,StdSort,1,1
10,NearlySorted,5,StdSort,2,1
10,NearlySorted,5,StdSort,3,4
10,NearlySorted,5,StdSort,4,8
10,NearlySorted,5,StdSort,5,14
10,NearlySorted,5,StdSort,6,24
10,NearlySorted,5,StdSort,7,41
10,NearlySorted,5,StdSort,8,61
10,NearlySorted,5,StdSort,9,88
10,NearlySorted,5,StdSort,10,121
10,NearlySorted,6,ParallelSort,0,1
10,NearlySorted,6,ParallelSort,1,2
10,NearlySorted,6,ParallelSort,2,2
10,NearlySorted,6,ParallelSort,3,4
10,NearlySorted,6,ParallelSort,4,9
10,NearlySorted,6,ParallelSort,5,15
10,NearlySorted,6,ParallelSort,6,29
10,NearlySorted,6,ParallelSort,7,44
10,NearlySorted,6,ParallelSort,8,58
10,NearlySorted,6,ParallelSort,9,82
10,NearlySorted,6,ParallelSort,10,112
10,NearlySorted,6,ParallelBufferedSort,0,1
10,NearlySorted,6,ParallelBufferedSort,1,1
10,NearlySorted,6,ParallelBufferedSort,2,2
10,NearlySorted,6,ParallelBufferedSort,3,5
10,NearlySorted,6,ParallelBufferedSort,4,8
10,NearlySorted,6,ParallelBufferedSort,5,15
10,NearlySorted,6,ParallelBufferedSort,6,30
10,NearlySorted,6,ParallelBufferedSort,7,42
10,NearlySorted,6,ParallelBufferedSort,8,59
10,NearlySorted,6,ParallelBufferedSort,9,83
10,NearlySorted,6,ParallelBufferedSort,10,112
10,NearlySorted,6,ParallelRadixSort,0,671
10,NearlySorted,6,ParallelRadixSort,1,681
10,NearlySorted,6,ParallelRadixSort,2,597
10,NearlySorted,6,ParallelRadixSort,3,716
10,NearlySorted,6,ParallelRadixSort,4,582
10,NearlySorted,6,ParallelRadixSort,5,588
10,NearlySorted,6,ParallelRadixSort,6,320
10,NearlySorted,6,ParallelRadixSort,7,438
10,NearlySorted,6,ParallelRadixSort,8,604
10,NearlySorted,6,ParallelRadixSort,9,842
10,NearlySorted,6,ParallelRadixSort,10,1208
10,NearlySorted,6,StdSort,0,1
10,NearlySorted,6,StdSort,1,1
10,NearlySorted,6,StdSort,2,2
10,NearlySorted,6,StdSort,3,4
10,NearlySorted,6,StdSort,4,8
10,NearlySorted,6,StdSort,5,14
10,NearlySorted,6,StdSort,6,24
10,NearlySorted,6,StdSort,7,39
10,NearlySorted,6,StdSort,8,64
10,NearlySorted,6,StdSort,9,88
10,NearlySorted,6,StdSort,10,120
10,NearlySorted,7,ParallelSort,0,1
10,NearlySorted,7,ParallelSort,1,1
10,NearlySorted,7,ParallelSort,2,2
10,NearlySorted,7,ParallelSort,3,4
10,NearlySorted,7,ParallelSort,4,9
10,NearlySorted,7,ParallelSort,5,18
10,NearlySorted,7,ParallelSort,6,29
10,NearlySorted,7,ParallelSort,7,42
10,NearlySorted,7,ParallelSort,8,60
10,NearlySorted,7,ParallelSort,9,83
10,NearlySorted,7,ParallelSort,10,113
10,NearlySorted,7,ParallelBufferedSort,0,1
10,NearlySorted,7,ParallelBufferedSort,1,1
10,NearlySorted,7,ParallelBufferedSort,2,2
10,NearlySorted,7,ParallelBufferedSort,3,5
10,NearlySorted,7,ParallelBufferedSort,4,9
10,NearlySorted,7,ParallelBufferedSort,5,18
10,NearlySorted,7,ParallelBufferedSort,6,29
10,NearlySorted,7,ParallelBufferedSort,7,43
10,NearlySorted,7,ParallelBufferedSort,8,59
10,NearlySorted,7,ParallelBufferedSort,9,83
10,NearlySorted,7,ParallelBufferedSort,10,112
10,NearlySorted,7,ParallelRadixSort,0,1080
10,NearlySorted,7,ParallelRadixSort,1,1176
10,NearlySorted,7,ParallelRadixSort,2,846
10,NearlySorted,7,ParallelRadixSort,3,1099
10,NearlySorted,7,ParallelRadixSort,4,1043
10,NearlySorted,7,ParallelRadixSort,5,825
10,NearlySorted,7,ParallelRadixSort,6,800
10,NearlySorted,7,ParallelRadixSort,7,851
10,NearlySorted,7,ParallelRadixSort,8,1122
10,NearlySorted,7,ParallelRadixSort,9,1134
10,NearlySorted,7,ParallelRadixSort,10,1106
10,NearlySorted,7,StdSort,0,0
10,NearlySorted,7,StdSort,1,1
10,NearlySorted,7,StdSort,2,1
10,NearlySorted,7,StdSort,3,4
10,NearlySorted,7,StdSort,4,8
10,NearlySorted,7,StdSort,5,14
10,NearlySorted,7,StdSort,6,24
10,NearlySorted,7,StdSort,7,37
10,NearlySorted,7,StdSort,8,55
10,NearlySorted,7,StdSort,9,78
10,NearlySorted,7,StdSort,10,106
10,NearlySorted,8,ParallelSort,0,1
10,NearlySorted,8,ParallelSort,1,2
10,NearlySorted,8,ParallelSort,2,2
10,NearlySorted,8,ParallelSort,3,4
10,NearlySorted,8,ParallelSort,4,9
10,NearlySorted,8,ParallelSort,5,15
10,NearlySorted,8,ParallelSort,6,26
10,NearlySorted,8,ParallelSort,7,40
10,NearlySorted,8,ParallelSort,8,59
10,NearlySorted,8,ParallelSort,9,84
10,NearlySorted,8,ParallelSort,10,112
10,NearlySorted,8,ParallelBufferedSort,0,1
10,NearlySorted,8,ParallelBufferedSort,1,1
10,NearlySorted,8,ParallelBufferedSort,2,2
10,NearlySorted,8,ParallelBufferedSort,3,4
10,NearlySorted,8,ParallelBufferedSort,4,9
10,NearlySorted,8,ParallelBufferedSort,5,18
10,NearlySorted,8,ParallelBufferedSort,6,29
10,NearlySorted,8,ParallelBufferedSort,7,43
10,NearlySorted,8,ParallelBufferedSort,8,59
10,NearlySorted,8,ParallelBufferedSort,9,82
10,NearlySorted,8,ParallelBufferedSort,10,113
10,NearlySorted,8,ParallelRadixSort,0,1424
10,NearlySorted,8,ParallelRadixSort,1,1402
10,NearlySorted,8,ParallelRadixSort,2,1335
10,NearlySorted,8,ParallelRadixSort,3,1436
10,NearlySorted,8,ParallelRadixSort,4,1522
10,NearlySorted,8,ParallelRadixSort,5,1134
10,NearlySorted,8,ParallelRadixSort,6,1352
10,NearlySorted,8,ParallelRadixSort,7,1198
10,NearlySorted,8,ParallelRadixSort,8,1295
10,NearlySorted,8,ParallelRadixSort,9,2247
10,NearlySorted,8,ParallelRadixSort,10,1614
10,NearlySorted,8,StdSort,0,1
10,NearlySorted,8,StdSort,1,1
10,NearlySorted,8,StdSort,2,2
10,NearlySorted,8,StdSort,3,4
10,NearlySorted,8,StdSort,4,8
10,NearlySorted,8,StdSort,5,14
10,NearlySorted,8,StdSort,6,24
10,NearlySorted,8,StdSort,7,37
10,NearlySorted,8,StdSort,8,55
10,NearlySorted,8,StdSort,9,78
10,NearlySorted,8,StdSort,10,107
10,NormalDistributionWithDups,1,ParallelSort,0,2
10,NormalDistributionWithDups,1,ParallelSort,1,2
10,NormalDistributionWithDups,1,ParallelSort,2,4
10,NormalDistributionWithDups,1,ParallelSort,3,9
10,NormalDistributionWithDups,1,ParallelSort,4,17
10,NormalDistributionWithDups,1,ParallelSort,5,35
10,NormalDistributionWithDups,1,ParallelSort,6,52
10,NormalDistributionWithDups,1,ParallelSort,7,81
10,NormalDistributionWithDups,1,ParallelSort,8,119
10,NormalDistributionWithDups,1,ParallelSort,9,170
10,NormalDistributionWithDups,1,ParallelSort,10,229
10,NormalDistributionWithDups,1,ParallelBufferedSort,0,2
10,NormalDistributionWithDups,1,ParallelBufferedSort,1,2
10,NormalDistributionWithDups,1,ParallelBufferedSort,2,4
10,NormalDistributionWithDups,1,ParallelBufferedSort,3,9
10,NormalDistributionWithDups,1,ParallelBufferedSort,4,17
10,NormalDistributionWithDups,1,ParallelBufferedSort,5,31
10,NormalDistributionWithDups,1,ParallelBufferedSort,6,52
10,NormalDistributionWithDups,1,ParallelBufferedSort,7,82
10,NormalDistributionWithDups,1,ParallelBufferedSort,8,120
10,NormalDistributionWithDups,1,ParallelBufferedSort,9,170
10,NormalDistributionWithDups,1,ParallelBufferedSort,10,229
10,NormalDistributionWithDups,1,ParallelRadixSort,0,24
10,NormalDistributionWithDups,1,ParallelRadixSort,1,25
10,NormalDistributionWithDups,1,ParallelRadixSort,2,32
10,NormalDistributionWithDups,1,ParallelRadixSort,3,55
10,NormalDistributionWithDups,1,ParallelRadixSort,4,94
10,NormalDistributionWithDups,1,ParallelRadixSort,5,157
10,NormalDistributionWithDups,1,ParallelRadixSort,6,253
10,NormalDistributionWithDups,1,ParallelRadixSort,7,386
10,NormalDistributionWithDups,1,ParallelRadixSort,8,564
10,NormalDistributionWithDups,1,ParallelRadixSort,9,801
10,NormalDistributionWithDups,1,ParallelRadixSort,10,1081
10,NormalDistributionWithDups,1,StdSort,0,1
10,NormalDistributionWithDups,1,StdSort,1,1
10,NormalDistributionWithDups,1,StdSort,2,3
10,NormalDistributionWithDups,1,StdSort,3,8
10,NormalDistributionWithDups,1,StdSort,4,16
10,NormalDistributionWithDups,1,StdSort,5,30
10,NormalDistributionWithDups,1,StdSort,6,50
10,NormalDistributionWithDups,1,StdSort,7,78
10,NormalDistributionWithDups,1,StdSort,8,115
10,NormalDistributionWithDups,1,StdSort,9,163
10,NormalDistributionWithDups,1,StdSort,10,224
10,NormalDistributionWithDups,2,ParallelSort,0,2
10,NormalDistributionWithDups,2,ParallelSort,1,2
10,NormalDistributionWithDups,2,ParallelSort,2,4
10,NormalDistributionWithDups,2,ParallelSort,3,7
10,NormalDistributionWithDups,2,ParallelSort,4,15
10,NormalDistributionWithDups,2,ParallelSort,5,26
10,NormalDistributionWithDups,2,ParallelSort,6,44
10,NormalDistributionWithDups,2,ParallelSort,7,69
10,NormalDistributionWithDups,2,ParallelSort,8,103
10,NormalDistributionWithDups,2,ParallelSort,9,143
10,NormalDistributionWithDups,2,ParallelSort,10,197
10,NormalDistributionWithDups,2,ParallelBufferedSort,0,2
10,NormalDistributionWithDups,2,ParallelBufferedSort,1,2
10,NormalDistributionWithDups,2,ParallelBufferedSort,2,4
10,NormalDistributionWithDups,2,ParallelBufferedSort,3,7
10,NormalDistributionWithDups,2,ParallelBufferedSort,4,15
10,NormalDistributionWithDups,2,ParallelBufferedSort,5,26
10,NormalDistributionWithDups,2,ParallelBufferedSort,6,45
10,NormalDistributionWithDups,2,ParallelBufferedSort,7,69
10,NormalDistributionWithDups,2,ParallelBufferedSort,8,103
10,NormalDistributionWithDups,2,ParallelBufferedSort,9,145
10,NormalDistributionWithDups,2,ParallelBufferedSort,10,195
10,NormalDistributionWithDups,2,ParallelRadixSort,0,48
10,NormalDistributionWithDups,2,ParallelRadixSort,1,49
10,NormalDistributionWithDups,2,ParallelRadixSort,2,57
10,NormalDistributionWithDups,2,ParallelRadixSort,3,75
10,NormalDistributionWithDups,2,ParallelRadixSort,4,110
10,NormalDistributionWithDups,2,ParallelRadixSort,5,173
10,NormalDistributionWithDups,2,ParallelRadixSort,6,260
10,NormalDistributionWithDups,2,ParallelRadixSort,7,375
10,NormalDistributionWithDups,2,ParallelRadixSort,8,551
10,NormalDistributionWithDups,2,ParallelRadixSort,9,741
10,NormalDistributionWithDups,2,ParallelRadixSort,10,1014
10,NormalDistributionWithDups,2,StdSort,0,1
10,NormalDistributionWithDups,2,StdSort,1,1
10,NormalDistributionWithDups,2,StdSort,2,3
10,NormalDistributionWithDups,2,StdSort,3,7
10,NormalDistributionWithDups,2,StdSort,4,14
10,NormalDistributionWithDups,2,StdSort,5,25
10,NormalDistributionWithDups,2,StdSort,6,43
10,NormalDistributionWithDups,2,StdSort,7,66
10,NormalDistributionWithDups,2,StdSort,8,98
10,NormalDistributionWithDups,2,StdSort,9,139
10,NormalDistributionWithDups,2,StdSort,10,190
10,NormalDistributionWithDups,3,ParallelSort,0,2
10,NormalDistributionWithDups,3,ParallelSort,1,3
10,NormalDistributionWithDups,3,ParallelSort,2,5
10,NormalDistributionWithDups,3,ParallelSort,3,13
10,NormalDistributionWithDups,3,ParallelSort,4,26
10,NormalDistributionWithDups,3,ParallelSort,5,47
10,NormalDistributionWithDups,3,ParallelSort,6,80
10,NormalDistributionWithDups,3,ParallelSort,7,124
10,NormalDistributionWithDups,3,ParallelSort,8,183
10,NormalDistributionWithDups,3,ParallelSort,9,258
10,NormalDistributionWithDups,3,ParallelSort,10,353
10,NormalDistributionWithDups,3,ParallelBufferedSort,0,2
10,NormalDistributionWithDups,3,ParallelBufferedSort,1,3
10,NormalDistributionWithDups,3,ParallelBufferedSort,2,5
10,NormalDistributionWithDups,3,ParallelBufferedSort,3,13
10,NormalDistributionWithDups,3,ParallelBufferedSort,4,26
10,NormalDistributionWithDups,3,ParallelBufferedSort,5,47
10,NormalDistributionWithDups,3,ParallelBufferedSort,6,79
10,NormalDistributionWithDups,3,ParallelBufferedSort,7,124
10,NormalDistributionWithDups,3,ParallelBufferedSort,8,182
10,NormalDistributionWithDups,3,ParallelBufferedSort,9,258
10,NormalDistributionWithDups,3,ParallelBufferedSort,10,354
10,NormalDistributionWithDups,3,ParallelRadixSort,0,97
10,NormalDistributionWithDups,3,ParallelRadixSort,1,69
10,NormalDistributionWithDups,3,ParallelRadixSort,2,78
10,NormalDistributionWithDups,3,ParallelRadixSort,3,111
10,NormalDistributionWithDups,3,ParallelRadixSort,4,168
10,NormalDistributionWithDups,3,ParallelRadixSort,5,246
10,NormalDistributionWithDups,3,ParallelRadixSort,6,372
10,NormalDistributionWithDups,3,ParallelRadixSort,7,551
10,NormalDistributionWithDups,3,ParallelRadixSort,8,755
10,NormalDistributionWithDups,3,ParallelRadixSort,9,1040
10,NormalDistributionWithDups,3,ParallelRadixSort,10,1380
10,NormalDistributionWithDups,3,StdSort,0,1
10,NormalDistributionWithDups,3,StdSort,1,2
10,NormalDistributionWithDups,3,StdSort,2,4
10,NormalDistributionWithDups,3,StdSort,3,14
10,NormalDistributionWithDups,3,StdSort,4,24
10,NormalDistributionWithDups,3,StdSort,5,45
10,NormalDistributionWithDups,3,StdSort,6,77
10,NormalDistributionWithDups,3,StdSort,7,121
10,NormalDistributionWithDups,3,StdSort,8,178
10,NormalDistributionWithDups,3,StdSort,9,253
10,NormalDistributionWithDups,3,StdSort,10,346
10,NormalDistributionWithDups,4,ParallelSort,0,3
10,NormalDistributionWithDups,4,ParallelSort,1,4
10,NormalDistributionWithDups,4,ParallelSort,2,7
10,NormalDistributionWithDups,4,ParallelSort,3,17
10,NormalDistributionWithDups,4,ParallelSort,4,35
10,NormalDistributionWithDups,4,ParallelSort,5,65
10,NormalDistributionWithDups,4,ParallelSort,6,109
10,NormalDistributionWithDups,4,ParallelSort,7,171
10,NormalDistributionWithDups,4,ParallelSort,8,251
10,NormalDistributionWithDups,4,ParallelSort,9,356
10,NormalDistributionWithDups,4,ParallelSort,10,488
10,NormalDistributionWithDups,4,ParallelBufferedSort,0,3
10,NormalDistributionWithDups,4,ParallelBufferedSort,1,3
10,NormalDistributionWithDups,4,ParallelBufferedSort,2,7
10,NormalDistributionWithDups,4,ParallelBufferedSort,3,17
10,NormalDistributionWithDups,4,ParallelBufferedSort,4,35
10,NormalDistributionWithDups,4,ParallelBufferedSort,5,65
10,NormalDistributionWithDups,4,ParallelBufferedSort,6,109
10,NormalDistributionWithDups,4,ParallelBufferedSort,7,170
10,NormalDistributionWithDups,4,ParallelBufferedSort,8,251
10,NormalDistributionWithDups,4,ParallelBufferedSort,9,356
10,NormalDistributionWithDups,4,ParallelBufferedSort,10,485
10,NormalDistributionWithDups,4,ParallelRadixSort,0,293
10,NormalDistributionWithDups,4,ParallelRadixSort,1,118
10,NormalDistributionWithDups,4,ParallelRadixSort,2,107
10,NormalDistributionWithDups,4,ParallelRadixSort,3,139
10,NormalDistributionWithDups,4,ParallelRadixSort,4,205
10,NormalDistributionWithDups,4,ParallelRadixSort,5,311
10,NormalDistributionWithDups,4,ParallelRadixSort,6,467
10,NormalDistributionWithDups,4,ParallelRadixSort,7,668
10,NormalDistributionWithDups,4,ParallelRadixSort,8,940
10,NormalDistributionWithDups,4,ParallelRadixSort,9,1258
10,NormalDistributionWithDups,4,ParallelRadixSort,10,1681
10,NormalDistributionWithDups,4,StdSort,0,2
10,NormalDistributionWithDups,4,StdSort,1,2
10,NormalDistributionWithDups,4,StdSort,2,6
10,NormalDistributionWithDups,4,StdSort,3,21
10,NormalDistributionWithDups,4,StdSort,4,38
10,NormalDistributionWithDups,4,StdSort,5,72
10,NormalDistributionWithDups,4,StdSort,6,106
10,NormalDistributionWithDups,4,StdSort,7,167
10,NormalDistributionWithDups,4,StdSort,8,247
10,NormalDistributionWithDups,4,StdSort,9,351
10,NormalDistributionWithDups,4,StdSort,10,480
10,NormalDistributionWithDups,5,ParallelSort,0,2
10,NormalDistributionWithDups,5,ParallelSort,1,3
10,NormalDistributionWithDups,5,ParallelSort,2,4
10,NormalDistributionWithDups,5,ParallelSort,3,8
10,NormalDistributionWithDups,5,ParallelSort,4,16
10,NormalDistributionWithDups,5,ParallelSort,5,31
10,NormalDistributionWithDups,5,ParallelSort,6,48
10,NormalDistributionWithDups,5,ParallelSort,7,75
10,NormalDistributionWithDups,5,ParallelSort,8,111
10,NormalDistributionWithDups,5,ParallelSort,9,156
10,NormalDistributionWithDups,5,ParallelSort,10,215
10,NormalDistributionWithDups,5,ParallelBufferedSort,0,2
10,NormalDistributionWithDups,5,ParallelBufferedSort,1,2
10,NormalDistributionWithDups,5,ParallelBufferedSort,2,4
10,NormalDistributionWithDups,5,ParallelBufferedSort,3,8
10,NormalDistributionWithDups,5,ParallelBufferedSort,4,16
10,NormalDistributionWithDups,5,ParallelBufferedSort,5,33
10,NormalDistributionWithDups,5,ParallelBufferedSort,6,53
10,NormalDistributionWithDups,5,ParallelBufferedSort,7,75
10,NormalDistributionWithDups,5,ParallelBufferedSort,8,111
10,NormalDistributionWithDups,5,ParallelBufferedSort,9,157
10,NormalDistributionWithDups,5,ParallelBufferedSort,10,213
10,NormalDistributionWithDups,5,ParallelRadixSort,0,516
10,NormalDistributionWithDups,5,ParallelRadixSort,1,128
10,NormalDistributionWithDups,5,ParallelRadixSort,2,119
10,NormalDistributionWithDups,5,ParallelRadixSort,3,235
10,NormalDistributionWithDups,5,ParallelRadixSort,4,311
10,NormalDistributionWithDups,5,ParallelRadixSort,5,250
10,NormalDistributionWithDups,5,ParallelRadixSort,6,306
10,NormalDistributionWithDups,5,ParallelRadixSort,7,419
10,NormalDistributionWithDups,5,ParallelRadixSort,8,598
10,NormalDistributionWithDups,5,ParallelRadixSort,9,831
10,NormalDistributionWithDups,5,ParallelRadixSort,10,1113
10,NormalDistributionWithDups,5,StdSort,0,1
10,NormalDistributionWithDups,5,StdSort,1,1
10,NormalDistributionWithDups,5,StdSort,2,3
10,NormalDistributionWithDups,5,StdSort,3,8
10,NormalDistributionWithDups,5,StdSort,4,15
10,NormalDistributionWithDups,5,StdSort,5,29
10,NormalDistributionWithDups,5,StdSort,6,51
10,NormalDistributionWithDups,5,StdSort,7,86
10,NormalDistributionWithDups,5,StdSort,8,121
10,NormalDistributionWithDups,5,StdSort,9,151
10,NormalDistributionWithDups,5,StdSort,10,207
10,NormalDistributionWithDups,6,ParallelSort,0,2
10,NormalDistributionWithDups,6,ParallelSort,1,2
10,NormalDistributionWithDups,6,ParallelSort,2,5
10,NormalDistributionWithDups,6,ParallelSort,3,11
10,NormalDistributionWithDups,6,ParallelSort,4,25
10,NormalDistributionWithDups,6,ParallelSort,5,44
10,NormalDistributionWithDups,6,ParallelSort,6,69
10,NormalDistributionWithDups,6,ParallelSort,7,108
10,NormalDistributionWithDups,6,ParallelSort,8,159
10,NormalDistributionWithDups,6,ParallelSort,9,226
10,NormalDistributionWithDups,6,ParallelSort,10,308
10,NormalDistributionWithDups,6,ParallelBufferedSort,0,1
10,NormalDistributionWithDups,6,ParallelBufferedSort,1,2
10,NormalDistributionWithDups,6,ParallelBufferedSort,2,5
10,NormalDistributionWithDups,6,ParallelBufferedSort,3,11
10,NormalDistributionWithDups,6,ParallelBufferedSort,4,25
10,NormalDistributionWithDups,6,ParallelBufferedSort,5,41
10,NormalDistributionWithDups,6,ParallelBufferedSort,6,69
10,NormalDistributionWithDups,6,ParallelBufferedSort,7,108
10,NormalDistributionWithDups,6,ParallelBufferedSort,8,160
10,NormalDistributionWithDups,6,ParallelBufferedSort,9,225
10,NormalDistributionWithDups,6,ParallelBufferedSort,10,312
10,NormalDistributionWithDups,6,ParallelRadixSort,0,797
10,NormalDistributionWithDups,6,ParallelRadixSort,1,569
10,NormalDistributionWithDups,6,ParallelRadixSort,2,722
10,NormalDistributionWithDups,6,ParallelRadixSort,3,470
10,NormalDistributionWithDups,6,ParallelRadixSort,4,783
10,NormalDistributionWithDups,6,ParallelRadixSort,5,467
10,NormalDistributionWithDups,6,ParallelRadixSort,6,494
10,NormalDistributionWithDups,6,ParallelRadixSort,7,604
10,NormalDistributionWithDups,6,ParallelRadixSort,8,753
10,NormalDistributionWithDups,6,ParallelRadixSort,9,1058
10,NormalDistributionWithDups,6,ParallelRadixSort,10,1391
10,NormalDistributionWithDups,6,StdSort,0,1
10,NormalDistributionWithDups,6,StdSort,1,1
10,NormalDistributionWithDups,6,StdSort,2,4
10,NormalDistributionWithDups,6,StdSort,3,11
10,NormalDistributionWithDups,6,StdSort,4,22
10,NormalDistributionWithDups,6,StdSort,5,41
10,NormalDistributionWithDups,6,StdSort,6,78
10,NormalDistributionWithDups,6,StdSort,7,124
10,NormalDistributionWithDups,6,StdSort,8,157
10,NormalDistributionWithDups,6,StdSort,9,221
10,NormalDistributionWithDups,6,StdSort,10,304
10,NormalDistributionWithDups,7,ParallelSort,0,2
10,NormalDistributionWithDups,7,ParallelSort,1,3
10,NormalDistributionWithDups,7,ParallelSort,2,4
10,NormalDistributionWithDups,7,ParallelSort,3,9
10,NormalDistributionWithDups,7,ParallelSort,4,18
10,NormalDistributionWithDups,7,ParallelSort,5,34
10,NormalDistributionWithDups,7,ParallelSort,6,58
10,NormalDistributionWithDups,7,ParallelSort,7,85
10,NormalDistributionWithDups,7,ParallelSort,8,125
10,NormalDistributionWithDups,7,ParallelSort,9,177
10,NormalDistributionWithDups,7,ParallelSort,10,242
10,NormalDistributionWithDups,7,ParallelBufferedSort,0,1
10,NormalDistributionWithDups,7,ParallelBufferedSort,1,3
10,NormalDistributionWithDups,7,ParallelBufferedSort,2,4
10,NormalDistributionWithDups,7,ParallelBufferedSort,3,9
10,NormalDistributionWithDups,7,ParallelBufferedSort,4,20
10,NormalDistributionWithDups,7,ParallelBufferedSort,5,37
10,NormalDistributionWithDups,7,ParallelBufferedSort,6,55
10,NormalDistributionWithDups,7,ParallelBufferedSort,7,85
10,NormalDistributionWithDups,7,ParallelBufferedSort,8,125
10,NormalDistributionWithDups,7,ParallelBufferedSort,9,176
10,NormalDistributionWithDups,7,ParallelBufferedSort,10,242
10,NormalDistributionWithDups,7,ParallelRadixSort,0,1242
10,NormalDistributionWithDups,7,ParallelRadixSort,1,1155
10,NormalDistributionWithDups,7,ParallelRadixSort,2,1228
10,NormalDistributionWithDups,7,ParallelRadixSort,3,851
10,NormalDistributionWithDups,7,ParallelRadixSort,4,1262
10,NormalDistributionWithDups,7,ParallelRadixSort,5,246
10,NormalDistributionWithDups,7,ParallelRadixSort,6,1388
10,NormalDistributionWithDups,7,ParallelRadixSort,7,1536
10,NormalDistributionWithDups,7,ParallelRadixSort,8,1543
10,NormalDistributionWithDups,7,ParallelRadixSort,9,1357
10,NormalDistributionWithDups,7,ParallelRadixSort,10,1359
10,NormalDistributionWithDups,7,StdSort,0,1
10,NormalDistributionWithDups,7,StdSort,1,1
10,NormalDistributionWithDups,7,StdSort,2,3
10,NormalDistributionWithDups,7,StdSort,3,9
10,NormalDistributionWithDups,7,StdSort,4,17
10,NormalDistributionWithDups,7,StdSort,5,31
10,NormalDistributionWithDups,7,StdSort,6,53
10,NormalDistributionWithDups,7,StdSort,7,87
10,NormalDistributionWithDups,7,StdSort,8,123
10,NormalDistributionWithDups,7,StdSort,9,183
10,NormalDistributionWithDups,7,StdSort,10,264
10,NormalDistributionWithDups,8,ParallelSort,0,2
10,NormalDistributionWithDups,8,ParallelSort,1,4
10,NormalDistributionWithDups,8,ParallelSort,2,6
10,NormalDistributionWithDups,8,ParallelSort,3,15
10,NormalDistributionWithDups,8,ParallelSort,4,30
10,NormalDistributionWithDups,8,ParallelSort,5,54
10,NormalDistributionWithDups,8,ParallelSort,6,91
10,NormalDistributionWithDups,8,ParallelSort,7,143
10,NormalDistributionWithDups,8,ParallelSort,8,211
10,NormalDistributionWithDups,8,ParallelSort,9,298
10,NormalDistributionWithDups,8,ParallelSort,10,408
10,NormalDistributionWithDups,8,ParallelBufferedSort,0,2
10,NormalDistributionWithDups,8,ParallelBufferedSort,1,3
10,NormalDistributionWithDups,8,ParallelBufferedSort,2,6
10,NormalDistributionWithDups,8,ParallelBufferedSort,3,15
10,NormalDistributionWithDups,8,ParallelBufferedSort,4,30
10,NormalDistributionWithDups,8,ParallelBufferedSort,5,54
10,NormalDistributionWithDups,8,ParallelBufferedSort,6,91
10,NormalDistributionWithDups,8,ParallelBufferedSort,7,143
10,NormalDistributionWithDups,8,ParallelBufferedSort,8,211
10,NormalDistributionWithDups,8,ParallelBufferedSort,9,299
10,NormalDistributionWithDups,8,ParallelBufferedSort,10,407
10,NormalDistributionWithDups,8,ParallelRadixSort,0,1371
10,NormalDistributionWithDups,8,ParallelRadixSort,1,1349
10,NormalDistributionWithDups,8,ParallelRadixSort,2,1084
10,NormalDistributionWithDups,8,ParallelRadixSort,3,1436
10,NormalDistributionWithDups,8,ParallelRadixSort,4,1466
10,NormalDistributionWithDups,8,ParallelRadixSort,5,1154
10,NormalDistributionWithDups,8,ParallelRadixSort,6,1631
10,NormalDistributionWithDups,8,ParallelRadixSort,7,1432
10,NormalDistributionWithDups,8,ParallelRadixSort,8,1488
10,NormalDistributionWithDups,8,ParallelRadixSort,9,1532
10,NormalDistributionWithDups,8,ParallelRadixSort,10,1954
10,NormalDistributionWithDups,8,StdSort,0,1
10,NormalDistributionWithDups,8,StdSort,1,2
10,NormalDistributionWithDups,8,StdSort,2,5
10,NormalDistributionWithDups,8,StdSort,3,14
10,NormalDistributionWithDups,8,StdSort,4,29
10,NormalDistributionWithDups,8,StdSort,5,53
10,NormalDistributionWithDups,8,StdSort,6,90
10,NormalDistributionWithDups,8,StdSort,7,140
10,NormalDistributionWithDups,8,StdSort,8,209
10,NormalDistributionWithDups,8,StdSort,9,300
10,NormalDistributionWithDups,8,StdSort,10,406
10,SawTooth,1,ParallelSort,0,1
10,SawTooth,1,ParallelSort,1,2
10,SawTooth,1,ParallelSort,2,3
10,SawTooth,1,ParallelSort,3,6
10,SawTooth,1,ParallelSort,4,13
10,SawTooth,1,ParallelSort,5,22
10,SawTooth,1,ParallelSort,6,37
10,SawTooth,1,ParallelSort,7,57
10,SawTooth,1,ParallelSort,8,84
10,SawTooth,1,ParallelSort,9,119
10,SawTooth,1,ParallelSort,10,164
10,SawTooth,1,ParallelBufferedSort,0,1
10,SawTooth,1,ParallelBufferedSort,1,2
10,SawTooth,1,ParallelBufferedSort,2,3
10,SawTooth,1,ParallelBufferedSort,3,6
10,SawTooth,1,ParallelBufferedSort,4,12
10,SawTooth,1,ParallelBufferedSort,5,22
10,SawTooth,1,ParallelBufferedSort,6,37
10,SawTooth,1,ParallelBufferedSort,7,58
10,SawTooth,1,ParallelBufferedSort,8,84
10,SawTooth,1,ParallelBufferedSort,9,120
10,SawTooth,1,ParallelBufferedSort,10,162
10,SawTooth,1,ParallelRadixSort,0,22
10,SawTooth,1,ParallelRadixSort,1,25
10,SawTooth,1,ParallelRadixSort,2,31
10,SawTooth,1,ParallelRadixSort,3,52
10,SawTooth,1,ParallelRadixSort,4,87
10,SawTooth,1,ParallelRadixSort,5,145
10,SawTooth,1,ParallelRadixSort,6,233
10,SawTooth,1,ParallelRadixSort,7,358
10,SawTooth,1,ParallelRadixSort,8,516
10,SawTooth,1,ParallelRadixSort,9,723
10,SawTooth,1,ParallelRadixSort,10,995
10,SawTooth,1,StdSort,0,1
10,SawTooth,1,StdSort,1,1
10,SawTooth,1,StdSort,2,2
10,SawTooth,1,StdSort,3,6
10,SawTooth,1,StdSort,4,11
10,SawTooth,1,StdSort,5,21
10,SawTooth,1,StdSort,6,35
10,SawTooth,1,StdSort,7,54
10,SawTooth,1,StdSort,8,81
10,SawTooth,1,StdSort,9,115
10,SawTooth,1,StdSort,10,156
10,SawTooth,2,ParallelSort,0,1
10,SawTooth,2,ParallelSort,1,2
10,SawTooth,2,ParallelSort,2,3
10,SawTooth,2,ParallelSort,3,7
10,SawTooth,2,ParallelSort,4,14
10,SawTooth,2,ParallelSort,5,26
10,SawTooth,2,ParallelSort,6,43
10,SawTooth,2,ParallelSort,7,66
10,SawTooth,2,ParallelSort,8,99
10,SawTooth,2,ParallelSort,9,140
10,SawTooth,2,ParallelSort,10,190
10,SawTooth,2,ParallelBufferedSort,0,1
10,SawTooth,2,ParallelBufferedSort,1,2
10,SawTooth,2,ParallelBufferedSort,2,3
10,SawTooth,2,ParallelBufferedSort,3,7
10,SawTooth,2,ParallelBufferedSort,4,14
10,SawTooth,2,ParallelBufferedSort,5,26
10,SawTooth,2,ParallelBufferedSort,6,43
10,SawTooth,2,ParallelBufferedSort,7,67
10,SawTooth,2,ParallelBufferedSort,8,99
10,SawTooth,2,ParallelBufferedSort,9,140
10,SawTooth,2,ParallelBufferedSort,10,191
10,SawTooth,2,ParallelRadixSort,0,45
10,SawTooth,2,ParallelRadixSort,1,46
10,SawTooth,2,ParallelRadixSort,2,49
10,SawTooth,2,ParallelRadixSort,3,72
10,SawTooth,2,ParallelRadixSort,4,109
10,SawTooth,2,ParallelRadixSort,5,170
10,SawTooth,2,ParallelRadixSort,6,256
10,SawTooth,2,ParallelRadixSort,7,381
10,SawTooth,2,ParallelRadixSort,8,541
10,SawTooth,2,ParallelRadixSort,9,762
10,SawTooth,2,ParallelRadixSort,10,1051
10,SawTooth,2,StdSort,0,1
10,SawTooth,2,StdSort,1,1
10,SawTooth,2,StdSort,2,3
10,SawTooth,2,StdSort,3,7
10,SawTooth,2,StdSort,4,14
10,SawTooth,2,StdSort,5,24
10,SawTooth,2,StdSort,6,41
10,SawTooth,2,StdSort,7,65
10,SawTooth,2,StdSort,8,95
10,SawTooth,2,StdSort,9,135
10,SawTooth,2,StdSort,10,184
10,SawTooth,3,ParallelSort,0,1
10,SawTooth,3,ParallelSort,1,2
10,SawTooth,3,ParallelSort,2,3
10,SawTooth,3,ParallelSort,3,7
10,SawTooth,3,ParallelSort,4,14
10,SawTooth,3,ParallelSort,5,25
10,SawTooth,3,ParallelSort,6,43
10,SawTooth,3,ParallelSort,7,68
10,SawTooth,3,ParallelSort,8,99
10,SawTooth,3,ParallelSort,9,139
10,SawTooth,3,ParallelSort,10,191
10,SawTooth,3,ParallelBufferedSort,0,1
10,SawTooth,3,ParallelBufferedSort,1,2
10,SawTooth,3,ParallelBufferedSort,2,3
10,SawTooth,3,ParallelBufferedSort,3,7
10,SawTooth,3,ParallelBufferedSort,4,14
10,SawTooth,3,ParallelBufferedSort,5,26
10,SawTooth,3,ParallelBufferedSort,6,43
10,SawTooth,3,ParallelBufferedSort,7,67
10,SawTooth,3,ParallelBufferedSort,8,99
10,SawTooth,3,ParallelBufferedSort,9,140
10,SawTooth,3,ParallelBufferedSort,10,190
10,SawTooth,3,ParallelRadixSort,0,69
10,SawTooth,3,ParallelRadixSort,1,75
10,SawTooth,3,ParallelRadixSort,2,85
10,SawTooth,3,ParallelRadixSort,3,91
10,SawTooth,3,ParallelRadixSort,4,138
10,SawTooth,3,ParallelRadixSort,5,202
10,SawTooth,3,ParallelRadixSort,6,278
10,SawTooth,3,ParallelRadixSort,7,404
10,SawTooth,3,ParallelRadixSort,8,561
10,SawTooth,3,ParallelRadixSort,9,774
10,SawTooth,3,ParallelRadixSort,10,1006
10,SawTooth,3,StdSort,0,1
10,SawTooth,3,StdSort,1,1
10,SawTooth,3,StdSort,2,3
10,SawTooth,3,StdSort,3,6
10,SawTooth,3,StdSort,4,13
10,SawTooth,3,StdSort,5,24
10,SawTooth,3,StdSort,6,41
10,SawTooth,3,StdSort,7,64
10,SawTooth,3,StdSort,8,95
10,SawTooth,3,StdSort,9,135
10,SawTooth,3,StdSort,10,184
10,SawTooth,4,ParallelSort,0,1
10,SawTooth,4,ParallelSort,1,1
10,SawTooth,4,ParallelSort,2,3
10,SawTooth,4,ParallelSort,3,7
10,SawTooth,4,ParallelSort,4,14
10,SawTooth,4,ParallelSort,5,26
10,SawTooth,4,ParallelSort,6,43
10,SawTooth,4,ParallelSort,7,67
10,SawTooth,4,ParallelSort,8,99
10,SawTooth,4,ParallelSort,9,140
10,SawTooth,4,ParallelSort,10,190
10,SawTooth,4,ParallelBufferedSort,0,1
10,SawTooth,4,ParallelBufferedSort,1,2
10,SawTooth,4,ParallelBufferedSort,2,3
10,SawTooth,4,ParallelBufferedSort,3,7
10,SawTooth,4,ParallelBufferedSort,4,14
10,SawTooth,4,ParallelBufferedSort,5,26
10,SawTooth,4,ParallelBufferedSort,6,43
10,SawTooth,4,ParallelBufferedSort,7,67
10,SawTooth,4,ParallelBufferedSort,8,99
10,SawTooth,4,ParallelBufferedSort,9,140
10,SawTooth,4,ParallelBufferedSort,10,191
10,SawTooth,4,ParallelRadixSort,0,71
10,SawTooth,4,ParallelRadixSort,1,75
10,SawTooth,4,ParallelRadixSort,2,98
10,SawTooth,4,ParallelRadixSort,3,103
10,SawTooth,4,ParallelRadixSort,4,149
10,SawTooth,4,ParallelRadixSort,5,210
10,SawTooth,4,ParallelRadixSort,6,307
10,SawTooth,4,ParallelRadixSort,7,434
10,SawTooth,4,ParallelRadixSort,8,603
10,SawTooth,4,ParallelRadixSort,9,786
10,SawTooth,4,ParallelRadixSort,10,1071
10,SawTooth,4,StdSort,0,1
10,SawTooth,4,StdSort,1,1
10,SawTooth,4,StdSort,2,3
10,SawTooth,4,StdSort,3,7
10,SawTooth,4,StdSort,4,14
10,SawTooth,4,StdSort,5,27
10,SawTooth,4,StdSort,6,41
10,SawTooth,4,StdSort,7,64
10,SawTooth,4,StdSort,8,95
10,SawTooth,4,StdSort,9,135
10,SawTooth,4,StdSort,10,184
10,SawTooth,5,ParallelSort,0,1
10,SawTooth,5,ParallelSort,1,2
10,SawTooth,5,ParallelSort,2,3
10,SawTooth,5,ParallelSort,3,7
10,SawTooth,5,ParallelSort,4,14
10,SawTooth,5,ParallelSort,5,26
10,SawTooth,5,ParallelSort,6,42
10,SawTooth,5,ParallelSort,7,67
10,SawTooth,5,ParallelSort,8,99
10,SawTooth,5,ParallelSort,9,140
10,SawTooth,5,ParallelSort,10,191
10,SawTooth,5,ParallelBufferedSort,0,1
10,SawTooth,5,ParallelBufferedSort,1,1
10,SawTooth,5,ParallelBufferedSort,2,3
10,SawTooth,5,ParallelBufferedSort,3,7
10,SawTooth,5,ParallelBufferedSort,4,14
10,SawTooth,5,ParallelBufferedSort,5,26
10,SawTooth,5,ParallelBufferedSort,6,43
10,SawTooth,5,ParallelBufferedSort,7,67
10,SawTooth,5,ParallelBufferedSort,8,99
10,SawTooth,5,ParallelBufferedSort,9,140
10,SawTooth,5,ParallelBufferedSort,10,190
10,SawTooth,5,ParallelRadixSort,0,100
10,SawTooth,5,ParallelRadixSort,1,264
10,SawTooth,5,ParallelRadixSort,2,461
10,SawTooth,5,ParallelRadixSort,3,354
10,SawTooth,5,ParallelRadixSort,4,178
10,SawTooth,5,ParallelRadixSort,5,224
10,SawTooth,5,ParallelRadixSort,6,309
10,SawTooth,5,ParallelRadixSort,7,461
10,SawTooth,5,ParallelRadixSort,8,610
10,SawTooth,5,ParallelRadixSort,9,846
10,SawTooth,5,ParallelRadixSort,10,1095
10,SawTooth,5,StdSort,0,1
10,SawTooth,5,StdSort,1,1
10,SawTooth,5,StdSort,2,3
10,SawTooth,5,StdSort,3,6
10,SawTooth,5,StdSort,4,13
10,SawTooth,5,StdSort,5,25
10,SawTooth,5,StdSort,6,46
10,SawTooth,5,StdSort,7,65
10,SawTooth,5,StdSort,8,96
10,SawTooth,5,StdSort,9,135
10,SawTooth,5,StdSort,10,184
10,SawTooth,6,ParallelSort,0,1
10,SawTooth,6,ParallelSort,1,2
10,SawTooth,6,ParallelSort,2,4
10,SawTooth,6,ParallelSort,3,7
10,SawTooth,6,ParallelSort,4,14
10,SawTooth,6,ParallelSort,5,26
10,SawTooth,6,ParallelSort,6,43
10,SawTooth,6,ParallelSort,7,67
10,SawTooth,6,ParallelSort,8,99
10,SawTooth,6,ParallelSort,9,139
10,SawTooth,6,ParallelSort,10,192
10,SawTooth,6,ParallelBufferedSort,0,1
10,SawTooth,6,ParallelBufferedSort,1,1
10,SawTooth,6,ParallelBufferedSort,2,3
10,SawTooth,6,ParallelBufferedSort,3,7
10,SawTooth,6,ParallelBufferedSort,4,14
10,SawTooth,6,ParallelBufferedSort,5,26
10,SawTooth,6,ParallelBufferedSort,6,43
10,SawTooth,6,ParallelBufferedSort,7,67
10,SawTooth,6,ParallelBufferedSort,8,99
10,SawTooth,6,ParallelBufferedSort,9,140
10,SawTooth,6,ParallelBufferedSort,10,191
10,SawTooth,6,ParallelRadixSort,0,120
10,SawTooth,6,ParallelRadixSort,1,1002
10,SawTooth,6,ParallelRadixSort,2,123
10,SawTooth,6,ParallelRadixSort,3,535
10,SawTooth,6,ParallelRadixSort,4,337
10,SawTooth,6,ParallelRadixSort,5,236
10,SawTooth,6,ParallelRadixSort,6,527
10,SawTooth,6,ParallelRadixSort,7,453
10,SawTooth,6,ParallelRadixSort,8,616
10,SawTooth,6,ParallelRadixSort,9,864
10,SawTooth,6,ParallelRadixSort,10,1120
10,SawTooth,6,StdSort,0,1
10,SawTooth,6,StdSort,1,1
10,SawTooth,6,StdSort,2,3
10,SawTooth,6,StdSort,3,7
10,SawTooth,6,StdSort,4,13
10,SawTooth,6,StdSort,5,24
10,SawTooth,6,StdSort,6,41
10,SawTooth,6,StdSort,7,66
10,SawTooth,6,StdSort,8,97
10,SawTooth,6,StdSort,9,135
10,SawTooth,6,StdSort,10,185
10,SawTooth,7,ParallelSort,0,1
10,SawTooth,7,ParallelSort,1,2
10,SawTooth,7,ParallelSort,2,4
10,SawTooth,7,ParallelSort,3,7
10,SawTooth,7,ParallelSort,4,14
10,SawTooth,7,ParallelSort,5,26
10,SawTooth,7,ParallelSort,6,43
10,SawTooth,7,ParallelSort,7,67
10,SawTooth,7,ParallelSort,8,99
10,SawTooth,7,ParallelSort,9,140
10,SawTooth,7,ParallelSort,10,191
10,SawTooth,7,ParallelBufferedSort,0,1
10,SawTooth,7,ParallelBufferedSort,1,2
10,SawTooth,7,ParallelBufferedSort,2,4
10,SawTooth,7,ParallelBufferedSort,3,7
10,SawTooth,7,ParallelBufferedSort,4,14
10,SawTooth,7,ParallelBufferedSort,5,26
10,SawTooth,7,ParallelBufferedSort,6,43
10,SawTooth,7,ParallelBufferedSort,7,67
10,SawTooth,7,ParallelBufferedSort,8,99
10,SawTooth,7,ParallelBufferedSort,9,139
10,SawTooth,7,ParallelBufferedSort,10,191
10,SawTooth,7,ParallelRadixSort,0,885
10,SawTooth,7,ParallelRadixSort,1,1140
10,SawTooth,7,ParallelRadixSort,2,720
10,SawTooth,7,ParallelRadixSort,3,1141
10,SawTooth,7,ParallelRadixSort,4,667
10,SawTooth,7,ParallelRadixSort,5,1075
10,SawTooth,7,ParallelRadixSort,6,950
10,SawTooth,7,ParallelRadixSort,7,769
10,SawTooth,7,ParallelRadixSort,8,1122
10,SawTooth,7,ParallelRadixSort,9,831
10,SawTooth,7,ParallelRadixSort,10,1106
10,SawTooth,7,StdSort,0,1
10,SawTooth,7,StdSort,1,1
10,SawTooth,7,StdSort,2,3
10,SawTooth,7,StdSort,3,7
10,SawTooth,7,StdSort,4,13
10,SawTooth,7,StdSort,5,24
10,SawTooth,7,StdSort,6,41
10,SawTooth,7,StdSort,7,64
10,SawTooth,7,StdSort,8,95
10,SawTooth,7,StdSort,9,137
10,SawTooth,7,StdSort,10,206
10,SawTooth,8,ParallelSort,0,1
10,SawTooth,8,ParallelSort,1,3
10,SawTooth,8,ParallelSort,2,3
10,SawTooth,8,ParallelSort,3,6
10,SawTooth,8,ParallelSort,4,12
10,SawTooth,8,ParallelSort,5,22
10,SawTooth,8,ParallelSort,6,37
10,SawTooth,8,ParallelSort,7,57
10,SawTooth,8,ParallelSort,8,85
10,SawTooth,8,ParallelSort,9,119
10,SawTooth,8,ParallelSort,10,162
10,SawTooth,8,ParallelBufferedSort,0,1
10,SawTooth,8,ParallelBufferedSort,1,2
10,SawTooth,8,ParallelBufferedSort,2,3
10,SawTooth,8,ParallelBufferedSort,3,6
10,SawTooth,8,ParallelBufferedSort,4,12
10,SawTooth,8,ParallelBufferedSort,5,22
10,SawTooth,8,ParallelBufferedSort,6,37
10,SawTooth,8,ParallelBufferedSort,7,57
10,SawTooth,8,ParallelBufferedSort,8,85
10,SawTooth,8,ParallelBufferedSort,9,119
10,SawTooth,8,ParallelBufferedSort,10,163
10,SawTooth,8,ParallelRadixSort,0,1357
10,SawTooth,8,ParallelRadixSort,1,1220
10,SawTooth,8,ParallelRadixSort,2,1204
10,SawTooth,8,ParallelRadixSort,3,1387
10,SawTooth,8,ParallelRadixSort,4,1357
10,SawTooth,8,ParallelRadixSort,5,1239
10,SawTooth,8,ParallelRadixSort,6,1330
10,SawTooth,8,ParallelRadixSort,7,1621
10,SawTooth,8,ParallelRadixSort,8,1012
10,SawTooth,8,ParallelRadixSort,9,1558
10,SawTooth,8,ParallelRadixSort,10,1665
10,SawTooth,8,StdSort,0,1
10,SawTooth,8,StdSort,1,1
10,SawTooth,8,StdSort,2,2
10,SawTooth,8,StdSort,3,5
10,SawTooth,8,StdSort,4,11
10,SawTooth,8,StdSort,5,21
10,SawTooth,8,StdSort,6,35
10,SawTooth,8,StdSort,7,55
10,SawTooth,8,StdSort,8,81
10,SawTooth,8,StdSort,9,116
10,SawTooth,8,StdSort,10,156
100,Random,1,ParallelSort,0,19
100,Random,1,ParallelSort,1,24
100,Random,1,ParallelSort,2,66
100,Random,1,ParallelSort,3,186
100,Random,1,ParallelSort,4,407
100,Random,1,ParallelSort,5,713
100,Random,1,ParallelSort,6,1303
100,Random,1,ParallelSort,7,2011
100,Random,1,ParallelSort,8,2731
100,Random,1,ParallelSort,9,3874
100,Random,1,ParallelSort,10,5300
100,Random,1,ParallelBufferedSort,0,17
100,Random,1,ParallelBufferedSort,1,24
100,Random,1,ParallelBufferedSort,2,64
100,Random,1,ParallelBufferedSort,3,179
100,Random,1,ParallelBufferedSort,4,374
100,Random,1,ParallelBufferedSort,5,692
100,Random,1,ParallelBufferedSort,6,1179
100,Random,1,ParallelBufferedSort,7,1847
100,Random,1,ParallelBufferedSort,8,2729
100,Random,1,ParallelBufferedSort,9,3872
100,Random,1,ParallelBufferedSort,10,5298
100,Random,1,ParallelRadixSort,0,49
100,Random,1,ParallelRadixSort,1,65
100,Random,1,ParallelRadixSort,2,134
100,Random,1,ParallelRadixSort,3,347
100,Random,1,ParallelRadixSort,4,712
100,Random,1,ParallelRadixSort,5,1305
100,Random,1,ParallelRadixSort,6,2182
100,Random,1,ParallelRadixSort,7,3419
100,Random,1,ParallelRadixSort,8,5059
100,Random,1,ParallelRadixSort,9,7154
100,Random,1,ParallelRadixSort,10,9789
100,Random,1,StdSort,0,15
100,Random,1,StdSort,1,21
100,Random,1,StdSort,2,62
100,Random,1,StdSort,3,178
100,Random,1,StdSort,4,372
100,Random,1,StdSort,5,691
100,Random,1,StdSort,6,1176
100,Random,1,StdSort,7,1841
100,Random,1,StdSort,8,2723
100,Random,1,StdSort,9,3868
100,Random,1,StdSort,10,5295
100,Random,2,ParallelSort,0,18
100,Random,2,ParallelSort,1,26
100,Random,2,ParallelSort,2,69
100,Random,2,ParallelSort,3,199
100,Random,2,ParallelSort,4,411
100,Random,2,ParallelSort,5,758
100,Random,2,ParallelSort,6,1281
100,Random,2,ParallelSort,7,2020
100,Random,2,ParallelSort,8,2989
100,Random,2,ParallelSort,9,4241
100,Random,2,ParallelSort,10,5803
100,Random,2,ParallelBufferedSort,0,20
100,Random,2,ParallelBufferedSort,1,28
100,Random,2,ParallelBufferedSort,2,70
100,Random,2,ParallelBufferedSort,3,199
100,Random,2,ParallelBufferedSort,4,412
100,Random,2,ParallelBufferedSort,5,759
100,Random,2,ParallelBufferedSort,6,1291
100,Random,2,ParallelBufferedSort,7,2021
100,Random,2,ParallelBufferedSort,8,2988
100,Random,2,ParallelBufferedSort,9,4239
100,Random,2,ParallelBufferedSort,10,5803
100,Random,2,ParallelRadixSort,0,67
100,Random,2,ParallelRadixSort,1,83
100,Random,2,ParallelRadixSort,2,157
100,Random,2,ParallelRadixSort,3,365
100,Random,2,ParallelRadixSort,4,726
100,Random,2,ParallelRadixSort,5,1308
100,Random,2,ParallelRadixSort,6,2175
100,Random,2,ParallelRadixSort,7,3359
100,Random,2,ParallelRadixSort,8,4962
100,Random,2,ParallelRadixSort,9,6996
100,Random,2,ParallelRadixSort,10,9552
100,Random,2,StdSort,0,17
100,Random,2,StdSort,1,24
100,Random,2,StdSort,2,68
100,Random,2,StdSort,3,195
100,Random,2,StdSort,4,408
100,Random,2,StdSort,5,757
100,Random,2,StdSort,6,1288
100,Random,2,StdSort,7,2016
100,Random,2,StdSort,8,2982
100,Random,2,StdSort,9,4234
100,Random,2,StdSort,10,5797
100,Random,3,ParallelSort,0,17
100,Random,3,ParallelSort,1,23
100,Random,3,ParallelSort,2,67
100,Random,3,ParallelSort,3,190
100,Random,3,ParallelSort,4,397
100,Random,3,ParallelSort,5,748
100,Random,3,ParallelSort,6,1255
100,Random,3,ParallelSort,7,1963
100,Random,3,ParallelSort,8,2903
100,Random,3,ParallelSort,9,4121
100,Random,3,ParallelSort,10,5643
100,Random,3,ParallelBufferedSort,0,18
100,Random,3,ParallelBufferedSort,1,22
100,Random,3,ParallelBufferedSort,2,68
100,Random,3,ParallelBufferedSort,3,190
100,Random,3,ParallelBufferedSort,4,398
100,Random,3,ParallelBufferedSort,5,737
100,Random,3,ParallelBufferedSort,6,1252
100,Random,3,ParallelBufferedSort,7,1965
100,Random,3,ParallelBufferedSort,8,2908
100,Random,3,ParallelBufferedSort,9,4121
100,Random,3,ParallelBufferedSort,10,5642
100,Random,3,ParallelRadixSort,0,97
100,Random,3,ParallelRadixSort,1,111
100,Random,3,ParallelRadixSort,2,186
100,Random,3,ParallelRadixSort,3,390
100,Random,3,ParallelRadixSort,4,739
100,Random,3,ParallelRadixSort,5,1319
100,Random,3,ParallelRadixSort,6,2175
100,Random,3,ParallelRadixSort,7,3357
100,Random,3,ParallelRadixSort,8,4930
100,Random,3,ParallelRadixSort,9,6951
100,Random,3,ParallelRadixSort,10,9486
100,Random,3,StdSort,0,16
100,Random,3,StdSort,1,21
100,Random,3,StdSort,2,66
100,Random,3,StdSort,3,189
100,Random,3,StdSort,4,395
100,Random,3,StdSort,5,735
100,Random,3,StdSort,6,1251
100,Random,3,StdSort,7,1958
100,Random,3,StdSort,8,2898
100,Random,3,StdSort,9,4115
100,Random,3,StdSort,10,5635
100,Random,4,ParallelSort,0,18
100,Random,4,ParallelSort,1,27
100,Random,4,ParallelSort,2,66
100,Random,4,ParallelSort,3,190
100,Random,4,ParallelSort,4,397
100,Random,4,ParallelSort,5,734
100,Random,4,ParallelSort,6,1250
100,Random,4,ParallelSort,7,1956
100,Random,4,ParallelSort,8,2894
100,Random,4,ParallelSort,9,4105
100,Random,4,ParallelSort,10,5618
100,Random,4,ParallelBufferedSort,0,18
100,Random,4,ParallelBufferedSort,1,25
100,Random,4,ParallelBufferedSort,2,65
100,Random,4,ParallelBufferedSort,3,190
100,Random,4,ParallelBufferedSort,4,395
100,Random,4,ParallelBufferedSort,5,745
100,Random,4,ParallelBufferedSort,6,1249
100,Random,4,ParallelBufferedSort,7,1957
100,Random,4,ParallelBufferedSort,8,2893
100,Random,4,ParallelBufferedSort,9,4105
100,Random,4,ParallelBufferedSort,10,5617
100,Random,4,ParallelRadixSort,0,125
100,Random,4,ParallelRadixSort,1,129
100,Random,4,ParallelRadixSort,2,208
100,Random,4,ParallelRadixSort,3,433
100,Random,4,ParallelRadixSort,4,751
100,Random,4,ParallelRadixSort,5,1338
100,Random,4,ParallelRadixSort,6,2170
100,Random,4,ParallelRadixSort,7,3361
100,Random,4,ParallelRadixSort,8,4930
100,Random,4,ParallelRadixSort,9,6961
100,Random,4,ParallelRadixSort,10,9450
100,Random,4,StdSort,0,16
100,Random,4,StdSort,1,22
100,Random,4,StdSort,2,64
100,Random,4,StdSort,3,188
100,Random,4,StdSort,4,394
100,Random,4,StdSort,5,732
100,Random,4,StdSort,6,1246
100,Random,4,StdSort,7,1951
100,Random,4,StdSort,8,2887
100,Random,4,StdSort,9,4100
100,Random,4,StdSort,10,5613
100,Random,5,ParallelSort,0,17
100,Random,5,ParallelSort,1,25
100,Random,5,ParallelSort,2,72
100,Random,5,ParallelSort,3,210
100,Random,5,ParallelSort,4,438
100,Random,5,ParallelSort,5,814
100,Random,5,ParallelSort,6,1385
100,Random,5,ParallelSort,7,2167
100,Random,5,ParallelSort,8,3218
100,Random,5,ParallelSort,9,4558
100,Random,5,ParallelSort,10,6230
100,Random,5,ParallelBufferedSort,0,18
100,Random,5,ParallelBufferedSort,1,26
100,Random,5,ParallelBufferedSort,2,72
100,Random,5,ParallelBufferedSort,3,213
100,Random,5,ParallelBufferedSort,4,441
100,Random,5,ParallelBufferedSort,5,814
100,Random,5,ParallelBufferedSort,6,1384
100,Random,5,ParallelBufferedSort,7,2168
100,Random,5,ParallelBufferedSort,8,3216
100,Random,5,ParallelBufferedSort,9,4553
100,Random,5,ParallelBufferedSort,10,6231
100,Random,5,ParallelRadixSort,0,115
100,Random,5,ParallelRadixSort,1,294
100,Random,5,ParallelRadixSort,2,205
100,Random,5,ParallelRadixSort,3,425
100,Random,5,ParallelRadixSort,4,791
100,Random,5,ParallelRadixSort,5,1348
100,Random,5,ParallelRadixSort,6,2178
100,Random,5,ParallelRadixSort,7,3351
100,Random,5,ParallelRadixSort,8,4922
100,Random,5,ParallelRadixSort,9,6925
100,Random,5,ParallelRadixSort,10,9448
100,Random,5,StdSort,0,17
100,Random,5,StdSort,1,24
100,Random,5,StdSort,2,71
100,Random,5,StdSort,3,208
100,Random,5,StdSort,4,437
100,Random,5,StdSort,5,812
100,Random,5,StdSort,6,1381
100,Random,5,StdSort,7,2164
100,Random,5,StdSort,8,3213
100,Random,5,StdSort,9,4547
100,Random,5,StdSort,10,6225
100,Random,6,ParallelSort,0,16
100,Random,6,ParallelSort,1,22
100,Random,6,ParallelSort,2,64
100,Random,6,ParallelSort,3,182
100,Random,6,ParallelSort,4,380
100,Random,6,ParallelSort,5,703
100,Random,6,ParallelSort,6,1200
100,Random,6,ParallelSort,7,1876
100,Random,6,ParallelSort,8,2774
100,Random,6,ParallelSort,9,3938
100,Random,6,ParallelSort,10,5386
100,Random,6,ParallelBufferedSort,0,18
100,Random,6,ParallelBufferedSort,1,23
100,Random,6,ParallelBufferedSort,2,64
100,Random,6,ParallelBufferedSort,3,184
100,Random,6,ParallelBufferedSort,4,381
100,Random,6,ParallelBufferedSort,5,717
100,Random,6,ParallelBufferedSort,6,1202
100,Random,6,ParallelBufferedSort,7,1876
100,Random,6,ParallelBufferedSort,8,2775
100,Random,6,ParallelBufferedSort,9,3939
100,Random,6,ParallelBufferedSort,10,5392
100,Random,6,ParallelRadixSort,0,125
100,Random,6,ParallelRadixSort,1,931
100,Random,6,ParallelRadixSort,2,458
100,Random,6,ParallelRadixSort,3,442
100,Random,6,ParallelRadixSort,4,773
100,Random,6,ParallelRadixSort,5,1428
100,Random,6,ParallelRadixSort,6,2187
100,Random,6,ParallelRadixSort,7,3367
100,Random,6,ParallelRadixSort,8,4928
100,Random,6,ParallelRadixSort,9,6938
100,Random,6,ParallelRadixSort,10,9444
100,Random,6,StdSort,0,15
100,Random,6,StdSort,1,21
100,Random,6,StdSort,2,63
100,Random,6,StdSort,3,180
100,Random,6,StdSort,4,378
100,Random,6,StdSort,5,702
100,Random,6,StdSort,6,1195
100,Random,6,StdSort,7,1872
100,Random,6,StdSort,8,2769
100,Random,6,StdSort,9,3932
100,Random,6,StdSort,10,5383
100,Random,7,ParallelSort,0,19
100,Random,7,ParallelSort,1,26
100,Random,7,ParallelSort,2,70
100,Random,7,ParallelSort,3,203
100,Random,7,ParallelSort,4,421
100,Random,7,ParallelSort,5,778
100,Random,7,ParallelSort,6,1323
100,Random,7,ParallelSort,7,2070
100,Random,7,ParallelSort,8,3074
100,Random,7,ParallelSort,9,4350
100,Random,7,ParallelSort,10,5954
100,Random,7,ParallelBufferedSort,0,21
100,Random,7,ParallelBufferedSort,1,25
100,Random,7,ParallelBufferedSort,2,70
100,Random,7,ParallelBufferedSort,3,201
100,Random,7,ParallelBufferedSort,4,419
100,Random,7,ParallelBufferedSort,5,777
100,Random,7,ParallelBufferedSort,6,1323
100,Random,7,ParallelBufferedSort,7,2072
100,Random,7,ParallelBufferedSort,8,3074
100,Random,7,ParallelBufferedSort,9,4349
100,Random,7,ParallelBufferedSort,10,5953
100,Random,7,ParallelRadixSort,0,842
100,Random,7,ParallelRadixSort,1,819
100,Random,7,ParallelRadixSort,2,881
100,Random,7,ParallelRadixSort,3,1252
100,Random,7,ParallelRadixSort,4,975
100,Random,7,ParallelRadixSort,5,1354
100,Random,7,ParallelRadixSort,6,2375
100,Random,7,ParallelRadixSort,7,3376
100,Random,7,ParallelRadixSort,8,4930
100,Random,7,ParallelRadixSort,9,6946
100,Random,7,ParallelRadixSort,10,9452
100,Random,7,StdSort,0,27
100,Random,7,StdSort,1,23
100,Random,7,StdSort,2,69
100,Random,7,StdSort,3,199
100,Random,7,StdSort,4,417
100,Random,7,StdSort,5,775
100,Random,7,StdSort,6,1320
100,Random,7,StdSort,7,2066
100,Random,7,StdSort,8,3059
100,Random,7,StdSort,9,4343
100,Random,7,StdSort,10,5947
100,Random,8,ParallelSort,0,17
100,Random,8,ParallelSort,1,25
100,Random,8,ParallelSort,2,64
100,Random,8,ParallelSort,3,184
100,Random,8,ParallelSort,4,383
100,Random,8,ParallelSort,5,721
100,Random,8,ParallelSort,6,1208
100,Random,8,ParallelSort,7,1886
100,Random,8,ParallelSort,8,2789
100,Random,8,ParallelSort,9,3960
100,Random,8,ParallelSort,10,5422
100,Random,8,ParallelBufferedSort,0,18
100,Random,8,ParallelBufferedSort,1,24
100,Random,8,ParallelBufferedSort,2,64
100,Random,8,ParallelBufferedSort,3,184
100,Random,8,ParallelBufferedSort,4,383
100,Random,8,ParallelBufferedSort,5,708
100,Random,8,ParallelBufferedSort,6,1205
100,Random,8,ParallelBufferedSort,7,1885
100,Random,8,ParallelBufferedSort,8,2799
100,Random,8,ParallelBufferedSort,9,3959
100,Random,8,ParallelBufferedSort,10,5415
100,Random,8,ParallelRadixSort,0,1402
100,Random,8,ParallelRadixSort,1,1472
100,Random,8,ParallelRadixSort,2,1021
100,Random,8,ParallelRadixSort,3,1685
100,Random,8,ParallelRadixSort,4,1214
100,Random,8,ParallelRadixSort,5,1452
100,Random,8,ParallelRadixSort,6,2278
100,Random,8,ParallelRadixSort,7,3391
100,Random,8,ParallelRadixSort,8,4926
100,Random,8,ParallelRadixSort,9,6937
100,Random,8,ParallelRadixSort,10,9438
100,Random,8,StdSort,0,15
100,Random,8,StdSort,1,22
100,Random,8,StdSort,2,65
100,Random,8,StdSort,3,188
100,Random,8,StdSort,4,386
100,Random,8,StdSort,5,706
100,Random,8,StdSort,6,1202
100,Random,8,StdSort,7,1882
100,Random,8,StdSort,8,2784
100,Random,8,StdSort,9,3953
100,Random,8,StdSort,10,5412
100,PreSorted,1,ParallelSort,0,7
100,PreSorted,1,ParallelSort,1,10
100,PreSorted,1,ParallelSort,2,29
100,PreSorted,1,ParallelSort,3,81
100,PreSorted,1,ParallelSort,4,169
100,PreSorted,1,ParallelSort,5,314
100,PreSorted,1,ParallelSort,6,529
100,PreSorted,1,ParallelSort,7,835
100,PreSorted,1,ParallelSort,8,1242
100,PreSorted,1,ParallelSort,9,1746
100,PreSorted,1,ParallelSort,10,2401
100,PreSorted,1,ParallelBufferedSort,0,8
100,PreSorted,1,ParallelBufferedSort,1,9
100,PreSorted,1,ParallelBufferedSort,2,30
100,PreSorted,1,ParallelBufferedSort,3,81
100,PreSorted,1,ParallelBufferedSort,4,170
100,PreSorted,1,ParallelBufferedSort,5,314
100,PreSorted,1,ParallelBufferedSort,6,529
100,PreSorted,1,ParallelBufferedSort,7,832
100,PreSorted,1,ParallelBufferedSort,8,1242
100,PreSorted,1,ParallelBufferedSort,9,1759
100,PreSorted,1,ParallelBufferedSort,10,2401
100,PreSorted,1,ParallelRadixSort,0,48
100,PreSorted,1,ParallelRadixSort,1,64
100,PreSorted,1,ParallelRadixSort,2,134
100,PreSorted,1,ParallelRadixSort,3,347
100,PreSorted,1,ParallelRadixSort,4,704
100,PreSorted,1,ParallelRadixSort,5,1305
100,PreSorted,1,ParallelRadixSort,6,2182
100,PreSorted,1,ParallelRadixSort,7,3418
100,PreSorted,1,ParallelRadixSort,8,5055
100,PreSorted,1,ParallelRadixSort,9,7158
100,PreSorted,1,ParallelRadixSort,10,9788
100,PreSorted,1,StdSort,0,6
100,PreSorted,1,StdSort,1,8
100,PreSorted,1,StdSort,2,27
100,PreSorted,1,StdSort,3,80
100,PreSorted,1,StdSort,4,168
100,PreSorted,1,StdSort,5,312
100,PreSorted,1,StdSort,6,527
100,PreSorted,1,StdSort,7,828
100,PreSorted,1,StdSort,8,1239
100,PreSorted,1,StdSort,9,1753
100,PreSorted,1,StdSort,10,2394
100,PreSorted,2,ParallelSort,0,7
100,PreSorted,2,ParallelSort,1,10
100,PreSorted,2,ParallelSort,2,29
100,PreSorted,2,ParallelSort,3,81
100,PreSorted,2,ParallelSort,4,170
100,PreSorted,2,ParallelSort,5,314
100,PreSorted,2,ParallelSort,6,530
100,PreSorted,2,ParallelSort,7,835
100,PreSorted,2,ParallelSort,8,1243
100,PreSorted,2,ParallelSort,9,1760
100,PreSorted,2,ParallelSort,10,2400
100,PreSorted,2,ParallelBufferedSort,0,7
100,PreSorted,2,ParallelBufferedSort,1,9
100,PreSorted,2,ParallelBufferedSort,2,29
100,PreSorted,2,ParallelBufferedSort,3,81
100,PreSorted,2,ParallelBufferedSort,4,170
100,PreSorted,2,ParallelBufferedSort,5,314
100,PreSorted,2,ParallelBufferedSort,6,530
100,PreSorted,2,ParallelBufferedSort,7,832
100,PreSorted,2,ParallelBufferedSort,8,1245
100,PreSorted,2,ParallelBufferedSort,9,1759
100,PreSorted,2,ParallelBufferedSort,10,2400
100,PreSorted,2,ParallelRadixSort,0,70
100,PreSorted,2,ParallelRadixSort,1,84
100,PreSorted,2,ParallelRadixSort,2,155
100,PreSorted,2,ParallelRadixSort,3,366
100,PreSorted,2,ParallelRadixSort,4,724
100,PreSorted,2,ParallelRadixSort,5,1305
100,PreSorted,2,ParallelRadixSort,6,2169
100,PreSorted,2,ParallelRadixSort,7,3364
100,PreSorted,2,ParallelRadixSort,8,4957
100,PreSorted,2,ParallelRadixSort,9,6991
100,PreSorted,2,ParallelRadixSort,10,9540
100,PreSorted,2,StdSort,0,6
100,PreSorted,2,StdSort,1,9
100,PreSorted,2,StdSort,2,27
100,PreSorted,2,StdSort,3,80
100,PreSorted,2,StdSort,4,168
100,PreSorted,2,StdSort,5,312
100,PreSorted,2,StdSort,6,527
100,PreSorted,2,StdSort,7,828
100,PreSorted,2,StdSort,8,1239
100,PreSorted,2,StdSort,9,1752
100,PreSorted,2,StdSort,10,2394
100,PreSorted,3,ParallelSort,0,7
100,PreSorted,3,ParallelSort,1,10
100,PreSorted,3,ParallelSort,2,28
100,PreSorted,3,ParallelSort,3,81
100,PreSorted,3,ParallelSort,4,169
100,PreSorted,3,ParallelSort,5,314
100,PreSorted,3,ParallelSort,6,530
100,PreSorted,3,ParallelSort,7,832
100,PreSorted,3,ParallelSort,8,1242
100,PreSorted,3,ParallelSort,9,1760
100,PreSorted,3,ParallelSort,10,2405
100,PreSorted,3,ParallelBufferedSort,0,7
100,PreSorted,3,ParallelBufferedSort,1,10
100,PreSorted,3,ParallelBufferedSort,2,28
100,PreSorted,3,ParallelBufferedSort,3,81
100,PreSorted,3,ParallelBufferedSort,4,169
100,PreSorted,3,ParallelBufferedSort,5,314
100,PreSorted,3,ParallelBufferedSort,6,530
100,PreSorted,3,ParallelBufferedSort,7,831
100,PreSorted,3,ParallelBufferedSort,8,1243
100,PreSorted,3,ParallelBufferedSort,9,1758
100,PreSorted,3,ParallelBufferedSort,10,2402
100,PreSorted,3,ParallelRadixSort,0,91
100,PreSorted,3,ParallelRadixSort,1,107
100,PreSorted,3,ParallelRadixSort,2,188
100,PreSorted,3,ParallelRadixSort,3,390
100,PreSorted,3,ParallelRadixSort,4,738
100,PreSorted,3,ParallelRadixSort,5,1307
100,PreSorted,3,ParallelRadixSort,6,2177
100,PreSorted,3,ParallelRadixSort,7,3375
100,PreSorted,3,ParallelRadixSort,8,4946
100,PreSorted,3,ParallelRadixSort,9,6955
100,PreSorted,3,ParallelRadixSort,10,9483
100,PreSorted,3,StdSort,0,6
100,PreSorted,3,StdSort,1,8
100,PreSorted,3,StdSort,2,27
100,PreSorted,3,StdSort,3,80
100,PreSorted,3,StdSort,4,168
100,PreSorted,3,StdSort,5,312
100,PreSorted,3,StdSort,6,527
100,PreSorted,3,StdSort,7,828
100,PreSorted,3,StdSort,8,1239
100,PreSorted,3,StdSort,9,1752
100,PreSorted,3,StdSort,10,2394
100,PreSorted,4,ParallelSort,0,7
100,PreSorted,4,ParallelSort,1,9
100,PreSorted,4,ParallelSort,2,29
100,PreSorted,4,ParallelSort,3,81
100,PreSorted,4,ParallelSort,4,169
100,PreSorted,4,ParallelSort,5,314
100,PreSorted,4,ParallelSort,6,530
100,PreSorted,4,ParallelSort,7,831
100,PreSorted,4,ParallelSort,8,1242
100,PreSorted,4,ParallelSort,9,1748
100,PreSorted,4,ParallelSort,10,2403
100,PreSorted,4,ParallelBufferedSort,0,8
100,PreSorted,4,ParallelBufferedSort,1,10
100,PreSorted,4,ParallelBufferedSort,2,29
100,PreSorted,4,ParallelBufferedSort,3,81
100,PreSorted,4,ParallelBufferedSort,4,169
100,PreSorted,4,ParallelBufferedSort,5,314
100,PreSorted,4,ParallelBufferedSort,6,529
100,PreSorted,4,ParallelBufferedSort,7,832
100,PreSorted,4,ParallelBufferedSort,8,1243
100,PreSorted,4,ParallelBufferedSort,9,1753
100,PreSorted,4,ParallelBufferedSort,10,2402
100,PreSorted,4,ParallelRadixSort,0,126
100,PreSorted,4,ParallelRadixSort,1,128
100,PreSorted,4,ParallelRadixSort,2,210
100,PreSorted,4,ParallelRadixSort,3,427
100,PreSorted,4,ParallelRadixSort,4,759
100,PreSorted,4,ParallelRadixSort,5,1328
100,PreSorted,4,ParallelRadixSort,6,2175
100,PreSorted,4,ParallelRadixSort,7,3353
100,PreSorted,4,ParallelRadixSort,8,4928
100,PreSorted,4,ParallelRadixSort,9,6951
100,PreSorted,4,ParallelRadixSort,10,9456
100,PreSorted,4,StdSort,0,6
100,PreSorted,4,StdSort,1,9
100,PreSorted,4,StdSort,2,27
100,PreSorted,4,StdSort,3,80
100,PreSorted,4,StdSort,4,168
100,PreSorted,4,StdSort,5,312
100,PreSorted,4,StdSort,6,527
100,PreSorted,4,StdSort,7,828
100,PreSorted,4,StdSort,8,1238
100,PreSorted,4,StdSort,9,1753
100,PreSorted,4,StdSort,10,2394
100,PreSorted,5,ParallelSort,0,7
100,PreSorted,5,ParallelSort,1,10
100,PreSorted,5,ParallelSort,2,29
100,PreSorted,5,ParallelSort,3,82
100,PreSorted,5,ParallelSort,4,169
100,PreSorted,5,ParallelSort,5,314
100,PreSorted,5,ParallelSort,6,529
100,PreSorted,5,ParallelSort,7,832
100,PreSorted,5,ParallelSort,8,1233
100,PreSorted,5,ParallelSort,9,1757
100,PreSorted,5,ParallelSort,10,2400
100,PreSorted,5,ParallelBufferedSort,0,7
100,PreSorted,5,ParallelBufferedSort,1,11
100,PreSorted,5,ParallelBufferedSort,2,28
100,PreSorted,5,ParallelBufferedSort,3,81
100,PreSorted,5,ParallelBufferedSort,4,169
100,PreSorted,5,ParallelBufferedSort,5,314
100,PreSorted,5,ParallelBufferedSort,6,529
100,PreSorted,5,ParallelBufferedSort,7,832
100,PreSorted,5,ParallelBufferedSort,8,1243
100,PreSorted,5,ParallelBufferedSort,9,1758
100,PreSorted,5,ParallelBufferedSort,10,2400
100,PreSorted,5,ParallelRadixSort,0,113
100,PreSorted,5,ParallelRadixSort,1,141
100,PreSorted,5,ParallelRadixSort,2,236
100,PreSorted,5,ParallelRadixSort,3,414
100,PreSorted,5,ParallelRadixSort,4,780
100,PreSorted,5,ParallelRadixSort,5,1342
100,PreSorted,5,ParallelRadixSort,6,2180
100,PreSorted,5,ParallelRadixSort,7,3367
100,PreSorted,5,ParallelRadixSort,8,4924
100,PreSorted,5,ParallelRadixSort,9,6922
100,PreSorted,5,ParallelRadixSort,10,9425
100,PreSorted,5,StdSort,0,12
100,PreSorted,5,StdSort,1,9
100,PreSorted,5,StdSort,2,27
100,PreSorted,5,StdSort,3,80
100,PreSorted,5,StdSort,4,168
100,PreSorted,5,StdSort,5,312
100,PreSorted,5,StdSort,6,527
100,PreSorted,5,StdSort,7,828
100,PreSorted,5,StdSort,8,1238
100,PreSorted,5,StdSort,9,1753
100,PreSorted,5,StdSort,10,2394
100,PreSorted,6,ParallelSort,0,7
100,PreSorted,6,ParallelSort,1,10
100,PreSorted,6,ParallelSort,2,28
100,PreSorted,6,ParallelSort,3,82
100,PreSorted,6,ParallelSort,4,169
100,PreSorted,6,ParallelSort,5,314
100,PreSorted,6,ParallelSort,6,530
100,PreSorted,6,ParallelSort,7,832
100,PreSorted,6,ParallelSort,8,1243
100,PreSorted,6,ParallelSort,9,1745
100,PreSorted,6,ParallelSort,10,2399
100,PreSorted,6,ParallelBufferedSort,0,7
100,PreSorted,6,ParallelBufferedSort,1,10
100,PreSorted,6,ParallelBufferedSort,2,29
100,PreSorted,6,ParallelBufferedSort,3,81
100,PreSorted,6,ParallelBufferedSort,4,169
100,PreSorted,6,ParallelBufferedSort,5,314
100,PreSorted,6,ParallelBufferedSort,6,530
100,PreSorted,6,ParallelBufferedSort,7,831
100,PreSorted,6,ParallelBufferedSort,8,1233
100,PreSorted,6,ParallelBufferedSort,9,1766
100,PreSorted,6,ParallelBufferedSort,10,2401
100,PreSorted,6,ParallelRadixSort,0,125
100,PreSorted,6,ParallelRadixSort,1,711
100,PreSorted,6,ParallelRadixSort,2,596
100,PreSorted,6,ParallelRadixSort,3,449
100,PreSorted,6,ParallelRadixSort,4,778
100,PreSorted,6,ParallelRadixSort,5,1424
100,PreSorted,6,ParallelRadixSort,6,2183
100,PreSorted,6,ParallelRadixSort,7,3362
100,PreSorted,6,ParallelRadixSort,8,4937
100,PreSorted,6,ParallelRadixSort,9,6936
100,PreSorted,6,ParallelRadixSort,10,9437
100,PreSorted,6,StdSort,0,6
100,PreSorted,6,StdSort,1,9
100,PreSorted,6,StdSort,2,27
100,PreSorted,6,StdSort,3,80
100,PreSorted,6,StdSort,4,168
100,PreSorted,6,StdSort,5,312
100,PreSorted,6,StdSort,6,527
100,PreSorted,6,StdSort,7,828
100,PreSorted,6,StdSort,8,1239
100,PreSorted,6,StdSort,9,1753
100,PreSorted,6,StdSort,10,2394
100,PreSorted,7,ParallelSort,0,7
100,PreSorted,7,ParallelSort,1,10
100,PreSorted,7,ParallelSort,2,29
100,PreSorted,7,ParallelSort,3,81
100,PreSorted,7,ParallelSort,4,169
100,PreSorted,7,ParallelSort,5,314
100,PreSorted,7,ParallelSort,6,529
100,PreSorted,7,ParallelSort,7,832
100,PreSorted,7,ParallelSort,8,1243
100,PreSorted,7,ParallelSort,9,1766
100,PreSorted,7,ParallelSort,10,2399
100,PreSorted,7,ParallelBufferedSort,0,7
100,PreSorted,7,ParallelBufferedSort,1,10
100,PreSorted,7,ParallelBufferedSort,2,28
100,PreSorted,7,ParallelBufferedSort,3,82
100,PreSorted,7,ParallelBufferedSort,4,171
100,PreSorted,7,ParallelBufferedSort,5,315
100,PreSorted,7,ParallelBufferedSort,6,534
100,PreSorted,7,ParallelBufferedSort,7,832
100,PreSorted,7,ParallelBufferedSort,8,1236
100,PreSorted,7,ParallelBufferedSort,9,1765
100,PreSorted,7,ParallelBufferedSort,10,2409
100,PreSorted,7,ParallelRadixSort,0,884
100,PreSorted,7,ParallelRadixSort,1,1245
100,PreSorted,7,ParallelRadixSort,2,1026
100,PreSorted,7,ParallelRadixSort,3,502
100,PreSorted,7,ParallelRadixSort,4,798
100,PreSorted,7,ParallelRadixSort,5,1525
100,PreSorted,7,ParallelRadixSort,6,2428
100,PreSorted,7,ParallelRadixSort,7,3376
100,PreSorted,7,ParallelRadixSort,8,4940
100,PreSorted,7,ParallelRadixSort,9,6938
100,PreSorted,7,ParallelRadixSort,10,9434
100,PreSorted,7,StdSort,0,12
100,PreSorted,7,StdSort,1,8
100,PreSorted,7,StdSort,2,27
100,PreSorted,7,StdSort,3,80
100,PreSorted,7,StdSort,4,168
100,PreSorted,7,StdSort,5,312
100,PreSorted,7,StdSort,6,527
100,PreSorted,7,StdSort,7,828
100,PreSorted,7,StdSort,8,1238
100,PreSorted,7,StdSort,9,1753
100,PreSorted,7,StdSort,10,2394
100,PreSorted,8,ParallelSort,0,7
100,PreSorted,8,ParallelSort,1,10
100,PreSorted,8,ParallelSort,2,28
100,PreSorted,8,ParallelSort,3,81
100,PreSorted,8,ParallelSort,4,169
100,PreSorted,8,ParallelSort,5,314
100,PreSorted,8,ParallelSort,6,529
100,PreSorted,8,ParallelSort,7,831
100,PreSorted,8,ParallelSort,8,1244
100,PreSorted,8,ParallelSort,9,1757
100,PreSorted,8,ParallelSort,10,2407
100,PreSorted,8,ParallelBufferedSort,0,8
100,PreSorted,8,ParallelBufferedSort,1,10
100,PreSorted,8,ParallelBufferedSort,2,28
100,PreSorted,8,ParallelBufferedSort,3,81
100,PreSorted,8,ParallelBufferedSort,4,169
100,PreSorted,8,ParallelBufferedSort,5,314
100,PreSorted,8,ParallelBufferedSort,6,530
100,PreSorted,8,ParallelBufferedSort,7,833
100,PreSorted,8,ParallelBufferedSort,8,1242
100,PreSorted,8,ParallelBufferedSort,9,1765
100,PreSorted,8,ParallelBufferedSort,10,2409
100,PreSorted,8,ParallelRadixSort,0,1339
100,PreSorted,8,ParallelRadixSort,1,971
100,PreSorted,8,ParallelRadixSort,2,1224
100,PreSorted,8,ParallelRadixSort,3,1719
100,PreSorted,8,ParallelRadixSort,4,1385
100,PreSorted,8,ParallelRadixSort,5,1405
100,PreSorted,8,ParallelRadixSort,6,2217
100,PreSorted,8,ParallelRadixSort,7,3563
100,PreSorted,8,ParallelRadixSort,8,4928
100,PreSorted,8,ParallelRadixSort,9,6937
100,PreSorted,8,ParallelRadixSort,10,9434
100,PreSorted,8,StdSort,0,6
100,PreSorted,8,StdSort,1,9
100,PreSorted,8,StdSort,2,27
100,PreSorted,8,StdSort,3,80
100,PreSorted,8,StdSort,4,168
100,PreSorted,8,StdSort,5,312
100,PreSorted,8,StdSort,6,527
100,PreSorted,8,StdSort,7,828
100,PreSorted,8,StdSort,8,1239
100,PreSorted,8,StdSort,9,1753
100,PreSorted,8,StdSort,10,2394
100,NearlySorted,1,ParallelSort,0,8
100,NearlySorted,1,ParallelSort,1,10
100,NearlySorted,1,ParallelSort,2,30
100,NearlySorted,1,ParallelSort,3,82
100,NearlySorted,1,ParallelSort,4,170
100,NearlySorted,1,ParallelSort,5,315
100,NearlySorted,1,ParallelSort,6,532
100,NearlySorted,1,ParallelSort,7,835
100,NearlySorted,1,ParallelSort,8,1246
100,NearlySorted,1,ParallelSort,9,1763
100,NearlySorted,1,ParallelSort,10,2408
100,NearlySorted,1,ParallelBufferedSort,0,8
100,NearlySorted,1,ParallelBufferedSort,1,10
100,NearlySorted,1,ParallelBufferedSort,2,28
100,NearlySorted,1,ParallelBufferedSort,3,81
100,NearlySorted,1,ParallelBufferedSort,4,169
100,NearlySorted,1,ParallelBufferedSort,5,315
100,NearlySorted,1,ParallelBufferedSort,6,531
100,NearlySorted,1,ParallelBufferedSort,7,834
100,NearlySorted,1,ParallelBufferedSort,8,1246
100,NearlySorted,1,ParallelBufferedSort,9,1764
100,NearlySorted,1,ParallelBufferedSort,10,2408
100,NearlySorted,1,ParallelRadixSort,0,52
100,NearlySorted,1,ParallelRadixSort,1,64
100,NearlySorted,1,ParallelRadixSort,2,134
100,NearlySorted,1,ParallelRadixSort,3,347
100,NearlySorted,1,ParallelRadixSort,4,704
100,NearlySorted,1,ParallelRadixSort,5,1304
100,NearlySorted,1,ParallelRadixSort,6,2184
100,NearlySorted,1,ParallelRadixSort,7,3418
100,NearlySorted,1,ParallelRadixSort,8,5059
100,NearlySorted,1,ParallelRadixSort,9,7153
100,NearlySorted,1,ParallelRadixSort,10,9787
100,NearlySorted,1,StdSort,0,6
100,NearlySorted,1,StdSort,1,9
100,NearlySorted,1,StdSort,2,26
100,NearlySorted,1,StdSort,3,80
100,NearlySorted,1,StdSort,4,168
100,NearlySorted,1,StdSort,5,312
100,NearlySorted,1,StdSort,6,528
100,NearlySorted,1,StdSort,7,829
100,NearlySorted,1,StdSort,8,1241
100,NearlySorted,1,StdSort,9,1756
100,NearlySorted,1,StdSort,10,2400
100,NearlySorted,2,ParallelSort,0,7
100,NearlySorted,2,ParallelSort,1,10
100,NearlySorted,2,ParallelSort,2,29
100,NearlySorted,2,ParallelSort,3,81
100,NearlySorted,2,ParallelSort,4,170
100,NearlySorted,2,ParallelSort,5,314
100,NearlySorted,2,ParallelSort,6,531
100,NearlySorted,2,ParallelSort,7,833
100,NearlySorted,2,ParallelSort,8,1245
100,NearlySorted,2,ParallelSort,9,1763
100,NearlySorted,2,ParallelSort,10,2405
100,NearlySorted,2,ParallelBufferedSort,0,8
100,NearlySorted,2,ParallelBufferedSort,1,10
100,NearlySorted,2,ParallelBufferedSort,2,27
100,NearlySorted,2,ParallelBufferedSort,3,82
100,NearlySorted,2,ParallelBufferedSort,4,170
100,NearlySorted,2,ParallelBufferedSort,5,314
100,NearlySorted,2,ParallelBufferedSort,6,530
100,NearlySorted,2,ParallelBufferedSort,7,833
100,NearlySorted,2,ParallelBufferedSort,8,1246
100,NearlySorted,2,ParallelBufferedSort,9,1764
100,NearlySorted,2,ParallelBufferedSort,10,2411
100,NearlySorted,2,ParallelRadixSort,0,69
100,NearlySorted,2,ParallelRadixSort,1,86
100,NearlySorted,2,ParallelRadixSort,2,155
100,NearlySorted,2,ParallelRadixSort,3,364
100,NearlySorted,2,ParallelRadixSort,4,723
100,NearlySorted,2,ParallelRadixSort,5,1316
100,NearlySorted,2,ParallelRadixSort,6,2172
100,NearlySorted,2,ParallelRadixSort,7,3368
100,NearlySorted,2,ParallelRadixSort,8,4954
100,NearlySorted,2,ParallelRadixSort,9,7000
100,NearlySorted,2,ParallelRadixSort,10,9549
100,NearlySorted,2,StdSort,0,6
100,NearlySorted,2,StdSort,1,11
100,NearlySorted,2,StdSort,2,26
100,NearlySorted,2,StdSort,3,80
100,NearlySorted,2,StdSort,4,168
100,NearlySorted,2,StdSort,5,313
100,NearlySorted,2,StdSort,6,528
100,NearlySorted,2,StdSort,7,830
100,NearlySorted,2,StdSort,8,1241
100,NearlySorted,2,StdSort,9,1757
100,NearlySorted,2,StdSort,10,2400
100,NearlySorted,3,ParallelSort,0,8
100,NearlySorted,3,ParallelSort,1,10
100,NearlySorted,3,ParallelSort,2,27
100,NearlySorted,3,ParallelSort,3,82
100,NearlySorted,3,ParallelSort,4,170
100,NearlySorted,3,ParallelSort,5,315
100,NearlySorted,3,ParallelSort,6,531
100,NearlySorted,3,ParallelSort,7,843
100,NearlySorted,3,ParallelSort,8,1247
100,NearlySorted,3,ParallelSort,9,1763
100,NearlySorted,3,ParallelSort,10,2408
100,NearlySorted,3,ParallelBufferedSort,0,7
100,NearlySorted,3,ParallelBufferedSort,1,10
100,NearlySorted,3,ParallelBufferedSort,2,28
100,NearlySorted,3,ParallelBufferedSort,3,81
100,NearlySorted,3,ParallelBufferedSort,4,170
100,NearlySorted,3,ParallelBufferedSort,5,314
100,NearlySorted,3,ParallelBufferedSort,6,530
100,NearlySorted,3,ParallelBufferedSort,7,844
100,NearlySorted,3,ParallelBufferedSort,8,1247
100,NearlySorted,3,ParallelBufferedSort,9,1760
100,NearlySorted,3,ParallelBufferedSort,10,2410
100,NearlySorted,3,ParallelRadixSort,0,88
100,NearlySorted,3,ParallelRadixSort,1,107
100,NearlySorted,3,ParallelRadixSort,2,181
100,NearlySorted,3,ParallelRadixSort,3,386
100,NearlySorted,3,ParallelRadixSort,4,745
100,NearlySorted,3,ParallelRadixSort,5,1318
100,NearlySorted,3,ParallelRadixSort,6,2173
100,NearlySorted,3,ParallelRadixSort,7,3368
100,NearlySorted,3,ParallelRadixSort,8,4945
100,NearlySorted,3,ParallelRadixSort,9,6959
100,NearlySorted,3,ParallelRadixSort,10,9499
100,NearlySorted,3,StdSort,0,12
100,NearlySorted,3,StdSort,1,9
100,NearlySorted,3,StdSort,2,26
100,NearlySorted,3,StdSort,3,80
100,NearlySorted,3,StdSort,4,168
100,NearlySorted,3,StdSort,5,313
100,NearlySorted,3,StdSort,6,528
100,NearlySorted,3,StdSort,7,830
100,NearlySorted,3,StdSort,8,1242
100,NearlySorted,3,StdSort,9,1757
100,NearlySorted,3,StdSort,10,2400
100,NearlySorted,4,ParallelSort,0,7
100,NearlySorted,4,ParallelSort,1,10
100,NearlySorted,4,ParallelSort,2,29
100,NearlySorted,4,ParallelSort,3,81
100,NearlySorted,4,ParallelSort,4,169
100,NearlySorted,4,ParallelSort,5,315
100,NearlySorted,4,ParallelSort,6,531
100,NearlySorted,4,ParallelSort,7,833
100,NearlySorted,4,ParallelSort,8,1253
100,NearlySorted,4,ParallelSort,9,1768
100,NearlySorted,4,ParallelSort,10,2407
100,NearlySorted,4,ParallelBufferedSort,0,8
100,NearlySorted,4,ParallelBufferedSort,1,10
100,NearlySorted,4,ParallelBufferedSort,2,30
100,NearlySorted,4,ParallelBufferedSort,3,82
100,NearlySorted,4,ParallelBufferedSort,4,170
100,NearlySorted,4,ParallelBufferedSort,5,315
100,NearlySorted,4,ParallelBufferedSort,6,531
100,NearlySorted,4,ParallelBufferedSort,7,838
100,NearlySorted,4,ParallelBufferedSort,8,1247
100,NearlySorted,4,ParallelBufferedSort,9,1769
100,NearlySorted,4,ParallelBufferedSort,10,2407
100,NearlySorted,4,ParallelRadixSort,0,95
100,NearlySorted,4,ParallelRadixSort,1,134
100,NearlySorted,4,ParallelRadixSort,2,199
100,NearlySorted,4,ParallelRadixSort,3,429
100,NearlySorted,4,ParallelRadixSort,4,761
100,NearlySorted,4,ParallelRadixSort,5,1333
100,NearlySorted,4,ParallelRadixSort,6,2175
100,NearlySorted,4,ParallelRadixSort,7,3349
100,NearlySorted,4,ParallelRadixSort,8,4927
100,NearlySorted,4,ParallelRadixSort,9,6929
100,NearlySorted,4,ParallelRadixSort,10,9438
100,NearlySorted,4,StdSort,0,12
100,NearlySorted,4,StdSort,1,9
100,NearlySorted,4,StdSort,2,26
100,NearlySorted,4,StdSort,3,80
100,NearlySorted,4,StdSort,4,168
100,NearlySorted,4,StdSort,5,313
100,NearlySorted,4,StdSort,6,528
100,NearlySorted,4,StdSort,7,830
100,NearlySorted,4,StdSort,8,1242
100,NearlySorted,4,StdSort,9,1756
100,NearlySorted,4,StdSort,10,2400
100,NearlySorted,5,ParallelSort,0,7
100,NearlySorted,5,ParallelSort,1,10
100,NearlySorted,5,ParallelSort,2,27
100,NearlySorted,5,ParallelSort,3,81
100,NearlySorted,5,ParallelSort,4,169
100,NearlySorted,5,ParallelSort,5,314
100,NearlySorted,5,ParallelSort,6,531
100,NearlySorted,5,ParallelSort,7,833
100,NearlySorted,5,ParallelSort,8,1246
100,NearlySorted,5,ParallelSort,9,1761
100,NearlySorted,5,ParallelSort,10,2411
100,NearlySorted,5,ParallelBufferedSort,0,8
100,NearlySorted,5,ParallelBufferedSort,1,10
100,NearlySorted,5,ParallelBufferedSort,2,27
100,NearlySorted,5,ParallelBufferedSort,3,82
100,NearlySorted,5,ParallelBufferedSort,4,170
100,NearlySorted,5,ParallelBufferedSort,5,315
100,NearlySorted,5,ParallelBufferedSort,6,531
100,NearlySorted,5,ParallelBufferedSort,7,833
100,NearlySorted,5,ParallelBufferedSort,8,1247
100,NearlySorted,5,ParallelBufferedSort,9,1771
100,NearlySorted,5,ParallelBufferedSort,10,2415
100,NearlySorted,5,ParallelRadixSort,0,116
100,NearlySorted,5,ParallelRadixSort,1,316
100,NearlySorted,5,ParallelRadixSort,2,203
100,NearlySorted,5,ParallelRadixSort,3,442
100,NearlySorted,5,ParallelRadixSort,4,771
100,NearlySorted,5,ParallelRadixSort,5,1342
100,NearlySorted,5,ParallelRadixSort,6,2184
100,NearlySorted,5,ParallelRadixSort,7,3361
100,NearlySorted,5,ParallelRadixSort,8,4933
100,NearlySorted,5,ParallelRadixSort,9,6950
100,NearlySorted,5,ParallelRadixSort,10,9462
100,NearlySorted,5,StdSort,0,12
100,NearlySorted,5,StdSort,1,9
100,NearlySorted,5,StdSort,2,26
100,NearlySorted,5,StdSort,3,80
100,NearlySorted,5,StdSort,4,168
100,NearlySorted,5,StdSort,5,313
100,NearlySorted,5,StdSort,6,528
100,NearlySorted,5,StdSort,7,830
100,NearlySorted,5,StdSort,8,1242
100,NearlySorted,5,StdSort,9,1757
100,NearlySorted,5,StdSort,10,2400
100,NearlySorted,6,ParallelSort,0,7
100,NearlySorted,6,ParallelSort,1,10
100,NearlySorted,6,ParallelSort,2,27
100,NearlySorted,6,ParallelSort,3,81
100,NearlySorted,6,ParallelSort,4,170
100,NearlySorted,6,ParallelSort,5,314
100,NearlySorted,6,ParallelSort,6,531
100,NearlySorted,6,ParallelSort,7,834
100,NearlySorted,6,ParallelSort,8,1246
100,NearlySorted,6,ParallelSort,9,1761
100,NearlySorted,6,ParallelSort,10,2415
100,NearlySorted,6,ParallelBufferedSort,0,8
100,NearlySorted,6,ParallelBufferedSort,1,10
100,NearlySorted,6,ParallelBufferedSort,2,27
100,NearlySorted,6,ParallelBufferedSort,3,81
100,NearlySorted,6,ParallelBufferedSort,4,170
100,NearlySorted,6,ParallelBufferedSort,5,315
100,NearlySorted,6,ParallelBufferedSort,6,531
100,NearlySorted,6,ParallelBufferedSort,7,833
100,NearlySorted,6,ParallelBufferedSort,8,1246
100,NearlySorted,6,ParallelBufferedSort,9,1769
100,NearlySorted,6,ParallelBufferedSort,10,2416
100,NearlySorted,6,ParallelRadixSort,0,140
100,NearlySorted,6,ParallelRadixSort,1,363
100,NearlySorted,6,ParallelRadixSort,2,395
100,NearlySorted,6,ParallelRadixSort,3,429
100,NearlySorted,6,ParallelRadixSort,4,779
100,NearlySorted,6,ParallelRadixSort,5,1430
100,NearlySorted,6,ParallelRadixSort,6,2189
100,NearlySorted,6,ParallelRadixSort,7,3362
100,NearlySorted,6,ParallelRadixSort,8,4931
100,NearlySorted,6,ParallelRadixSort,9,6934
100,NearlySorted,6,ParallelRadixSort,10,9447
100,NearlySorted,6,StdSort,0,13
100,NearlySorted,6,StdSort,1,9
100,NearlySorted,6,StdSort,2,26
100,NearlySorted,6,StdSort,3,80
100,NearlySorted,6,StdSort,4,168
100,NearlySorted,6,StdSort,5,313
100,NearlySorted,6,StdSort,6,528
100,NearlySorted,6,StdSort,7,830
100,NearlySorted,6,StdSort,8,1242
100,NearlySorted,6,StdSort,9,1756
100,NearlySorted,6,StdSort,10,2400
100,NearlySorted,7,ParallelSort,0,7
100,NearlySorted,7,ParallelSort,1,10
100,NearlySorted,7,ParallelSort,2,27
100,NearlySorted,7,ParallelSort,3,82
100,NearlySorted,7,ParallelSort,4,170
100,NearlySorted,7,ParallelSort,5,315
100,NearlySorted,7,ParallelSort,6,531
100,NearlySorted,7,ParallelSort,7,832
100,NearlySorted,7,ParallelSort,8,1247
100,NearlySorted,7,ParallelSort,9,1763
100,NearlySorted,7,ParallelSort,10,2407
100,NearlySorted,7,ParallelBufferedSort,0,7
100,NearlySorted,7,ParallelBufferedSort,1,9
100,NearlySorted,7,ParallelBufferedSort,2,27
100,NearlySorted,7,ParallelBufferedSort,3,81
100,NearlySorted,7,ParallelBufferedSort,4,169
100,NearlySorted,7,ParallelBufferedSort,5,314
100,NearlySorted,7,ParallelBufferedSort,6,531
100,NearlySorted,7,ParallelBufferedSort,7,833
100,NearlySorted,7,ParallelBufferedSort,8,1247
100,NearlySorted,7,ParallelBufferedSort,9,1762
100,NearlySorted,7,ParallelBufferedSort,10,2413
100,NearlySorted,7,ParallelRadixSort,0,811
100,NearlySorted,7,ParallelRadixSort,1,913
100,NearlySorted,7,ParallelRadixSort,2,994
100,NearlySorted,7,ParallelRadixSort,3,1018
100,NearlySorted,7,ParallelRadixSort,4,1186
100,NearlySorted,7,ParallelRadixSort,5,1367
100,NearlySorted,7,ParallelRadixSort,6,2285
100,NearlySorted,7,ParallelRadixSort,7,3371
100,NearlySorted,7,ParallelRadixSort,8,4940
100,NearlySorted,7,ParallelRadixSort,9,6929
100,NearlySorted,7,ParallelRadixSort,10,9428
100,NearlySorted,7,StdSort,0,6
100,NearlySorted,7,StdSort,1,9
100,NearlySorted,7,StdSort,2,26
100,NearlySorted,7,StdSort,3,80
100,NearlySorted,7,StdSort,4,168
100,NearlySorted,7,StdSort,5,313
100,NearlySorted,7,StdSort,6,528
100,NearlySorted,7,StdSort,7,830
100,NearlySorted,7,StdSort,8,1242
100,NearlySorted,7,StdSort,9,1756
100,NearlySorted,7,StdSort,10,2400
100,NearlySorted,8,ParallelSort,0,8
100,NearlySorted,8,ParallelSort,1,10
100,NearlySorted,8,ParallelSort,2,27
100,NearlySorted,8,ParallelSort,3,82
100,NearlySorted,8,ParallelSort,4,170
100,NearlySorted,8,ParallelSort,5,315
100,NearlySorted,8,ParallelSort,6,531
100,NearlySorted,8,ParallelSort,7,834
100,NearlySorted,8,ParallelSort,8,1247
100,NearlySorted,8,ParallelSort,9,1762
100,NearlySorted,8,ParallelSort,10,2409
100,NearlySorted,8,ParallelBufferedSort,0,7
100,NearlySorted,8,ParallelBufferedSort,1,9
100,NearlySorted,8,ParallelBufferedSort,2,27
100,NearlySorted,8,ParallelBufferedSort,3,82
100,NearlySorted,8,ParallelBufferedSort,4,169
100,NearlySorted,8,ParallelBufferedSort,5,314
100,NearlySorted,8,ParallelBufferedSort,6,530
100,NearlySorted,8,ParallelBufferedSort,7,833
100,NearlySorted,8,ParallelBufferedSort,8,1245
100,NearlySorted,8,ParallelBufferedSort,9,1761
100,NearlySorted,8,ParallelBufferedSort,10,2410
100,NearlySorted,8,ParallelRadixSort,0,1395
100,NearlySorted,8,ParallelRadixSort,1,1359
100,NearlySorted,8,ParallelRadixSort,2,1177
100,NearlySorted,8,ParallelRadixSort,3,1386
100,NearlySorted,8,ParallelRadixSort,4,1168
100,NearlySorted,8,ParallelRadixSort,5,1542
100,NearlySorted,8,ParallelRadixSort,6,2263
100,NearlySorted,8,ParallelRadixSort,7,3537
100,NearlySorted,8,ParallelRadixSort,8,4925
100,NearlySorted,8,ParallelRadixSort,9,6932
100,NearlySorted,8,ParallelRadixSort,10,9424
100,NearlySorted,8,StdSort,0,6
100,NearlySorted,8,StdSort,1,11
100,NearlySorted,8,StdSort,2,26
100,NearlySorted,8,StdSort,3,80
100,NearlySorted,8,StdSort,4,168
100,NearlySorted,8,StdSort,5,313
100,NearlySorted,8,StdSort,6,528
100,NearlySorted,8,StdSort,7,830
100,NearlySorted,8,StdSort,8,1242
100,NearlySorted,8,StdSort,9,1756
100,NearlySorted,8,StdSort,10,2400
100,NormalDistributionWithDups,1,ParallelSort,0,29
100,NormalDistributionWithDups,1,ParallelSort,1,38
100,NormalDistributionWithDups,1,ParallelSort,2,102
100,NormalDistributionWithDups,1,ParallelSort,3,298
100,NormalDistributionWithDups,1,ParallelSort,4,620
100,NormalDistributionWithDups,1,ParallelSort,5,1162
100,NormalDistributionWithDups,1,ParallelSort,6,1958
100,NormalDistributionWithDups,1,ParallelSort,7,3063
100,NormalDistributionWithDups,1,ParallelSort,8,4531
100,NormalDistributionWithDups,1,ParallelSort,9,6424
100,NormalDistributionWithDups,1,ParallelSort,10,8797
100,NormalDistributionWithDups,1,ParallelBufferedSort,0,29
100,NormalDistributionWithDups,1,ParallelBufferedSort,1,39
100,NormalDistributionWithDups,1,ParallelBufferedSort,2,103
100,NormalDistributionWithDups,1,ParallelBufferedSort,3,302
100,NormalDistributionWithDups,1,ParallelBufferedSort,4,623
100,NormalDistributionWithDups,1,ParallelBufferedSort,5,1155
100,NormalDistributionWithDups,1,ParallelBufferedSort,6,1951
100,NormalDistributionWithDups,1,ParallelBufferedSort,7,3059
100,NormalDistributionWithDups,1,ParallelBufferedSort,8,4531
100,NormalDistributionWithDups,1,ParallelBufferedSort,9,6425
100,NormalDistributionWithDups,1,ParallelBufferedSort,10,8789
100,NormalDistributionWithDups,1,ParallelRadixSort,0,65
100,NormalDistributionWithDups,1,ParallelRadixSort,1,85
100,NormalDistributionWithDups,1,ParallelRadixSort,2,185
100,NormalDistributionWithDups,1,ParallelRadixSort,3,497
100,NormalDistributionWithDups,1,ParallelRadixSort,4,1020
100,NormalDistributionWithDups,1,ParallelRadixSort,5,1874
100,NormalDistributionWithDups,1,ParallelRadixSort,6,3143
100,NormalDistributionWithDups,1,ParallelRadixSort,7,4916
100,NormalDistributionWithDups,1,ParallelRadixSort,8,7287
100,NormalDistributionWithDups,1,ParallelRadixSort,9,10319
100,NormalDistributionWithDups,1,ParallelRadixSort,10,14115
100,NormalDistributionWithDups,1,StdSort,0,25
100,NormalDistributionWithDups,1,StdSort,1,34
100,NormalDistributionWithDups,1,StdSort,2,101
100,NormalDistributionWithDups,1,StdSort,3,296
100,NormalDistributionWithDups,1,StdSort,4,619
100,NormalDistributionWithDups,1,StdSort,5,1158
100,NormalDistributionWithDups,1,StdSort,6,1947
100,NormalDistributionWithDups,1,StdSort,7,3050
100,NormalDistributionWithDups,1,StdSort,8,4526
100,NormalDistributionWithDups,1,StdSort,9,6418
100,NormalDistributionWithDups,1,StdSort,10,8783
100,NormalDistributionWithDups,2,ParallelSort,0,23
100,NormalDistributionWithDups,2,ParallelSort,1,29
100,NormalDistributionWithDups,2,ParallelSort,2,75
100,NormalDistributionWithDups,2,ParallelSort,3,215
100,NormalDistributionWithDups,2,ParallelSort,4,450
100,NormalDistributionWithDups,2,ParallelSort,5,845
100,NormalDistributionWithDups,2,ParallelSort,6,1417
100,NormalDistributionWithDups,2,ParallelSort,7,2219
100,NormalDistributionWithDups,2,ParallelSort,8,3294
100,NormalDistributionWithDups,2,ParallelSort,9,4662
100,NormalDistributionWithDups,2,ParallelSort,10,6378
100,NormalDistributionWithDups,2,ParallelBufferedSort,0,21
100,NormalDistributionWithDups,2,ParallelBufferedSort,1,30
100,NormalDistributionWithDups,2,ParallelBufferedSort,2,75
100,NormalDistributionWithDups,2,ParallelBufferedSort,3,216
100,NormalDistributionWithDups,2,ParallelBufferedSort,4,450
100,NormalDistributionWithDups,2,ParallelBufferedSort,5,834
100,NormalDistributionWithDups,2,ParallelBufferedSort,6,1419
100,NormalDistributionWithDups,2,ParallelBufferedSort,7,2221
100,NormalDistributionWithDups,2,ParallelBufferedSort,8,3295
100,NormalDistributionWithDups,2,ParallelBufferedSort,9,4661
100,NormalDistributionWithDups,2,ParallelBufferedSort,10,6378
100,NormalDistributionWithDups,2,ParallelRadixSort,0,73
100,NormalDistributionWithDups,2,ParallelRadixSort,1,86
100,NormalDistributionWithDups,2,ParallelRadixSort,2,161
100,NormalDistributionWithDups,2,ParallelRadixSort,3,375
100,NormalDistributionWithDups,2,ParallelRadixSort,4,750
100,NormalDistributionWithDups,2,ParallelRadixSort,5,1345
100,NormalDistributionWithDups,2,ParallelRadixSort,6,2239
100,NormalDistributionWithDups,2,ParallelRadixSort,7,3468
100,NormalDistributionWithDups,2,ParallelRadixSort,8,5103
100,NormalDistributionWithDups,2,ParallelRadixSort,9,7212
100,NormalDistributionWithDups,2,ParallelRadixSort,10,9839
100,NormalDistributionWithDups,2,StdSort,0,18
100,NormalDistributionWithDups,2,StdSort,1,25
100,NormalDistributionWithDups,2,StdSort,2,74
100,NormalDistributionWithDups,2,StdSort,3,214
100,NormalDistributionWithDups,2,StdSort,4,448
100,NormalDistributionWithDups,2,StdSort,5,831
100,NormalDistributionWithDups,2,StdSort,6,1415
100,NormalDistributionWithDups,2,StdSort,7,2215
100,NormalDistributionWithDups,2,StdSort,8,3287
100,NormalDistributionWithDups,2,StdSort,9,4654
100,NormalDistributionWithDups,2,StdSort,10,6372
100,NormalDistributionWithDups,3,ParallelSort,0,29
100,NormalDistributionWithDups,3,ParallelSort,1,40
100,NormalDistributionWithDups,3,ParallelSort,2,111
100,NormalDistributionWithDups,3,ParallelSort,3,321
100,NormalDistributionWithDups,3,ParallelSort,4,669
100,NormalDistributionWithDups,3,ParallelSort,5,1251
100,NormalDistributionWithDups,3,ParallelSort,6,2105
100,NormalDistributionWithDups,3,ParallelSort,7,3302
100,NormalDistributionWithDups,3,ParallelSort,8,4883
100,NormalDistributionWithDups,3,ParallelSort,9,6921
100,NormalDistributionWithDups,3,ParallelSort,10,9478
100,NormalDistributionWithDups,3,ParallelBufferedSort,0,32
100,NormalDistributionWithDups,3,ParallelBufferedSort,1,40
100,NormalDistributionWithDups,3,ParallelBufferedSort,2,112
100,NormalDistributionWithDups,3,ParallelBufferedSort,3,320
100,NormalDistributionWithDups,3,ParallelBufferedSort,4,669
100,NormalDistributionWithDups,3,ParallelBufferedSort,5,1250
100,NormalDistributionWithDups,3,ParallelBufferedSort,6,2102
100,NormalDistributionWithDups,3,ParallelBufferedSort,7,3302
100,NormalDistributionWithDups,3,ParallelBufferedSort,8,4882
100,NormalDistributionWithDups,3,ParallelBufferedSort,9,6926
100,NormalDistributionWithDups,3,ParallelBufferedSort,10,9482
100,NormalDistributionWithDups,3,ParallelRadixSort,0,116
100,NormalDistributionWithDups,3,ParallelRadixSort,1,133
100,NormalDistributionWithDups,3,ParallelRadixSort,2,249
100,NormalDistributionWithDups,3,ParallelRadixSort,3,559
100,NormalDistributionWithDups,3,ParallelRadixSort,4,1086
100,NormalDistributionWithDups,3,ParallelRadixSort,5,1969
100,NormalDistributionWithDups,3,ParallelRadixSort,6,3273
100,NormalDistributionWithDups,3,ParallelRadixSort,7,5080
100,NormalDistributionWithDups,3,ParallelRadixSort,8,7470
100,NormalDistributionWithDups,3,ParallelRadixSort,9,10572
100,NormalDistributionWithDups,3,ParallelRadixSort,10,14409
100,NormalDistributionWithDups,3,StdSort,0,53
100,NormalDistributionWithDups,3,StdSort,1,38
100,NormalDistributionWithDups,3,StdSort,2,110
100,NormalDistributionWithDups,3,StdSort,3,319
100,NormalDistributionWithDups,3,StdSort,4,666
100,NormalDistributionWithDups,3,StdSort,5,1248
100,NormalDistributionWithDups,3,StdSort,6,2097
100,NormalDistributionWithDups,3,StdSort,7,3297
100,NormalDistributionWithDups,3,StdSort,8,4879
100,NormalDistributionWithDups,3,StdSort,9,6915
100,NormalDistributionWithDups,3,StdSort,10,9472
100,NormalDistributionWithDups,4,ParallelSort,0,22
100,NormalDistributionWithDups,4,ParallelSort,1,31
100,NormalDistributionWithDups,4,ParallelSort,2,80
100,NormalDistributionWithDups,4,ParallelSort,3,237
100,NormalDistributionWithDups,4,ParallelSort,4,489
100,NormalDistributionWithDups,4,ParallelSort,5,904
100,NormalDistributionWithDups,4,ParallelSort,6,1535
100,NormalDistributionWithDups,4,ParallelSort,7,2400
100,NormalDistributionWithDups,4,ParallelSort,8,3562
100,NormalDistributionWithDups,4,ParallelSort,9,5047
100,NormalDistributionWithDups,4,ParallelSort,10,6901
100,NormalDistributionWithDups,4,ParallelBufferedSort,0,24
100,NormalDistributionWithDups,4,ParallelBufferedSort,1,32
100,NormalDistributionWithDups,4,ParallelBufferedSort,2,82
100,NormalDistributionWithDups,4,ParallelBufferedSort,3,236
100,NormalDistributionWithDups,4,ParallelBufferedSort,4,489
100,NormalDistributionWithDups,4,ParallelBufferedSort,5,904
100,NormalDistributionWithDups,4,ParallelBufferedSort,6,1535
100,NormalDistributionWithDups,4,ParallelBufferedSort,7,2400
100,NormalDistributionWithDups,4,ParallelBufferedSort,8,3561
100,NormalDistributionWithDups,4,ParallelBufferedSort,9,5038
100,NormalDistributionWithDups,4,ParallelBufferedSort,10,6896
100,NormalDistributionWithDups,4,ParallelRadixSort,0,125
100,NormalDistributionWithDups,4,ParallelRadixSort,1,141
100,NormalDistributionWithDups,4,ParallelRadixSort,2,214
100,NormalDistributionWithDups,4,ParallelRadixSort,3,484
100,NormalDistributionWithDups,4,ParallelRadixSort,4,868
100,NormalDistributionWithDups,4,ParallelRadixSort,5,1522
100,NormalDistributionWithDups,4,ParallelRadixSort,6,2521
100,NormalDistributionWithDups,4,ParallelRadixSort,7,3882
100,NormalDistributionWithDups,4,ParallelRadixSort,8,5705
100,NormalDistributionWithDups,4,ParallelRadixSort,9,8053
100,NormalDistributionWithDups,4,ParallelRadixSort,10,10990
100,NormalDistributionWithDups,4,StdSort,0,19
100,NormalDistributionWithDups,4,StdSort,1,26
100,NormalDistributionWithDups,4,StdSort,2,80
100,NormalDistributionWithDups,4,StdSort,3,232
100,NormalDistributionWithDups,4,StdSort,4,484
100,NormalDistributionWithDups,4,StdSort,5,899
100,NormalDistributionWithDups,4,StdSort,6,1528
100,NormalDistributionWithDups,4,StdSort,7,2395
100,NormalDistributionWithDups,4,StdSort,8,3557
100,NormalDistributionWithDups,4,StdSort,9,5032
100,NormalDistributionWithDups,4,StdSort,10,6890
100,NormalDistributionWithDups,5,ParallelSort,0,19
100,NormalDistributionWithDups,5,ParallelSort,1,26
100,NormalDistributionWithDups,5,ParallelSort,2,74
100,NormalDistributionWithDups,5,ParallelSort,3,204
100,NormalDistributionWithDups,5,ParallelSort,4,424
100,NormalDistributionWithDups,5,ParallelSort,5,784
100,NormalDistributionWithDups,5,ParallelSort,6,1333
100,NormalDistributionWithDups,5,ParallelSort,7,2085
100,NormalDistributionWithDups,5,ParallelSort,8,3093
100,NormalDistributionWithDups,5,ParallelSort,9,4378
100,NormalDistributionWithDups,5,ParallelSort,10,5989
100,NormalDistributionWithDups,5,ParallelBufferedSort,0,18
100,NormalDistributionWithDups,5,ParallelBufferedSort,1,26
100,NormalDistributionWithDups,5,ParallelBufferedSort,2,71
100,NormalDistributionWithDups,5,ParallelBufferedSort,3,203
100,NormalDistributionWithDups,5,ParallelBufferedSort,4,423
100,NormalDistributionWithDups,5,ParallelBufferedSort,5,785
100,NormalDistributionWithDups,5,ParallelBufferedSort,6,1334
100,NormalDistributionWithDups,5,ParallelBufferedSort,7,2086
100,NormalDistributionWithDups,5,ParallelBufferedSort,8,3090
100,NormalDistributionWithDups,5,ParallelBufferedSort,9,4375
100,NormalDistributionWithDups,5,ParallelBufferedSort,10,5987
100,NormalDistributionWithDups,5,ParallelRadixSort,0,119
100,NormalDistributionWithDups,5,ParallelRadixSort,1,176
100,NormalDistributionWithDups,5,ParallelRadixSort,2,384
100,NormalDistributionWithDups,5,ParallelRadixSort,3,472
100,NormalDistributionWithDups,5,ParallelRadixSort,4,874
100,NormalDistributionWithDups,5,ParallelRadixSort,5,1494
100,NormalDistributionWithDups,5,ParallelRadixSort,6,2430
100,NormalDistributionWithDups,5,ParallelRadixSort,7,3755
100,NormalDistributionWithDups,5,ParallelRadixSort,8,5504
100,NormalDistributionWithDups,5,ParallelRadixSort,9,7761
100,NormalDistributionWithDups,5,ParallelRadixSort,10,10567
100,NormalDistributionWithDups,5,StdSort,0,18
100,NormalDistributionWithDups,5,StdSort,1,25
100,NormalDistributionWithDups,5,StdSort,2,70
100,NormalDistributionWithDups,5,StdSort,3,202
100,NormalDistributionWithDups,5,StdSort,4,421
100,NormalDistributionWithDups,5,StdSort,5,781
100,NormalDistributionWithDups,5,StdSort,6,1328
100,NormalDistributionWithDups,5,StdSort,7,2080
100,NormalDistributionWithDups,5,StdSort,8,3077
100,NormalDistributionWithDups,5,StdSort,9,4369
100,NormalDistributionWithDups,5,StdSort,10,5982
100,NormalDistributionWithDups,6,ParallelSort,0,38
100,NormalDistributionWithDups,6,ParallelSort,1,50
100,NormalDistributionWithDups,6,ParallelSort,2,140
100,NormalDistributionWithDups,6,ParallelSort,3,410
100,NormalDistributionWithDups,6,ParallelSort,4,860
100,NormalDistributionWithDups,6,ParallelSort,5,1594
100,NormalDistributionWithDups,6,ParallelSort,6,2677
100,NormalDistributionWithDups,6,ParallelSort,7,4206
100,NormalDistributionWithDups,6,ParallelSort,8,6232
100,NormalDistributionWithDups,6,ParallelSort,9,8837
100,NormalDistributionWithDups,6,ParallelSort,10,12091
100,NormalDistributionWithDups,6,ParallelBufferedSort,0,39
100,NormalDistributionWithDups,6,ParallelBufferedSort,1,51
100,NormalDistributionWithDups,6,ParallelBufferedSort,2,140
100,NormalDistributionWithDups,6,ParallelBufferedSort,3,410
100,NormalDistributionWithDups,6,ParallelBufferedSort,4,854
100,NormalDistributionWithDups,6,ParallelBufferedSort,5,1594
100,NormalDistributionWithDups,6,ParallelBufferedSort,6,2682
100,NormalDistributionWithDups,6,ParallelBufferedSort,7,4208
100,NormalDistributionWithDups,6,ParallelBufferedSort,8,6233
100,NormalDistributionWithDups,6,ParallelBufferedSort,9,8833
100,NormalDistributionWithDups,6,ParallelBufferedSort,10,12093
100,NormalDistributionWithDups,6,ParallelRadixSort,0,178
100,NormalDistributionWithDups,6,ParallelRadixSort,1,392
100,NormalDistributionWithDups,6,ParallelRadixSort,2,573
100,NormalDistributionWithDups,6,ParallelRadixSort,3,734
100,NormalDistributionWithDups,6,ParallelRadixSort,4,1451
100,NormalDistributionWithDups,6,ParallelRadixSort,5,2502
100,NormalDistributionWithDups,6,ParallelRadixSort,6,4154
100,NormalDistributionWithDups,6,ParallelRadixSort,7,6445
100,NormalDistributionWithDups,6,ParallelRadixSort,8,9502
100,NormalDistributionWithDups,6,ParallelRadixSort,9,13405
100,NormalDistributionWithDups,6,ParallelRadixSort,10,18278
100,NormalDistributionWithDups,6,StdSort,0,35
100,NormalDistributionWithDups,6,StdSort,1,48
100,NormalDistributionWithDups,6,StdSort,2,139
100,NormalDistributionWithDups,6,StdSort,3,407
100,NormalDistributionWithDups,6,StdSort,4,851
100,NormalDistributionWithDups,6,StdSort,5,1589
100,NormalDistributionWithDups,6,StdSort,6,2673
100,NormalDistributionWithDups,6,StdSort,7,4201
100,NormalDistributionWithDups,6,StdSort,8,6240
100,NormalDistributionWithDups,6,StdSort,9,8828
100,NormalDistributionWithDups,6,StdSort,10,12086
100,NormalDistributionWithDups,7,ParallelSort,0,25
100,NormalDistributionWithDups,7,ParallelSort,1,33
100,NormalDistributionWithDups,7,ParallelSort,2,95
100,NormalDistributionWithDups,7,ParallelSort,3,276
100,NormalDistributionWithDups,7,ParallelSort,4,575
100,NormalDistributionWithDups,7,ParallelSort,5,1070
100,NormalDistributionWithDups,7,ParallelSort,6,1813
100,NormalDistributionWithDups,7,ParallelSort,7,2838
100,NormalDistributionWithDups,7,ParallelSort,8,4200
100,NormalDistributionWithDups,7,ParallelSort,9,5954
100,NormalDistributionWithDups,7,ParallelSort,10,8145
100,NormalDistributionWithDups,7,ParallelBufferedSort,0,25
100,NormalDistributionWithDups,7,ParallelBufferedSort,1,35
100,NormalDistributionWithDups,7,ParallelBufferedSort,2,94
100,NormalDistributionWithDups,7,ParallelBufferedSort,3,276
100,NormalDistributionWithDups,7,ParallelBufferedSort,4,575
100,NormalDistributionWithDups,7,ParallelBufferedSort,5,1077
100,NormalDistributionWithDups,7,ParallelBufferedSort,6,1808
100,NormalDistributionWithDups,7,ParallelBufferedSort,7,2840
100,NormalDistributionWithDups,7,ParallelBufferedSort,8,4200
100,NormalDistributionWithDups,7,ParallelBufferedSort,9,5954
100,NormalDistributionWithDups,7,ParallelBufferedSort,10,8157
100,NormalDistributionWithDups,7,ParallelRadixSort,0,843
100,NormalDistributionWithDups,7,ParallelRadixSort,1,1225
100,NormalDistributionWithDups,7,ParallelRadixSort,2,1342
100,NormalDistributionWithDups,7,ParallelRadixSort,3,581
100,NormalDistributionWithDups,7,ParallelRadixSort,4,1321
100,NormalDistributionWithDups,7,ParallelRadixSort,5,1941
100,NormalDistributionWithDups,7,ParallelRadixSort,6,2943
100,NormalDistributionWithDups,7,ParallelRadixSort,7,4552
100,NormalDistributionWithDups,7,ParallelRadixSort,8,6685
100,NormalDistributionWithDups,7,ParallelRadixSort,9,9405
100,NormalDistributionWithDups,7,ParallelRadixSort,10,12820
100,NormalDistributionWithDups,7,StdSort,0,23
100,NormalDistributionWithDups,7,StdSort,1,32
100,NormalDistributionWithDups,7,StdSort,2,93
100,NormalDistributionWithDups,7,StdSort,3,274
100,NormalDistributionWithDups,7,StdSort,4,573
100,NormalDistributionWithDups,7,StdSort,5,1062
100,NormalDistributionWithDups,7,StdSort,6,1804
100,NormalDistributionWithDups,7,StdSort,7,2826
100,NormalDistributionWithDups,7,StdSort,8,4195
100,NormalDistributionWithDups,7,StdSort,9,5950
100,NormalDistributionWithDups,7,StdSort,10,8140
100,NormalDistributionWithDups,8,ParallelSort,0,33
100,NormalDistributionWithDups,8,ParallelSort,1,46
100,NormalDistributionWithDups,8,ParallelSort,2,126
100,NormalDistributionWithDups,8,ParallelSort,3,362
100,NormalDistributionWithDups,8,ParallelSort,4,752
100,NormalDistributionWithDups,8,ParallelSort,5,1403
100,NormalDistributionWithDups,8,ParallelSort,6,2357
100,NormalDistributionWithDups,8,ParallelSort,7,3703
100,NormalDistributionWithDups,8,ParallelSort,8,5488
100,NormalDistributionWithDups,8,ParallelSort,9,7775
100,NormalDistributionWithDups,8,ParallelSort,10,10631
100,NormalDistributionWithDups,8,ParallelBufferedSort,0,33
100,NormalDistributionWithDups,8,ParallelBufferedSort,1,44
100,NormalDistributionWithDups,8,ParallelBufferedSort,2,125
100,NormalDistributionWithDups,8,ParallelBufferedSort,3,361
100,NormalDistributionWithDups,8,ParallelBufferedSort,4,755
100,NormalDistributionWithDups,8,ParallelBufferedSort,5,1404
100,NormalDistributionWithDups,8,ParallelBufferedSort,6,2359
100,NormalDistributionWithDups,8,ParallelBufferedSort,7,3705
100,NormalDistributionWithDups,8,ParallelBufferedSort,8,5486
100,NormalDistributionWithDups,8,ParallelBufferedSort,9,7776
100,NormalDistributionWithDups,8,ParallelBufferedSort,10,10629
100,NormalDistributionWithDups,8,ParallelRadixSort,0,1347
100,NormalDistributionWithDups,8,ParallelRadixSort,1,1328
100,NormalDistributionWithDups,8,ParallelRadixSort,2,1048
100,NormalDistributionWithDups,8,ParallelRadixSort,3,1642
100,NormalDistributionWithDups,8,ParallelRadixSort,4,1748
100,NormalDistributionWithDups,8,ParallelRadixSort,5,2382
100,NormalDistributionWithDups,8,ParallelRadixSort,6,4036
100,NormalDistributionWithDups,8,ParallelRadixSort,7,5995
100,NormalDistributionWithDups,8,ParallelRadixSort,8,8824
100,NormalDistributionWithDups,8,ParallelRadixSort,9,12437
100,NormalDistributionWithDups,8,ParallelRadixSort,10,16967
100,NormalDistributionWithDups,8,StdSort,0,32
100,NormalDistributionWithDups,8,StdSort,1,43
100,NormalDistributionWithDups,8,StdSort,2,124
100,NormalDistributionWithDups,8,StdSort,3,360
100,NormalDistributionWithDups,8,StdSort,4,749
100,NormalDistributionWithDups,8,StdSort,5,1399
100,NormalDistributionWithDups,8,StdSort,6,2353
100,NormalDistributionWithDups,8,StdSort,7,3698
100,NormalDistributionWithDups,8,StdSort,8,5482
100,NormalDistributionWithDups,8,StdSort,9,7768
100,NormalDistributionWithDups,8,StdSort,10,10623
100,SawTooth,1,ParallelSort,0,10
100,SawTooth,1,ParallelSort,1,13
100,SawTooth,1,ParallelSort,2,39
100,SawTooth,1,ParallelSort,3,107
100,SawTooth,1,ParallelSort,4,222
100,SawTooth,1,ParallelSort,5,409
100,SawTooth,1,ParallelSort,6,690
100,SawTooth,1,ParallelSort,7,1090
100,SawTooth,1,ParallelSort,8,1613
100,SawTooth,1,ParallelSort,9,2280
100,SawTooth,1,ParallelSort,10,3124
100,SawTooth,1,ParallelBufferedSort,0,10
100,SawTooth,1,ParallelBufferedSort,1,14
100,SawTooth,1,ParallelBufferedSort,2,40
100,SawTooth,1,ParallelBufferedSort,3,106
100,SawTooth,1,ParallelBufferedSort,4,221
100,SawTooth,1,ParallelBufferedSort,5,410
100,SawTooth,1,ParallelBufferedSort,6,689
100,SawTooth,1,ParallelBufferedSort,7,1092
100,SawTooth,1,ParallelBufferedSort,8,1614
100,SawTooth,1,ParallelBufferedSort,9,2287
100,SawTooth,1,ParallelBufferedSort,10,3122
100,SawTooth,1,ParallelRadixSort,0,49
100,SawTooth,1,ParallelRadixSort,1,64
100,SawTooth,1,ParallelRadixSort,2,134
100,SawTooth,1,ParallelRadixSort,3,350
100,SawTooth,1,ParallelRadixSort,4,708
100,SawTooth,1,ParallelRadixSort,5,1305
100,SawTooth,1,ParallelRadixSort,6,2188
100,SawTooth,1,ParallelRadixSort,7,3423
100,SawTooth,1,ParallelRadixSort,8,5060
100,SawTooth,1,ParallelRadixSort,9,7158
100,SawTooth,1,ParallelRadixSort,10,9786
100,SawTooth,1,StdSort,0,9
100,SawTooth,1,StdSort,1,12
100,SawTooth,1,StdSort,2,36
100,SawTooth,1,StdSort,3,105
100,SawTooth,1,StdSort,4,219
100,SawTooth,1,StdSort,5,406
100,SawTooth,1,StdSort,6,686
100,SawTooth,1,StdSort,7,1089
100,SawTooth,1,StdSort,8,1608
100,SawTooth,1,StdSort,9,2275
100,SawTooth,1,StdSort,10,3111
100,SawTooth,2,ParallelSort,0,12
100,SawTooth,2,ParallelSort,1,13
100,SawTooth,2,ParallelSort,2,41
100,SawTooth,2,ParallelSort,3,107
100,SawTooth,2,ParallelSort,4,222
100,SawTooth,2,ParallelSort,5,409
100,SawTooth,2,ParallelSort,6,689
100,SawTooth,2,ParallelSort,7,1089
100,SawTooth,2,ParallelSort,8,1613
100,SawTooth,2,ParallelSort,9,2283
100,SawTooth,2,ParallelSort,10,3123
100,SawTooth,2,ParallelBufferedSort,0,10
100,SawTooth,2,ParallelBufferedSort,1,13
100,SawTooth,2,ParallelBufferedSort,2,40
100,SawTooth,2,ParallelBufferedSort,3,107
100,SawTooth,2,ParallelBufferedSort,4,222
100,SawTooth,2,ParallelBufferedSort,5,409
100,SawTooth,2,ParallelBufferedSort,6,690
100,SawTooth,2,ParallelBufferedSort,7,1089
100,SawTooth,2,ParallelBufferedSort,8,1614
100,SawTooth,2,ParallelBufferedSort,9,2282
100,SawTooth,2,ParallelBufferedSort,10,3118
100,SawTooth,2,ParallelRadixSort,0,70
100,SawTooth,2,ParallelRadixSort,1,106
100,SawTooth,2,ParallelRadixSort,2,159
100,SawTooth,2,ParallelRadixSort,3,365
100,SawTooth,2,ParallelRadixSort,4,729
100,SawTooth,2,ParallelRadixSort,5,1318
100,SawTooth,2,ParallelRadixSort,6,2173
100,SawTooth,2,ParallelRadixSort,7,3371
100,SawTooth,2,ParallelRadixSort,8,4966
100,SawTooth,2,ParallelRadixSort,9,7013
100,SawTooth,2,ParallelRadixSort,10,9558
100,SawTooth,2,StdSort,0,9
100,SawTooth,2,StdSort,1,12
100,SawTooth,2,StdSort,2,37
100,SawTooth,2,StdSort,3,105
100,SawTooth,2,StdSort,4,219
100,SawTooth,2,StdSort,5,407
100,SawTooth,2,StdSort,6,686
100,SawTooth,2,StdSort,7,1089
100,SawTooth,2,StdSort,8,1608
100,SawTooth,2,StdSort,9,2275
100,SawTooth,2,StdSort,10,3109
100,SawTooth,3,ParallelSort,0,10
100,SawTooth,3,ParallelSort,1,14
100,SawTooth,3,ParallelSort,2,38
100,SawTooth,3,ParallelSort,3,107
100,SawTooth,3,ParallelSort,4,222
100,SawTooth,3,ParallelSort,5,409
100,SawTooth,3,ParallelSort,6,688
100,SawTooth,3,ParallelSort,7,1096
100,SawTooth,3,ParallelSort,8,1613
100,SawTooth,3,ParallelSort,9,2286
100,SawTooth,3,ParallelSort,10,3126
100,SawTooth,3,ParallelBufferedSort,0,10
100,SawTooth,3,ParallelBufferedSort,1,13
100,SawTooth,3,ParallelBufferedSort,2,39
100,SawTooth,3,ParallelBufferedSort,3,107
100,SawTooth,3,ParallelBufferedSort,4,221
100,SawTooth,3,ParallelBufferedSort,5,409
100,SawTooth,3,ParallelBufferedSort,6,689
100,SawTooth,3,ParallelBufferedSort,7,1091
100,SawTooth,3,ParallelBufferedSort,8,1613
100,SawTooth,3,ParallelBufferedSort,9,2287
100,SawTooth,3,ParallelBufferedSort,10,3127
100,SawTooth,3,ParallelRadixSort,0,90
100,SawTooth,3,ParallelRadixSort,1,116
100,SawTooth,3,ParallelRadixSort,2,190
100,SawTooth,3,ParallelRadixSort,3,397
100,SawTooth,3,ParallelRadixSort,4,753
100,SawTooth,3,ParallelRadixSort,5,1320
100,SawTooth,3,ParallelRadixSort,6,2180
100,SawTooth,3,ParallelRadixSort,7,3360
100,SawTooth,3,ParallelRadixSort,8,4936
100,SawTooth,3,ParallelRadixSort,9,6954
100,SawTooth,3,ParallelRadixSort,10,9484
100,SawTooth,3,StdSort,0,9
100,SawTooth,3,StdSort,1,12
100,SawTooth,3,StdSort,2,37
100,SawTooth,3,StdSort,3,105
100,SawTooth,3,StdSort,4,219
100,SawTooth,3,StdSort,5,406
100,SawTooth,3,StdSort,6,686
100,SawTooth,3,StdSort,7,1077
100,SawTooth,3,StdSort,8,1608
100,SawTooth,3,StdSort,9,2275
100,SawTooth,3,StdSort,10,3109
100,SawTooth,4,ParallelSort,0,10
100,SawTooth,4,ParallelSort,1,16
100,SawTooth,4,ParallelSort,2,42
100,SawTooth,4,ParallelSort,3,106
100,SawTooth,4,ParallelSort,4,221
100,SawTooth,4,ParallelSort,5,409
100,SawTooth,4,ParallelSort,6,689
100,SawTooth,4,ParallelSort,7,1092
100,SawTooth,4,ParallelSort,8,1615
100,SawTooth,4,ParallelSort,9,2282
100,SawTooth,4,ParallelSort,10,3125
100,SawTooth,4,ParallelBufferedSort,0,10
100,SawTooth,4,ParallelBufferedSort,1,14
100,SawTooth,4,ParallelBufferedSort,2,42
100,SawTooth,4,ParallelBufferedSort,3,107
100,SawTooth,4,ParallelBufferedSort,4,222
100,SawTooth,4,ParallelBufferedSort,5,409
100,SawTooth,4,ParallelBufferedSort,6,690
100,SawTooth,4,ParallelBufferedSort,7,1089
100,SawTooth,4,ParallelBufferedSort,8,1616
100,SawTooth,4,ParallelBufferedSort,9,2281
100,SawTooth,4,ParallelBufferedSort,10,3124
100,SawTooth,4,ParallelRadixSort,0,98
100,SawTooth,4,ParallelRadixSort,1,135
100,SawTooth,4,ParallelRadixSort,2,189
100,SawTooth,4,ParallelRadixSort,3,421
100,SawTooth,4,ParallelRadixSort,4,755
100,SawTooth,4,ParallelRadixSort,5,1344
100,SawTooth,4,ParallelRadixSort,6,2170
100,SawTooth,4,ParallelRadixSort,7,3363
100,SawTooth,4,ParallelRadixSort,8,4922
100,SawTooth,4,ParallelRadixSort,9,6945
100,SawTooth,4,ParallelRadixSort,10,9476
100,SawTooth,4,StdSort,0,9
100,SawTooth,4,StdSort,1,12
100,SawTooth,4,StdSort,2,37
100,SawTooth,4,StdSort,3,105
100,SawTooth,4,StdSort,4,219
100,SawTooth,4,StdSort,5,407
100,SawTooth,4,StdSort,6,686
100,SawTooth,4,StdSort,7,1089
100,SawTooth,4,StdSort,8,1608
100,SawTooth,4,StdSort,9,2275
100,SawTooth,4,StdSort,10,3119
100,SawTooth,5,ParallelSort,0,10
100,SawTooth,5,ParallelSort,1,13
100,SawTooth,5,ParallelSort,2,38
100,SawTooth,5,ParallelSort,3,107
100,SawTooth,5,ParallelSort,4,221
100,SawTooth,5,ParallelSort,5,409
100,SawTooth,5,ParallelSort,6,689
100,SawTooth,5,ParallelSort,7,1092
100,SawTooth,5,ParallelSort,8,1614
100,SawTooth,5,ParallelSort,9,2285
100,SawTooth,5,ParallelSort,10,3126
100,SawTooth,5,ParallelBufferedSort,0,10
100,SawTooth,5,ParallelBufferedSort,1,14
100,SawTooth,5,ParallelBufferedSort,2,38
100,SawTooth,5,ParallelBufferedSort,3,107
100,SawTooth,5,ParallelBufferedSort,4,222
100,SawTooth,5,ParallelBufferedSort,5,409
100,SawTooth,5,ParallelBufferedSort,6,690
100,SawTooth,5,ParallelBufferedSort,7,1095
100,SawTooth,5,ParallelBufferedSort,8,1612
100,SawTooth,5,ParallelBufferedSort,9,2283
100,SawTooth,5,ParallelBufferedSort,10,3125
100,SawTooth,5,ParallelRadixSort,0,115
100,SawTooth,5,ParallelRadixSort,1,154
100,SawTooth,5,ParallelRadixSort,2,574
100,SawTooth,5,ParallelRadixSort,3,428
100,SawTooth,5,ParallelRadixSort,4,775
100,SawTooth,5,ParallelRadixSort,5,1346
100,SawTooth,5,ParallelRadixSort,6,2180
100,SawTooth,5,ParallelRadixSort,7,3361
100,SawTooth,5,ParallelRadixSort,8,4932
100,SawTooth,5,ParallelRadixSort,9,6934
100,SawTooth,5,ParallelRadixSort,10,9430
100,SawTooth,5,StdSort,0,9
100,SawTooth,5,StdSort,1,12
100,SawTooth,5,StdSort,2,36
100,SawTooth,5,StdSort,3,105
100,SawTooth,5,StdSort,4,219
100,SawTooth,5,StdSort,5,407
100,SawTooth,5,StdSort,6,686
100,SawTooth,5,StdSort,7,1089
100,SawTooth,5,StdSort,8,1608
100,SawTooth,5,StdSort,9,2275
100,SawTooth,5,StdSort,10,3109
100,SawTooth,6,ParallelSort,0,10
100,SawTooth,6,ParallelSort,1,13
100,SawTooth,6,ParallelSort,2,38
100,SawTooth,6,ParallelSort,3,106
100,SawTooth,6,ParallelSort,4,222
100,SawTooth,6,ParallelSort,5,409
100,SawTooth,6,ParallelSort,6,700
100,SawTooth,6,ParallelSort,7,1093
100,SawTooth,6,ParallelSort,8,1614
100,SawTooth,6,ParallelSort,9,2282
100,SawTooth,6,ParallelSort,10,3123
100,SawTooth,6,ParallelBufferedSort,0,10
100,SawTooth,6,ParallelBufferedSort,1,13
100,SawTooth,6,ParallelBufferedSort,2,38
100,SawTooth,6,ParallelBufferedSort,3,106
100,SawTooth,6,ParallelBufferedSort,4,221
100,SawTooth,6,ParallelBufferedSort,5,408
100,SawTooth,6,ParallelBufferedSort,6,689
100,SawTooth,6,ParallelBufferedSort,7,1092
100,SawTooth,6,ParallelBufferedSort,8,1619
100,SawTooth,6,ParallelBufferedSort,9,2282
100,SawTooth,6,ParallelBufferedSort,10,3121
100,SawTooth,6,ParallelRadixSort,0,137
100,SawTooth,6,ParallelRadixSort,1,723
100,SawTooth,6,ParallelRadixSort,2,686
100,SawTooth,6,ParallelRadixSort,3,432
100,SawTooth,6,ParallelRadixSort,4,768
100,SawTooth,6,ParallelRadixSort,5,1385
100,SawTooth,6,ParallelRadixSort,6,2191
100,SawTooth,6,ParallelRadixSort,7,3368
100,SawTooth,6,ParallelRadixSort,8,4938
100,SawTooth,6,ParallelRadixSort,9,6932
100,SawTooth,6,ParallelRadixSort,10,9440
100,SawTooth,6,StdSort,0,9
100,SawTooth,6,StdSort,1,12
100,SawTooth,6,StdSort,2,36
100,SawTooth,6,StdSort,3,105
100,SawTooth,6,StdSort,4,219
100,SawTooth,6,StdSort,5,407
100,SawTooth,6,StdSort,6,686
100,SawTooth,6,StdSort,7,1088
100,SawTooth,6,StdSort,8,1608
100,SawTooth,6,StdSort,9,2275
100,SawTooth,6,StdSort,10,3109
100,SawTooth,7,ParallelSort,0,9
100,SawTooth,7,ParallelSort,1,13
100,SawTooth,7,ParallelSort,2,38
100,SawTooth,7,ParallelSort,3,106
100,SawTooth,7,ParallelSort,4,221
100,SawTooth,7,ParallelSort,5,408
100,SawTooth,7,ParallelSort,6,689
100,SawTooth,7,ParallelSort,7,1088
100,SawTooth,7,ParallelSort,8,1613
100,SawTooth,7,ParallelSort,9,2290
100,SawTooth,7,ParallelSort,10,3129
100,SawTooth,7,ParallelBufferedSort,0,10
100,SawTooth,7,ParallelBufferedSort,1,15
100,SawTooth,7,ParallelBufferedSort,2,38
100,SawTooth,7,ParallelBufferedSort,3,107
100,SawTooth,7,ParallelBufferedSort,4,221
100,SawTooth,7,ParallelBufferedSort,5,409
100,SawTooth,7,ParallelBufferedSort,6,696
100,SawTooth,7,ParallelBufferedSort,7,1089
100,SawTooth,7,ParallelBufferedSort,8,1619
100,SawTooth,7,ParallelBufferedSort,9,2284
100,SawTooth,7,ParallelBufferedSort,10,3117
100,SawTooth,7,ParallelRadixSort,0,911
100,SawTooth,7,ParallelRadixSort,1,878
100,SawTooth,7,ParallelRadixSort,2,987
100,SawTooth,7,ParallelRadixSort,3,1108
100,SawTooth,7,ParallelRadixSort,4,828
100,SawTooth,7,ParallelRadixSort,5,1390
100,SawTooth,7,ParallelRadixSort,6,2394
100,SawTooth,7,ParallelRadixSort,7,3371
100,SawTooth,7,ParallelRadixSort,8,4944
100,SawTooth,7,ParallelRadixSort,9,6933
100,SawTooth,7,ParallelRadixSort,10,9439
100,SawTooth,7,StdSort,0,9
100,SawTooth,7,StdSort,1,12
100,SawTooth,7,StdSort,2,36
100,SawTooth,7,StdSort,3,105
100,SawTooth,7,StdSort,4,219
100,SawTooth,7,StdSort,5,407
100,SawTooth,7,StdSort,6,686
100,SawTooth,7,StdSort,7,1077
100,SawTooth,7,StdSort,8,1608
100,SawTooth,7,StdSort,9,2275
100,SawTooth,7,StdSort,10,3109
100,SawTooth,8,ParallelSort,0,10
100,SawTooth,8,ParallelSort,1,13
100,SawTooth,8,ParallelSort,2,38
100,SawTooth,8,ParallelSort,3,107
100,SawTooth,8,ParallelSort,4,221
100,SawTooth,8,ParallelSort,5,409
100,SawTooth,8,ParallelSort,6,689
100,SawTooth,8,ParallelSort,7,1092
100,SawTooth,8,ParallelSort,8,1615
100,SawTooth,8,ParallelSort,9,2288
100,SawTooth,8,ParallelSort,10,3125
100,SawTooth,8,ParallelBufferedSort,0,10
100,SawTooth,8,ParallelBufferedSort,1,13
100,SawTooth,8,ParallelBufferedSort,2,38
100,SawTooth,8,ParallelBufferedSort,3,107
100,SawTooth,8,ParallelBufferedSort,4,221
100,SawTooth,8,ParallelBufferedSort,5,409
100,SawTooth,8,ParallelBufferedSort,6,690
100,SawTooth,8,ParallelBufferedSort,7,1088
100,SawTooth,8,ParallelBufferedSort,8,1616
100,SawTooth,8,ParallelBufferedSort,9,2282
100,SawTooth,8,ParallelBufferedSort,10,3128
100,SawTooth,8,ParallelRadixSort,0,1331
100,SawTooth,8,ParallelRadixSort,1,1394
100,SawTooth,8,ParallelRadixSort,2,1425
100,SawTooth,8,ParallelRadixSort,3,1190
100,SawTooth,8,ParallelRadixSort,4,2062
100,SawTooth,8,ParallelRadixSort,5,1416
100,SawTooth,8,ParallelRadixSort,6,2237
100,SawTooth,8,ParallelRadixSort,7,3432
100,SawTooth,8,ParallelRadixSort,8,4932
100,SawTooth,8,ParallelRadixSort,9,6940
100,SawTooth,8,ParallelRadixSort,10,9441
100,SawTooth,8,StdSort,0,9
100,SawTooth,8,StdSort,1,12
100,SawTooth,8,StdSort,2,36
100,SawTooth,8,StdSort,3,105
100,SawTooth,8,StdSort,4,219
100,SawTooth,8,StdSort,5,406
100,SawTooth,8,StdSort,6,686
100,SawTooth,8,StdSort,7,1077
100,SawTooth,8,StdSort,8,1608
100,SawTooth,8,StdSort,9,2275
100,SawTooth,8,StdSort,10,3109
1000,Random,1,ParallelSort,0,268
1000,Random,1,ParallelSort,1,359
1000,Random,1,ParallelSort,2,1017
1000,Random,1,ParallelSort,3,2955
1000,Random,1,ParallelSort,4,6164
1000,Random,1,ParallelSort,5,11385
1000,Random,1,ParallelSort,6,19201
1000,Random,1,ParallelSort,7,30153
1000,Random,1,ParallelSort,8,44679
1000,Random,1,ParallelSort,9,63388
1000,Random,1,ParallelSort,10,86684
1000,Random,1,ParallelBufferedSort,0,255
1000,Random,1,ParallelBufferedSort,1,362
1000,Random,1,ParallelBufferedSort,2,1030
1000,Random,1,ParallelBufferedSort,3,2971
1000,Random,1,ParallelBufferedSort,4,6148
1000,Random,1,ParallelBufferedSort,5,11377
1000,Random,1,ParallelBufferedSort,6,19198
1000,Random,1,ParallelBufferedSort,7,30164
1000,Random,1,ParallelBufferedSort,8,44698
1000,Random,1,ParallelBufferedSort,9,63388
1000,Random,1,ParallelBufferedSort,10,86691
1000,Random,1,ParallelRadixSort,0,317
1000,Random,1,ParallelRadixSort,1,479
1000,Random,1,ParallelRadixSort,2,1187
1000,Random,1,ParallelRadixSort,3,3336
1000,Random,1,ParallelRadixSort,4,6909
1000,Random,1,ParallelRadixSort,5,12821
1000,Random,1,ParallelRadixSort,6,21652
1000,Random,1,ParallelRadixSort,7,33969
1000,Random,1,ParallelRadixSort,8,50337
1000,Random,1,ParallelRadixSort,9,71351
1000,Random,1,ParallelRadixSort,10,97664
1000,Random,1,StdSort,0,258
1000,Random,1,StdSort,1,360
1000,Random,1,StdSort,2,1025
1000,Random,1,StdSort,3,2932
1000,Random,1,StdSort,4,6135
1000,Random,1,StdSort,5,11370
1000,Random,1,StdSort,6,19199
1000,Random,1,StdSort,7,30153
1000,Random,1,StdSort,8,44688
1000,Random,1,StdSort,9,63358
1000,Random,1,StdSort,10,86691
1000,Random,2,ParallelSort,0,254
1000,Random,2,ParallelSort,1,361
1000,Random,2,ParallelSort,2,1026
1000,Random,2,ParallelSort,3,2945
1000,Random,2,ParallelSort,4,6170
1000,Random,2,ParallelSort,5,11391
1000,Random,2,ParallelSort,6,19233
1000,Random,2,ParallelSort,7,30193
1000,Random,2,ParallelSort,8,44747
1000,Random,2,ParallelSort,9,63458
1000,Random,2,ParallelSort,10,86822
1000,Random,2,ParallelBufferedSort,0,273
1000,Random,2,ParallelBufferedSort,1,361
1000,Random,2,ParallelBufferedSort,2,1024
1000,Random,2,ParallelBufferedSort,3,2939
1000,Random,2,ParallelBufferedSort,4,6154
1000,Random,2,ParallelBufferedSort,5,11414
1000,Random,2,ParallelBufferedSort,6,19230
1000,Random,2,ParallelBufferedSort,7,30186
1000,Random,2,ParallelBufferedSort,8,44764
1000,Random,2,ParallelBufferedSort,9,63444
1000,Random,2,ParallelBufferedSort,10,86809
1000,Random,2,ParallelRadixSort,0,335
1000,Random,2,ParallelRadixSort,1,604
1000,Random,2,ParallelRadixSort,2,1207
1000,Random,2,ParallelRadixSort,3,3308
1000,Random,2,ParallelRadixSort,4,6803
1000,Random,2,ParallelRadixSort,5,12517
1000,Random,2,ParallelRadixSort,6,21081
1000,Random,2,ParallelRadixSort,7,33045
1000,Random,2,ParallelRadixSort,8,48944
1000,Random,2,ParallelRadixSort,9,69375
1000,Random,2,ParallelRadixSort,10,94878
1000,Random,2,StdSort,0,493
1000,Random,2,StdSort,1,360
1000,Random,2,StdSort,2,1026
1000,Random,2,StdSort,3,2933
1000,Random,2,StdSort,4,6146
1000,Random,2,StdSort,5,11391
1000,Random,2,StdSort,6,19227
1000,Random,2,StdSort,7,30185
1000,Random,2,StdSort,8,44744
1000,Random,2,StdSort,9,63438
1000,Random,2,StdSort,10,86807
1000,Random,3,ParallelSort,0,271
1000,Random,3,ParallelSort,1,378
1000,Random,3,ParallelSort,2,1037
1000,Random,3,ParallelSort,3,2976
1000,Random,3,ParallelSort,4,6199
1000,Random,3,ParallelSort,5,11487
1000,Random,3,ParallelSort,6,19407
1000,Random,3,ParallelSort,7,30448
1000,Random,3,ParallelSort,8,45133
1000,Random,3,ParallelSort,9,63993
1000,Random,3,ParallelSort,10,87542
1000,Random,3,ParallelBufferedSort,0,260
1000,Random,3,ParallelBufferedSort,1,367
1000,Random,3,ParallelBufferedSort,2,1038
1000,Random,3,ParallelBufferedSort,3,2970
1000,Random,3,ParallelBufferedSort,4,6198
1000,Random,3,ParallelBufferedSort,5,11486
1000,Random,3,ParallelBufferedSort,6,19396
1000,Random,3,ParallelBufferedSort,7,30446
1000,Random,3,ParallelBufferedSort,8,45130
1000,Random,3,ParallelBufferedSort,9,63970
1000,Random,3,ParallelBufferedSort,10,87542
1000,Random,3,ParallelRadixSort,0,363
1000,Random,3,ParallelRadixSort,1,532
1000,Random,3,ParallelRadixSort,2,1211
1000,Random,3,ParallelRadixSort,3,3293
1000,Random,3,ParallelRadixSort,4,6739
1000,Random,3,ParallelRadixSort,5,12423
1000,Random,3,ParallelRadixSort,6,20910
1000,Random,3,ParallelRadixSort,7,32745
1000,Random,3,ParallelRadixSort,8,48501
1000,Random,3,ParallelRadixSort,9,68749
1000,Random,3,ParallelRadixSort,10,93974
1000,Random,3,StdSort,0,263
1000,Random,3,StdSort,1,367
1000,Random,3,StdSort,2,1026
1000,Random,3,StdSort,3,2958
1000,Random,3,StdSort,4,6198
1000,Random,3,StdSort,5,11486
1000,Random,3,StdSort,6,19388
1000,Random,3,StdSort,7,30437
1000,Random,3,StdSort,8,45128
1000,Random,3,StdSort,9,63965
1000,Random,3,StdSort,10,87538
1000,Random,4,ParallelSort,0,250
1000,Random,4,ParallelSort,1,354
1000,Random,4,ParallelSort,2,1013
1000,Random,4,ParallelSort,3,2900
1000,Random,4,ParallelSort,4,6057
1000,Random,4,ParallelSort,5,11220
1000,Random,4,ParallelSort,6,18912
1000,Random,4,ParallelSort,7,29690
1000,Random,4,ParallelSort,8,44009
1000,Random,4,ParallelSort,9,62399
1000,Random,4,ParallelSort,10,85394
1000,Random,4,ParallelBufferedSort,0,272
1000,Random,4,ParallelBufferedSort,1,367
1000,Random,4,ParallelBufferedSort,2,1011
1000,Random,4,ParallelBufferedSort,3,2899
1000,Random,4,ParallelBufferedSort,4,6060
1000,Random,4,ParallelBufferedSort,5,11225
1000,Random,4,ParallelBufferedSort,6,18949
1000,Random,4,ParallelBufferedSort,7,29691
1000,Random,4,ParallelBufferedSort,8,44016
1000,Random,4,ParallelBufferedSort,9,62432
1000,Random,4,ParallelBufferedSort,10,85401
1000,Random,4,ParallelRadixSort,0,399
1000,Random,4,ParallelRadixSort,1,580
1000,Random,4,ParallelRadixSort,2,1243
1000,Random,4,ParallelRadixSort,3,3291
1000,Random,4,ParallelRadixSort,4,6721
1000,Random,4,ParallelRadixSort,5,12386
1000,Random,4,ParallelRadixSort,6,20827
1000,Random,4,ParallelRadixSort,7,32617
1000,Random,4,ParallelRadixSort,8,48301
1000,Random,4,ParallelRadixSort,9,68438
1000,Random,4,ParallelRadixSort,10,93568
1000,Random,4,StdSort,0,251
1000,Random,4,StdSort,1,352
1000,Random,4,StdSort,2,997
1000,Random,4,StdSort,3,2890
1000,Random,4,StdSort,4,6046
1000,Random,4,StdSort,5,11203
1000,Random,4,StdSort,6,18909
1000,Random,4,StdSort,7,29685
1000,Random,4,StdSort,8,44005
1000,Random,4,StdSort,9,62396
1000,Random,4,StdSort,10,85375
1000,Random,5,ParallelSort,0,264
1000,Random,5,ParallelSort,1,371
1000,Random,5,ParallelSort,2,1022
1000,Random,5,ParallelSort,3,2909
1000,Random,5,ParallelSort,4,6090
1000,Random,5,ParallelSort,5,11283
1000,Random,5,ParallelSort,6,19055
1000,Random,5,ParallelSort,7,29882
1000,Random,5,ParallelSort,8,44264
1000,Random,5,ParallelSort,9,62749
1000,Random,5,ParallelSort,10,85855
1000,Random,5,ParallelBufferedSort,0,261
1000,Random,5,ParallelBufferedSort,1,374
1000,Random,5,ParallelBufferedSort,2,1016
1000,Random,5,ParallelBufferedSort,3,2919
1000,Random,5,ParallelBufferedSort,4,6080
1000,Random,5,ParallelBufferedSort,5,11289
1000,Random,5,ParallelBufferedSort,6,19029
1000,Random,5,ParallelBufferedSort,7,29861
1000,Random,5,ParallelBufferedSort,8,44259
1000,Random,5,ParallelBufferedSort,9,62734
1000,Random,5,ParallelBufferedSort,10,85869
1000,Random,5,ParallelRadixSort,0,402
1000,Random,5,ParallelRadixSort,1,560
1000,Random,5,ParallelRadixSort,2,1241
1000,Random,5,ParallelRadixSort,3,3280
1000,Random,5,ParallelRadixSort,4,6699
1000,Random,5,ParallelRadixSort,5,12371
1000,Random,5,ParallelRadixSort,6,20789
1000,Random,5,ParallelRadixSort,7,32519
1000,Random,5,ParallelRadixSort,8,48170
1000,Random,5,ParallelRadixSort,9,68231
1000,Random,5,ParallelRadixSort,10,93342
1000,Random,5,StdSort,0,257
1000,Random,5,StdSort,1,359
1000,Random,5,StdSort,2,1019
1000,Random,5,StdSort,3,2902
1000,Random,5,StdSort,4,6079
1000,Random,5,StdSort,5,11267
1000,Random,5,StdSort,6,19018
1000,Random,5,StdSort,7,29854
1000,Random,5,StdSort,8,44252
1000,Random,5,StdSort,9,62740
1000,Random,5,StdSort,10,85851
1000,Random,6,ParallelSort,0,272
1000,Random,6,ParallelSort,1,371
1000,Random,6,ParallelSort,2,1026
1000,Random,6,ParallelSort,3,2986
1000,Random,6,ParallelSort,4,6193
1000,Random,6,ParallelSort,5,11466
1000,Random,6,ParallelSort,6,19345
1000,Random,6,ParallelSort,7,30365
1000,Random,6,ParallelSort,8,45024
1000,Random,6,ParallelSort,9,63830
1000,Random,6,ParallelSort,10,87345
1000,Random,6,ParallelBufferedSort,0,267
1000,Random,6,ParallelBufferedSort,1,373
1000,Random,6,ParallelBufferedSort,2,1026
1000,Random,6,ParallelBufferedSort,3,2965
1000,Random,6,ParallelBufferedSort,4,6183
1000,Random,6,ParallelBufferedSort,5,11478
1000,Random,6,ParallelBufferedSort,6,19343
1000,Random,6,ParallelBufferedSort,7,30375
1000,Random,6,ParallelBufferedSort,8,45033
1000,Random,6,ParallelBufferedSort,9,63837
1000,Random,6,ParallelBufferedSort,10,87348
1000,Random,6,ParallelRadixSort,0,416
1000,Random,6,ParallelRadixSort,1,837
1000,Random,6,ParallelRadixSort,2,1342
1000,Random,6,ParallelRadixSort,3,3303
1000,Random,6,ParallelRadixSort,4,6724
1000,Random,6,ParallelRadixSort,5,12349
1000,Random,6,ParallelRadixSort,6,20758
1000,Random,6,ParallelRadixSort,7,32481
1000,Random,6,ParallelRadixSort,8,48087
1000,Random,6,ParallelRadixSort,9,68140
1000,Random,6,ParallelRadixSort,10,93163
1000,Random,6,StdSort,0,257
1000,Random,6,StdSort,1,359
1000,Random,6,StdSort,2,1029
1000,Random,6,StdSort,3,2955
1000,Random,6,StdSort,4,6183
1000,Random,6,StdSort,5,11457
1000,Random,6,StdSort,6,19343
1000,Random,6,StdSort,7,30369
1000,Random,6,StdSort,8,45010
1000,Random,6,StdSort,9,63821
1000,Random,6,StdSort,10,87325
1000,Random,7,ParallelSort,0,268
1000,Random,7,ParallelSort,1,363
1000,Random,7,ParallelSort,2,998
1000,Random,7,ParallelSort,3,2858
1000,Random,7,ParallelSort,4,5958
1000,Random,7,ParallelSort,5,11025
1000,Random,7,ParallelSort,6,18612
1000,Random,7,ParallelSort,7,29214
1000,Random,7,ParallelSort,8,43268
1000,Random,7,ParallelSort,9,61381
1000,Random,7,ParallelSort,10,83953
1000,Random,7,ParallelBufferedSort,0,260
1000,Random,7,ParallelBufferedSort,1,352
1000,Random,7,ParallelBufferedSort,2,1003
1000,Random,7,ParallelBufferedSort,3,2851
1000,Random,7,ParallelBufferedSort,4,5947
1000,Random,7,ParallelBufferedSort,5,11022
1000,Random,7,ParallelBufferedSort,6,18603
1000,Random,7,ParallelBufferedSort,7,29219
1000,Random,7,ParallelBufferedSort,8,43294
1000,Random,7,ParallelBufferedSort,9,61340
1000,Random,7,ParallelBufferedSort,10,83944
1000,Random,7,ParallelRadixSort,0,803
1000,Random,7,ParallelRadixSort,1,1149
1000,Random,7,ParallelRadixSort,2,1281
1000,Random,7,ParallelRadixSort,3,3313
1000,Random,7,ParallelRadixSort,4,6712
1000,Random,7,ParallelRadixSort,5,12344
1000,Random,7,ParallelRadixSort,6,20747
1000,Random,7,ParallelRadixSort,7,32446
1000,Random,7,ParallelRadixSort,8,48040
1000,Random,7,ParallelRadixSort,9,68061
1000,Random,7,ParallelRadixSort,10,93048
1000,Random,7,StdSort,0,250
1000,Random,7,StdSort,1,349
1000,Random,7,StdSort,2,990
1000,Random,7,StdSort,3,2845
1000,Random,7,StdSort,4,5947
1000,Random,7,StdSort,5,11017
1000,Random,7,StdSort,6,18596
1000,Random,7,StdSort,7,29191
1000,Random,7,StdSort,8,43210
1000,Random,7,StdSort,9,61335
1000,Random,7,StdSort,10,83929
1000,Random,8,ParallelSort,0,267
1000,Random,8,ParallelSort,1,364
1000,Random,8,ParallelSort,2,1007
1000,Random,8,ParallelSort,3,2920
1000,Random,8,ParallelSort,4,6025
1000,Random,8,ParallelSort,5,11153
1000,Random,8,ParallelSort,6,18848
1000,Random,8,ParallelSort,7,29538
1000,Random,8,ParallelSort,8,43779
1000,Random,8,ParallelSort,9,62057
1000,Random,8,ParallelSort,10,84927
1000,Random,8,ParallelBufferedSort,0,274
1000,Random,8,ParallelBufferedSort,1,368
1000,Random,8,ParallelBufferedSort,2,1012
1000,Random,8,ParallelBufferedSort,3,2903
1000,Random,8,ParallelBufferedSort,4,6013
1000,Random,8,ParallelBufferedSort,5,11162
1000,Random,8,ParallelBufferedSort,6,18850
1000,Random,8,ParallelBufferedSort,7,29567
1000,Random,8,ParallelBufferedSort,8,43799
1000,Random,8,ParallelBufferedSort,9,62103
1000,Random,8,ParallelBufferedSort,10,84948
1000,Random,8,ParallelRadixSort,0,1076
1000,Random,8,ParallelRadixSort,1,1843
1000,Random,8,ParallelRadixSort,2,1364
1000,Random,8,ParallelRadixSort,3,3374
1000,Random,8,ParallelRadixSort,4,6726
1000,Random,8,ParallelRadixSort,5,12348
1000,Random,8,ParallelRadixSort,6,20730
1000,Random,8,ParallelRadixSort,7,32438
1000,Random,8,ParallelRadixSort,8,47976
1000,Random,8,ParallelRadixSort,9,68011
1000,Random,8,ParallelRadixSort,10,92971
1000,Random,8,StdSort,0,253
1000,Random,8,StdSort,1,354
1000,Random,8,StdSort,2,1001
1000,Random,8,StdSort,3,2875
1000,Random,8,StdSort,4,6013
1000,Random,8,StdSort,5,11141
1000,Random,8,StdSort,6,18813
1000,Random,8,StdSort,7,29531
1000,Random,8,StdSort,8,43771
1000,Random,8,StdSort,9,62058
1000,Random,8,StdSort,10,84914
1000,PreSorted,1,ParallelSort,0,107
1000,PreSorted,1,ParallelSort,1,146
1000,PreSorted,1,ParallelSort,2,446
1000,PreSorted,1,ParallelSort,3,1368
1000,PreSorted,1,ParallelSort,4,2866
1000,PreSorted,1,ParallelSort,5,5343
1000,PreSorted,1,ParallelSort,6,9030
1000,PreSorted,1,ParallelSort,7,14191
1000,PreSorted,1,ParallelSort,8,21046
1000,PreSorted,1,ParallelSort,9,29840
1000,PreSorted,1,ParallelSort,10,40830
1000,PreSorted,1,ParallelBufferedSort,0,107
1000,PreSorted,1,ParallelBufferedSort,1,148
1000,PreSorted,1,ParallelBufferedSort,2,446
1000,PreSorted,1,ParallelBufferedSort,3,1372
1000,PreSorted,1,ParallelBufferedSort,4,2868
1000,PreSorted,1,ParallelBufferedSort,5,5345
1000,PreSorted,1,ParallelBufferedSort,6,9039
1000,PreSorted,1,ParallelBufferedSort,7,14187
1000,PreSorted,1,ParallelBufferedSort,8,21038
1000,PreSorted,1,ParallelBufferedSort,9,29825
1000,PreSorted,1,ParallelBufferedSort,10,40819
1000,PreSorted,1,ParallelRadixSort,0,321
1000,PreSorted,1,ParallelRadixSort,1,484
1000,PreSorted,1,ParallelRadixSort,2,1187
1000,PreSorted,1,ParallelRadixSort,3,3335
1000,PreSorted,1,ParallelRadixSort,4,6919
1000,PreSorted,1,ParallelRadixSort,5,12824
1000,PreSorted,1,ParallelRadixSort,6,21654
1000,PreSorted,1,ParallelRadixSort,7,33966
1000,PreSorted,1,ParallelRadixSort,8,50328
1000,PreSorted,1,ParallelRadixSort,9,71378
1000,PreSorted,1,ParallelRadixSort,10,97660
1000,PreSorted,1,StdSort,0,99
1000,PreSorted,1,StdSort,1,142
1000,PreSorted,1,StdSort,2,446
1000,PreSorted,1,StdSort,3,1367
1000,PreSorted,1,StdSort,4,2876
1000,PreSorted,1,StdSort,5,5342
1000,PreSorted,1,StdSort,6,9029
1000,PreSorted,1,StdSort,7,14189
1000,PreSorted,1,StdSort,8,21034
1000,PreSorted,1,StdSort,9,29826
1000,PreSorted,1,StdSort,10,40819
1000,PreSorted,2,ParallelSort,0,106
1000,PreSorted,2,ParallelSort,1,145
1000,PreSorted,2,ParallelSort,2,446
1000,PreSorted,2,ParallelSort,3,1368
1000,PreSorted,2,ParallelSort,4,2872
1000,PreSorted,2,ParallelSort,5,5338
1000,PreSorted,2,ParallelSort,6,9032
1000,PreSorted,2,ParallelSort,7,14192
1000,PreSorted,2,ParallelSort,8,21031
1000,PreSorted,2,ParallelSort,9,29838
1000,PreSorted,2,ParallelSort,10,40827
1000,PreSorted,2,ParallelBufferedSort,0,100
1000,PreSorted,2,ParallelBufferedSort,1,143
1000,PreSorted,2,ParallelBufferedSort,2,447
1000,PreSorted,2,ParallelBufferedSort,3,1371
1000,PreSorted,2,ParallelBufferedSort,4,2881
1000,PreSorted,2,ParallelBufferedSort,5,5346
1000,PreSorted,2,ParallelBufferedSort,6,9028
1000,PreSorted,2,ParallelBufferedSort,7,14194
1000,PreSorted,2,ParallelBufferedSort,8,21048
1000,PreSorted,2,ParallelBufferedSort,9,29831
1000,PreSorted,2,ParallelBufferedSort,10,40825
1000,PreSorted,2,ParallelRadixSort,0,341
1000,PreSorted,2,ParallelRadixSort,1,505
1000,PreSorted,2,ParallelRadixSort,2,1214
1000,PreSorted,2,ParallelRadixSort,3,3295
1000,PreSorted,2,ParallelRadixSort,4,6778
1000,PreSorted,2,ParallelRadixSort,5,12524
1000,PreSorted,2,ParallelRadixSort,6,21090
1000,PreSorted,2,ParallelRadixSort,7,33052
1000,PreSorted,2,ParallelRadixSort,8,48947
1000,PreSorted,2,ParallelRadixSort,9,69397
1000,PreSorted,2,ParallelRadixSort,10,94896
1000,PreSorted,2,StdSort,0,99
1000,PreSorted,2,StdSort,1,143
1000,PreSorted,2,StdSort,2,446
1000,PreSorted,2,StdSort,3,1367
1000,PreSorted,2,StdSort,4,2864
1000,PreSorted,2,StdSort,5,5332
1000,PreSorted,2,StdSort,6,9021
1000,PreSorted,2,StdSort,7,14183
1000,PreSorted,2,StdSort,8,21034
1000,PreSorted,2,StdSort,9,29826
1000,PreSorted,2,StdSort,10,40826
1000,PreSorted,3,ParallelSort,0,100
1000,PreSorted,3,ParallelSort,1,157
1000,PreSorted,3,ParallelSort,2,447
1000,PreSorted,3,ParallelSort,3,1371
1000,PreSorted,3,ParallelSort,4,2873
1000,PreSorted,3,ParallelSort,5,5350
1000,PreSorted,3,ParallelSort,6,9032
1000,PreSorted,3,ParallelSort,7,14186
1000,PreSorted,3,ParallelSort,8,21040
1000,PreSorted,3,ParallelSort,9,29839
1000,PreSorted,3,ParallelSort,10,40833
1000,PreSorted,3,ParallelBufferedSort,0,108
1000,PreSorted,3,ParallelBufferedSort,1,158
1000,PreSorted,3,ParallelBufferedSort,2,446
1000,PreSorted,3,ParallelBufferedSort,3,1372
1000,PreSorted,3,ParallelBufferedSort,4,2882
1000,PreSorted,3,ParallelBufferedSort,5,5348
1000,PreSorted,3,ParallelBufferedSort,6,9043
1000,PreSorted,3,ParallelBufferedSort,7,14191
1000,PreSorted,3,ParallelBufferedSort,8,21040
1000,PreSorted,3,ParallelBufferedSort,9,29835
1000,PreSorted,3,ParallelBufferedSort,10,40830
1000,PreSorted,3,ParallelRadixSort,0,369
1000,PreSorted,3,ParallelRadixSort,1,525
1000,PreSorted,3,ParallelRadixSort,2,1211
1000,PreSorted,3,ParallelRadixSort,3,3287
1000,PreSorted,3,ParallelRadixSort,4,6747
1000,PreSorted,3,ParallelRadixSort,5,12420
1000,PreSorted,3,ParallelRadixSort,6,20906
1000,PreSorted,3,ParallelRadixSort,7,32747
1000,PreSorted,3,ParallelRadixSort,8,48491
1000,PreSorted,3,ParallelRadixSort,9,68723
1000,PreSorted,3,ParallelRadixSort,10,93969
1000,PreSorted,3,StdSort,0,99
1000,PreSorted,3,StdSort,1,143
1000,PreSorted,3,StdSort,2,446
1000,PreSorted,3,StdSort,3,1367
1000,PreSorted,3,StdSort,4,2864
1000,PreSorted,3,StdSort,5,5342
1000,PreSorted,3,StdSort,6,9021
1000,PreSorted,3,StdSort,7,14182
1000,PreSorted,3,StdSort,8,21034
1000,PreSorted,3,StdSort,9,29826
1000,PreSorted,3,StdSort,10,40815
1000,PreSorted,4,ParallelSort,0,107
1000,PreSorted,4,ParallelSort,1,146
1000,PreSorted,4,ParallelSort,2,445
1000,PreSorted,4,ParallelSort,3,1385
1000,PreSorted,4,ParallelSort,4,2874
1000,PreSorted,4,ParallelSort,5,5348
1000,PreSorted,4,ParallelSort,6,9039
1000,PreSorted,4,ParallelSort,7,14191
1000,PreSorted,4,ParallelSort,8,21032
1000,PreSorted,4,ParallelSort,9,29834
1000,PreSorted,4,ParallelSort,10,40829
1000,PreSorted,4,ParallelBufferedSort,0,107
1000,PreSorted,4,ParallelBufferedSort,1,146
1000,PreSorted,4,ParallelBufferedSort,2,447
1000,PreSorted,4,ParallelBufferedSort,3,1381
1000,PreSorted,4,ParallelBufferedSort,4,2882
1000,PreSorted,4,ParallelBufferedSort,5,5348
1000,PreSorted,4,ParallelBufferedSort,6,9032
1000,PreSorted,4,ParallelBufferedSort,7,14198
1000,PreSorted,4,ParallelBufferedSort,8,21039
1000,PreSorted,4,ParallelBufferedSort,9,29839
1000,PreSorted,4,ParallelBufferedSort,10,40824
1000,PreSorted,4,ParallelRadixSort,0,392
1000,PreSorted,4,ParallelRadixSort,1,563
1000,PreSorted,4,ParallelRadixSort,2,1235
1000,PreSorted,4,ParallelRadixSort,3,3286
1000,PreSorted,4,ParallelRadixSort,4,6722
1000,PreSorted,4,ParallelRadixSort,5,12379
1000,PreSorted,4,ParallelRadixSort,6,20812
1000,PreSorted,4,ParallelRadixSort,7,32605
1000,PreSorted,4,ParallelRadixSort,8,48300
1000,PreSorted,4,ParallelRadixSort,9,68401
1000,PreSorted,4,ParallelRadixSort,10,93537
1000,PreSorted,4,StdSort,0,99
1000,PreSorted,4,StdSort,1,143
1000,PreSorted,4,StdSort,2,445
1000,PreSorted,4,StdSort,3,1367
1000,PreSorted,4,StdSort,4,2864
1000,PreSorted,4,StdSort,5,5332
1000,PreSorted,4,StdSort,6,9028
1000,PreSorted,4,StdSort,7,14189
1000,PreSorted,4,StdSort,8,21034
1000,PreSorted,4,StdSort,9,29826
1000,PreSorted,4,StdSort,10,40815
1000,PreSorted,5,ParallelSort,0,107
1000,PreSorted,5,ParallelSort,1,146
1000,PreSorted,5,ParallelSort,2,446
1000,PreSorted,5,ParallelSort,3,1371
1000,PreSorted,5,ParallelSort,4,2875
1000,PreSorted,5,ParallelSort,5,5360
1000,PreSorted,5,ParallelSort,6,9033
1000,PreSorted,5,ParallelSort,7,14187
1000,PreSorted,5,ParallelSort,8,21037
1000,PreSorted,5,ParallelSort,9,29834
1000,PreSorted,5,ParallelSort,10,40832
1000,PreSorted,5,ParallelBufferedSort,0,107
1000,PreSorted,5,ParallelBufferedSort,1,146
1000,PreSorted,5,ParallelBufferedSort,2,446
1000,PreSorted,5,ParallelBufferedSort,3,1378
1000,PreSorted,5,ParallelBufferedSort,4,2870
1000,PreSorted,5,ParallelBufferedSort,5,5353
1000,PreSorted,5,ParallelBufferedSort,6,9024
1000,PreSorted,5,ParallelBufferedSort,7,14187
1000,PreSorted,5,ParallelBufferedSort,8,21043
1000,PreSorted,5,ParallelBufferedSort,9,29832
1000,PreSorted,5,ParallelBufferedSort,10,40831
1000,PreSorted,5,ParallelRadixSort,0,392
1000,PreSorted,5,ParallelRadixSort,1,585
1000,PreSorted,5,ParallelRadixSort,2,1251
1000,PreSorted,5,ParallelRadixSort,3,3294
1000,PreSorted,5,ParallelRadixSort,4,6723
1000,PreSorted,5,ParallelRadixSort,5,12366
1000,PreSorted,5,ParallelRadixSort,6,20770
1000,PreSorted,5,ParallelRadixSort,7,32545
1000,PreSorted,5,ParallelRadixSort,8,48159
1000,PreSorted,5,ParallelRadixSort,9,68224
1000,PreSorted,5,ParallelRadixSort,10,93309
1000,PreSorted,5,StdSort,0,99
1000,PreSorted,5,StdSort,1,142
1000,PreSorted,5,StdSort,2,445
1000,PreSorted,5,StdSort,3,1367
1000,PreSorted,5,StdSort,4,2865
1000,PreSorted,5,StdSort,5,5350
1000,PreSorted,5,StdSort,6,9028
1000,PreSorted,5,StdSort,7,14182
1000,PreSorted,5,StdSort,8,21034
1000,PreSorted,5,StdSort,9,29826
1000,PreSorted,5,StdSort,10,40817
1000,PreSorted,6,ParallelSort,0,107
1000,PreSorted,6,ParallelSort,1,146
1000,PreSorted,6,ParallelSort,2,446
1000,PreSorted,6,ParallelSort,3,1373
1000,PreSorted,6,ParallelSort,4,2881
1000,PreSorted,6,ParallelSort,5,5342
1000,PreSorted,6,ParallelSort,6,9033
1000,PreSorted,6,ParallelSort,7,14201
1000,PreSorted,6,ParallelSort,8,21053
1000,PreSorted,6,ParallelSort,9,29832
1000,PreSorted,6,ParallelSort,10,40826
1000,PreSorted,6,ParallelBufferedSort,0,114
1000,PreSorted,6,ParallelBufferedSort,1,146
1000,PreSorted,6,ParallelBufferedSort,2,446
1000,PreSorted,6,ParallelBufferedSort,3,1370
1000,PreSorted,6,ParallelBufferedSort,4,2868
1000,PreSorted,6,ParallelBufferedSort,5,5351
1000,PreSorted,6,ParallelBufferedSort,6,9042
1000,PreSorted,6,ParallelBufferedSort,7,14196
1000,PreSorted,6,ParallelBufferedSort,8,21042
1000,PreSorted,6,ParallelBufferedSort,9,29840
1000,PreSorted,6,ParallelBufferedSort,10,40824
1000,PreSorted,6,ParallelRadixSort,0,404
1000,PreSorted,6,ParallelRadixSort,1,744
1000,PreSorted,6,ParallelRadixSort,2,1296
1000,PreSorted,6,ParallelRadixSort,3,3300
1000,PreSorted,6,ParallelRadixSort,4,6712
1000,PreSorted,6,ParallelRadixSort,5,12345
1000,PreSorted,6,ParallelRadixSort,6,20738
1000,PreSorted,6,ParallelRadixSort,7,32456
1000,PreSorted,6,ParallelRadixSort,8,48063
1000,PreSorted,6,ParallelRadixSort,9,68122
1000,PreSorted,6,ParallelRadixSort,10,93111
1000,PreSorted,6,StdSort,0,101
1000,PreSorted,6,StdSort,1,143
1000,PreSorted,6,StdSort,2,445
1000,PreSorted,6,StdSort,3,1367
1000,PreSorted,6,StdSort,4,2865
1000,PreSorted,6,StdSort,5,5343
1000,PreSorted,6,StdSort,6,9021
1000,PreSorted,6,StdSort,7,14189
1000,PreSorted,6,StdSort,8,21028
1000,PreSorted,6,StdSort,9,29826
1000,PreSorted,6,StdSort,10,40816
1000,PreSorted,7,ParallelSort,0,107
1000,PreSorted,7,ParallelSort,1,150
1000,PreSorted,7,ParallelSort,2,447
1000,PreSorted,7,ParallelSort,3,1370
1000,PreSorted,7,ParallelSort,4,2874
1000,PreSorted,7,ParallelSort,5,5342
1000,PreSorted,7,ParallelSort,6,9031
1000,PreSorted,7,ParallelSort,7,14193
1000,PreSorted,7,ParallelSort,8,21041
1000,PreSorted,7,ParallelSort,9,29831
1000,PreSorted,7,ParallelSort,10,40824
1000,PreSorted,7,ParallelBufferedSort,0,116
1000,PreSorted,7,ParallelBufferedSort,1,145
1000,PreSorted,7,ParallelBufferedSort,2,446
1000,PreSorted,7,ParallelBufferedSort,3,1369
1000,PreSorted,7,ParallelBufferedSort,4,2875
1000,PreSorted,7,ParallelBufferedSort,5,5360
1000,PreSorted,7,ParallelBufferedSort,6,9028
1000,PreSorted,7,ParallelBufferedSort,7,14186
1000,PreSorted,7,ParallelBufferedSort,8,21034
1000,PreSorted,7,ParallelBufferedSort,9,29832
1000,PreSorted,7,ParallelBufferedSort,10,40835
1000,PreSorted,7,ParallelRadixSort,0,811
1000,PreSorted,7,ParallelRadixSort,1,1618
1000,PreSorted,7,ParallelRadixSort,2,1301
1000,PreSorted,7,ParallelRadixSort,3,3308
1000,PreSorted,7,ParallelRadixSort,4,6714
1000,PreSorted,7,ParallelRadixSort,5,12331
1000,PreSorted,7,ParallelRadixSort,6,20719
1000,PreSorted,7,ParallelRadixSort,7,32428
1000,PreSorted,7,ParallelRadixSort,8,48015
1000,PreSorted,7,ParallelRadixSort,9,68017
1000,PreSorted,7,ParallelRadixSort,10,92998
1000,PreSorted,7,StdSort,0,99
1000,PreSorted,7,StdSort,1,142
1000,PreSorted,7,StdSort,2,446
1000,PreSorted,7,StdSort,3,1367
1000,PreSorted,7,StdSort,4,2872
1000,PreSorted,7,StdSort,5,5350
1000,PreSorted,7,StdSort,6,9028
1000,PreSorted,7,StdSort,7,14189
1000,PreSorted,7,StdSort,8,21033
1000,PreSorted,7,StdSort,9,29819
1000,PreSorted,7,StdSort,10,40823
1000,PreSorted,8,ParallelSort,0,107
1000,PreSorted,8,ParallelSort,1,146
1000,PreSorted,8,ParallelSort,2,446
1000,PreSorted,8,ParallelSort,3,1372
1000,PreSorted,8,ParallelSort,4,2881
1000,PreSorted,8,ParallelSort,5,5365
1000,PreSorted,8,ParallelSort,6,9046
1000,PreSorted,8,ParallelSort,7,14186
1000,PreSorted,8,ParallelSort,8,21052
1000,PreSorted,8,ParallelSort,9,29835
1000,PreSorted,8,ParallelSort,10,40834
1000,PreSorted,8,ParallelBufferedSort,0,108
1000,PreSorted,8,ParallelBufferedSort,1,150
1000,PreSorted,8,ParallelBufferedSort,2,446
1000,PreSorted,8,ParallelBufferedSort,3,1378
1000,PreSorted,8,ParallelBufferedSort,4,2881
1000,PreSorted,8,ParallelBufferedSort,5,5355
1000,PreSorted,8,ParallelBufferedSort,6,9032
1000,PreSorted,8,ParallelBufferedSort,7,14186
1000,PreSorted,8,ParallelBufferedSort,8,21039
1000,PreSorted,8,ParallelBufferedSort,9,29834
1000,PreSorted,8,ParallelBufferedSort,10,40833
1000,PreSorted,8,ParallelRadixSort,0,1058
1000,PreSorted,8,ParallelRadixSort,1,1886
1000,PreSorted,8,ParallelRadixSort,2,1497
1000,PreSorted,8,ParallelRadixSort,3,3474
1000,PreSorted,8,ParallelRadixSort,4,6718
1000,PreSorted,8,ParallelRadixSort,5,12328
1000,PreSorted,8,ParallelRadixSort,6,20715
1000,PreSorted,8,ParallelRadixSort,7,32400
1000,PreSorted,8,ParallelRadixSort,8,47950
1000,PreSorted,8,ParallelRadixSort,9,67961
1000,PreSorted,8,ParallelRadixSort,10,92890
1000,PreSorted,8,StdSort,0,100
1000,PreSorted,8,StdSort,1,142
1000,PreSorted,8,StdSort,2,446
1000,PreSorted,8,StdSort,3,1367
1000,PreSorted,8,StdSort,4,2864
1000,PreSorted,8,StdSort,5,5342
1000,PreSorted,8,StdSort,6,9021
1000,PreSorted,8,StdSort,7,14189
1000,PreSorted,8,StdSort,8,21034
1000,PreSorted,8,StdSort,9,29827
1000,PreSorted,8,StdSort,10,40819
1000,NearlySorted,1,ParallelSort,0,107
1000,NearlySorted,1,ParallelSort,1,146
1000,NearlySorted,1,ParallelSort,2,429
1000,NearlySorted,1,ParallelSort,3,1371
1000,NearlySorted,1,ParallelSort,4,2875
1000,NearlySorted,1,ParallelSort,5,5360
1000,NearlySorted,1,ParallelSort,6,9038
1000,NearlySorted,1,ParallelSort,7,14188
1000,NearlySorted,1,ParallelSort,8,21046
1000,NearlySorted,1,ParallelSort,9,29835
1000,NearlySorted,1,ParallelSort,10,40828
1000,NearlySorted,1,ParallelBufferedSort,0,107
1000,NearlySorted,1,ParallelBufferedSort,1,162
1000,NearlySorted,1,ParallelBufferedSort,2,429
1000,NearlySorted,1,ParallelBufferedSort,3,1378
1000,NearlySorted,1,ParallelBufferedSort,4,2880
1000,NearlySorted,1,ParallelBufferedSort,5,5348
1000,NearlySorted,1,ParallelBufferedSort,6,9040
1000,NearlySorted,1,ParallelBufferedSort,7,14189
1000,NearlySorted,1,ParallelBufferedSort,8,21035
1000,NearlySorted,1,ParallelBufferedSort,9,29831
1000,NearlySorted,1,ParallelBufferedSort,10,40833
1000,NearlySorted,1,ParallelRadixSort,0,318
1000,NearlySorted,1,ParallelRadixSort,1,477
1000,NearlySorted,1,ParallelRadixSort,2,1186
1000,NearlySorted,1,ParallelRadixSort,3,3330
1000,NearlySorted,1,ParallelRadixSort,4,6916
1000,NearlySorted,1,ParallelRadixSort,5,12825
1000,NearlySorted,1,ParallelRadixSort,6,21646
1000,NearlySorted,1,ParallelRadixSort,7,33960
1000,NearlySorted,1,ParallelRadixSort,8,50332
1000,NearlySorted,1,ParallelRadixSort,9,71382
1000,NearlySorted,1,ParallelRadixSort,10,97643
1000,NearlySorted,1,StdSort,0,99
1000,NearlySorted,1,StdSort,1,143
1000,NearlySorted,1,StdSort,2,428
1000,NearlySorted,1,StdSort,3,1368
1000,NearlySorted,1,StdSort,4,2865
1000,NearlySorted,1,StdSort,5,5344
1000,NearlySorted,1,StdSort,6,9022
1000,NearlySorted,1,StdSort,7,14184
1000,NearlySorted,1,StdSort,8,21030
1000,NearlySorted,1,StdSort,9,29830
1000,NearlySorted,1,StdSort,10,40822
1000,NearlySorted,2,ParallelSort,0,107
1000,NearlySorted,2,ParallelSort,1,147
1000,NearlySorted,2,ParallelSort,2,429
1000,NearlySorted,2,ParallelSort,3,1369
1000,NearlySorted,2,ParallelSort,4,2880
1000,NearlySorted,2,ParallelSort,5,5348
1000,NearlySorted,2,ParallelSort,6,9048
1000,NearlySorted,2,ParallelSort,7,14209
1000,NearlySorted,2,ParallelSort,8,21049
1000,NearlySorted,2,ParallelSort,9,29845
1000,NearlySorted,2,ParallelSort,10,40833
1000,NearlySorted,2,ParallelBufferedSort,0,101
1000,NearlySorted,2,ParallelBufferedSort,1,144
1000,NearlySorted,2,ParallelBufferedSort,2,430
1000,NearlySorted,2,ParallelBufferedSort,3,1371
1000,NearlySorted,2,ParallelBufferedSort,4,2881
1000,NearlySorted,2,ParallelBufferedSort,5,5350
1000,NearlySorted,2,ParallelBufferedSort,6,9037
1000,NearlySorted,2,ParallelBufferedSort,7,14204
1000,NearlySorted,2,ParallelBufferedSort,8,21049
1000,NearlySorted,2,ParallelBufferedSort,9,29839
1000,NearlySorted,2,ParallelBufferedSort,10,40828
1000,NearlySorted,2,ParallelRadixSort,0,345
1000,NearlySorted,2,ParallelRadixSort,1,505
1000,NearlySorted,2,ParallelRadixSort,2,1213
1000,NearlySorted,2,ParallelRadixSort,3,3294
1000,NearlySorted,2,ParallelRadixSort,4,6782
1000,NearlySorted,2,ParallelRadixSort,5,12517
1000,NearlySorted,2,ParallelRadixSort,6,21091
1000,NearlySorted,2,ParallelRadixSort,7,33040
1000,NearlySorted,2,ParallelRadixSort,8,48960
1000,NearlySorted,2,ParallelRadixSort,9,69379
1000,NearlySorted,2,ParallelRadixSort,10,94887
1000,NearlySorted,2,StdSort,0,99
1000,NearlySorted,2,StdSort,1,143
1000,NearlySorted,2,StdSort,2,428
1000,NearlySorted,2,StdSort,3,1367
1000,NearlySorted,2,StdSort,4,2872
1000,NearlySorted,2,StdSort,5,5344
1000,NearlySorted,2,StdSort,6,9029
1000,NearlySorted,2,StdSort,7,14184
1000,NearlySorted,2,StdSort,8,21029
1000,NearlySorted,2,StdSort,9,29823
1000,NearlySorted,2,StdSort,10,40824
1000,NearlySorted,3,ParallelSort,0,113
1000,NearlySorted,3,ParallelSort,1,147
1000,NearlySorted,3,ParallelSort,2,430
1000,NearlySorted,3,ParallelSort,3,1378
1000,NearlySorted,3,ParallelSort,4,2873
1000,NearlySorted,3,ParallelSort,5,5350
1000,NearlySorted,3,ParallelSort,6,9033
1000,NearlySorted,3,ParallelSort,7,14201
1000,NearlySorted,3,ParallelSort,8,21039
1000,NearlySorted,3,ParallelSort,9,29839
1000,NearlySorted,3,ParallelSort,10,40832
1000,NearlySorted,3,ParallelBufferedSort,0,113
1000,NearlySorted,3,ParallelBufferedSort,1,146
1000,NearlySorted,3,ParallelBufferedSort,2,429
1000,NearlySorted,3,ParallelBufferedSort,3,1373
1000,NearlySorted,3,ParallelBufferedSort,4,2873
1000,NearlySorted,3,ParallelBufferedSort,5,5349
1000,NearlySorted,3,ParallelBufferedSort,6,9039
1000,NearlySorted,3,ParallelBufferedSort,7,14200
1000,NearlySorted,3,ParallelBufferedSort,8,21048
1000,NearlySorted,3,ParallelBufferedSort,9,29835
1000,NearlySorted,3,ParallelBufferedSort,10,40830
1000,NearlySorted,3,ParallelRadixSort,0,361
1000,NearlySorted,3,ParallelRadixSort,1,525
1000,NearlySorted,3,ParallelRadixSort,2,1217
1000,NearlySorted,3,ParallelRadixSort,3,3288
1000,NearlySorted,3,ParallelRadixSort,4,6740
1000,NearlySorted,3,ParallelRadixSort,5,12432
1000,NearlySorted,3,ParallelRadixSort,6,20927
1000,NearlySorted,3,ParallelRadixSort,7,32753
1000,NearlySorted,3,ParallelRadixSort,8,48494
1000,NearlySorted,3,ParallelRadixSort,9,68750
1000,NearlySorted,3,ParallelRadixSort,10,94007
1000,NearlySorted,3,StdSort,0,99
1000,NearlySorted,3,StdSort,1,143
1000,NearlySorted,3,StdSort,2,428
1000,NearlySorted,3,StdSort,3,1368
1000,NearlySorted,3,StdSort,4,2872
1000,NearlySorted,3,StdSort,5,5340
1000,NearlySorted,3,StdSort,6,9029
1000,NearlySorted,3,StdSort,7,14191
1000,NearlySorted,3,StdSort,8,21030
1000,NearlySorted,3,StdSort,9,29830
1000,NearlySorted,3,StdSort,10,40832
1000,NearlySorted,4,ParallelSort,0,107
1000,NearlySorted,4,ParallelSort,1,146
1000,NearlySorted,4,ParallelSort,2,429
1000,NearlySorted,4,ParallelSort,3,1374
1000,NearlySorted,4,ParallelSort,4,2874
1000,NearlySorted,4,ParallelSort,5,5351
1000,NearlySorted,4,ParallelSort,6,9034
1000,NearlySorted,4,ParallelSort,7,14204
1000,NearlySorted,4,ParallelSort,8,21053
1000,NearlySorted,4,ParallelSort,9,29839
1000,NearlySorted,4,ParallelSort,10,40837
1000,NearlySorted,4,ParallelBufferedSort,0,115
1000,NearlySorted,4,ParallelBufferedSort,1,146
1000,NearlySorted,4,ParallelBufferedSort,2,429
1000,NearlySorted,4,ParallelBufferedSort,3,1372
1000,NearlySorted,4,ParallelBufferedSort,4,2875
1000,NearlySorted,4,ParallelBufferedSort,5,5362
1000,NearlySorted,4,ParallelBufferedSort,6,9037
1000,NearlySorted,4,ParallelBufferedSort,7,14189
1000,NearlySorted,4,ParallelBufferedSort,8,21041
1000,NearlySorted,4,ParallelBufferedSort,9,29831
1000,NearlySorted,4,ParallelBufferedSort,10,40829
1000,NearlySorted,4,ParallelRadixSort,0,396
1000,NearlySorted,4,ParallelRadixSort,1,562
1000,NearlySorted,4,ParallelRadixSort,2,1238
1000,NearlySorted,4,ParallelRadixSort,3,3288
1000,NearlySorted,4,ParallelRadixSort,4,6725
1000,NearlySorted,4,ParallelRadixSort,5,12388
1000,NearlySorted,4,ParallelRadixSort,6,20815
1000,NearlySorted,4,ParallelRadixSort,7,32602
1000,NearlySorted,4,ParallelRadixSort,8,48258
1000,NearlySorted,4,ParallelRadixSort,9,68393
1000,NearlySorted,4,ParallelRadixSort,10,93520
1000,NearlySorted,4,StdSort,0,99
1000,NearlySorted,4,StdSort,1,143
1000,NearlySorted,4,StdSort,2,428
1000,NearlySorted,4,StdSort,3,1375
1000,NearlySorted,4,StdSort,4,2872
1000,NearlySorted,4,StdSort,5,5340
1000,NearlySorted,4,StdSort,6,9022
1000,NearlySorted,4,StdSort,7,14191
1000,NearlySorted,4,StdSort,8,21037
1000,NearlySorted,4,StdSort,9,29830
1000,NearlySorted,4,StdSort,10,40823
1000,NearlySorted,5,ParallelSort,0,108
1000,NearlySorted,5,ParallelSort,1,148
1000,NearlySorted,5,ParallelSort,2,429
1000,NearlySorted,5,ParallelSort,3,1370
1000,NearlySorted,5,ParallelSort,4,2875
1000,NearlySorted,5,ParallelSort,5,5353
1000,NearlySorted,5,ParallelSort,6,9033
1000,NearlySorted,5,ParallelSort,7,14229
1000,NearlySorted,5,ParallelSort,8,21046
1000,NearlySorted,5,ParallelSort,9,29835
1000,NearlySorted,5,ParallelSort,10,40842
1000,NearlySorted,5,ParallelBufferedSort,0,100
1000,NearlySorted,5,ParallelBufferedSort,1,146
1000,NearlySorted,5,ParallelBufferedSort,2,429
1000,NearlySorted,5,ParallelBufferedSort,3,1370
1000,NearlySorted,5,ParallelBufferedSort,4,2881
1000,NearlySorted,5,ParallelBufferedSort,5,5349
1000,NearlySorted,5,ParallelBufferedSort,6,9040
1000,NearlySorted,5,ParallelBufferedSort,7,14194
1000,NearlySorted,5,ParallelBufferedSort,8,21043
1000,NearlySorted,5,ParallelBufferedSort,9,29839
1000,NearlySorted,5,ParallelBufferedSort,10,40844
1000,NearlySorted,5,ParallelRadixSort,0,397
1000,NearlySorted,5,ParallelRadixSort,1,556
1000,NearlySorted,5,ParallelRadixSort,2,1246
1000,NearlySorted,5,ParallelRadixSort,3,3304
1000,NearlySorted,5,ParallelRadixSort,4,6701
1000,NearlySorted,5,ParallelRadixSort,5,12347
1000,NearlySorted,5,ParallelRadixSort,6,20780
1000,NearlySorted,5,ParallelRadixSort,7,32526
1000,NearlySorted,5,ParallelRadixSort,8,48158
1000,NearlySorted,5,ParallelRadixSort,9,68195
1000,NearlySorted,5,ParallelRadixSort,10,93263
1000,NearlySorted,5,StdSort,0,99
1000,NearlySorted,5,StdSort,1,143
1000,NearlySorted,5,StdSort,2,429
1000,NearlySorted,5,StdSort,3,1367
1000,NearlySorted,5,StdSort,4,2865
1000,NearlySorted,5,StdSort,5,5343
1000,NearlySorted,5,StdSort,6,9023
1000,NearlySorted,5,StdSort,7,14191
1000,NearlySorted,5,StdSort,8,21037
1000,NearlySorted,5,StdSort,9,29831
1000,NearlySorted,5,StdSort,10,40814
1000,NearlySorted,6,ParallelSort,0,114
1000,NearlySorted,6,ParallelSort,1,147
1000,NearlySorted,6,ParallelSort,2,429
1000,NearlySorted,6,ParallelSort,3,1384
1000,NearlySorted,6,ParallelSort,4,2886
1000,NearlySorted,6,ParallelSort,5,5362
1000,NearlySorted,6,ParallelSort,6,9047
1000,NearlySorted,6,ParallelSort,7,14192
1000,NearlySorted,6,ParallelSort,8,21041
1000,NearlySorted,6,ParallelSort,9,29839
1000,NearlySorted,6,ParallelSort,10,40839
1000,NearlySorted,6,ParallelBufferedSort,0,108
1000,NearlySorted,6,ParallelBufferedSort,1,146
1000,NearlySorted,6,ParallelBufferedSort,2,429
1000,NearlySorted,6,ParallelBufferedSort,3,1371
1000,NearlySorted,6,ParallelBufferedSort,4,2871
1000,NearlySorted,6,ParallelBufferedSort,5,5341
1000,NearlySorted,6,ParallelBufferedSort,6,9031
1000,NearlySorted,6,ParallelBufferedSort,7,14202
1000,NearlySorted,6,ParallelBufferedSort,8,21042
1000,NearlySorted,6,ParallelBufferedSort,9,29835
1000,NearlySorted,6,ParallelBufferedSort,10,40839
1000,NearlySorted,6,ParallelRadixSort,0,427
1000,NearlySorted,6,ParallelRadixSort,1,829
1000,NearlySorted,6,ParallelRadixSort,2,1305
1000,NearlySorted,6,ParallelRadixSort,3,3300
1000,NearlySorted,6,ParallelRadixSort,4,6710
1000,NearlySorted,6,ParallelRadixSort,5,12350
1000,NearlySorted,6,ParallelRadixSort,6,20748
1000,NearlySorted,6,ParallelRadixSort,7,32462
1000,NearlySorted,6,ParallelRadixSort,8,48040
1000,NearlySorted,6,ParallelRadixSort,9,68096
1000,NearlySorted,6,ParallelRadixSort,10,93089
1000,NearlySorted,6,StdSort,0,99
1000,NearlySorted,6,StdSort,1,143
1000,NearlySorted,6,StdSort,2,428
1000,NearlySorted,6,StdSort,3,1367
1000,NearlySorted,6,StdSort,4,2865
1000,NearlySorted,6,StdSort,5,5343
1000,NearlySorted,6,StdSort,6,9023
1000,NearlySorted,6,StdSort,7,14184
1000,NearlySorted,6,StdSort,8,21030
1000,NearlySorted,6,StdSort,9,29827
1000,NearlySorted,6,StdSort,10,40821
1000,NearlySorted,7,ParallelSort,0,114
1000,NearlySorted,7,ParallelSort,1,161
1000,NearlySorted,7,ParallelSort,2,429
1000,NearlySorted,7,ParallelSort,3,1378
1000,NearlySorted,7,ParallelSort,4,2869
1000,NearlySorted,7,ParallelSort,5,5341
1000,NearlySorted,7,ParallelSort,6,9032
1000,NearlySorted,7,ParallelSort,7,14189
1000,NearlySorted,7,ParallelSort,8,21041
1000,NearlySorted,7,ParallelSort,9,29831
1000,NearlySorted,7,ParallelSort,10,40826
1000,NearlySorted,7,ParallelBufferedSort,0,114
1000,NearlySorted,7,ParallelBufferedSort,1,146
1000,NearlySorted,7,ParallelBufferedSort,2,429
1000,NearlySorted,7,ParallelBufferedSort,3,1370
1000,NearlySorted,7,ParallelBufferedSort,4,2878
1000,NearlySorted,7,ParallelBufferedSort,5,5351
1000,NearlySorted,7,ParallelBufferedSort,6,9032
1000,NearlySorted,7,ParallelBufferedSort,7,14187
1000,NearlySorted,7,ParallelBufferedSort,8,21033
1000,NearlySorted,7,ParallelBufferedSort,9,29838
1000,NearlySorted,7,ParallelBufferedSort,10,40842
1000,NearlySorted,7,ParallelRadixSort,0,801
1000,NearlySorted,7,ParallelRadixSort,1,793
1000,NearlySorted,7,ParallelRadixSort,2,1395
1000,NearlySorted,7,ParallelRadixSort,3,3290
1000,NearlySorted,7,ParallelRadixSort,4,6709
1000,NearlySorted,7,ParallelRadixSort,5,12327
1000,NearlySorted,7,ParallelRadixSort,6,20773
1000,NearlySorted,7,ParallelRadixSort,7,32441
1000,NearlySorted,7,ParallelRadixSort,8,48005
1000,NearlySorted,7,ParallelRadixSort,9,68003
1000,NearlySorted,7,ParallelRadixSort,10,92968
1000,NearlySorted,7,StdSort,0,99
1000,NearlySorted,7,StdSort,1,143
1000,NearlySorted,7,StdSort,2,428
1000,NearlySorted,7,StdSort,3,1367
1000,NearlySorted,7,StdSort,4,2865
1000,NearlySorted,7,StdSort,5,5351
1000,NearlySorted,7,StdSort,6,9029
1000,NearlySorted,7,StdSort,7,14191
1000,NearlySorted,7,StdSort,8,21037
1000,NearlySorted,7,StdSort,9,29830
1000,NearlySorted,7,StdSort,10,40815
1000,NearlySorted,8,ParallelSort,0,114
1000,NearlySorted,8,ParallelSort,1,169
1000,NearlySorted,8,ParallelSort,2,429
1000,NearlySorted,8,ParallelSort,3,1375
1000,NearlySorted,8,ParallelSort,4,2887
1000,NearlySorted,8,ParallelSort,5,5355
1000,NearlySorted,8,ParallelSort,6,9038
1000,NearlySorted,8,ParallelSort,7,14195
1000,NearlySorted,8,ParallelSort,8,21039
1000,NearlySorted,8,ParallelSort,9,29839
1000,NearlySorted,8,ParallelSort,10,40847
1000,NearlySorted,8,ParallelBufferedSort,0,115
1000,NearlySorted,8,ParallelBufferedSort,1,146
1000,NearlySorted,8,ParallelBufferedSort,2,429
1000,NearlySorted,8,ParallelBufferedSort,3,1382
1000,NearlySorted,8,ParallelBufferedSort,4,2880
1000,NearlySorted,8,ParallelBufferedSort,5,5347
1000,NearlySorted,8,ParallelBufferedSort,6,9041
1000,NearlySorted,8,ParallelBufferedSort,7,14188
1000,NearlySorted,8,ParallelBufferedSort,8,21043
1000,NearlySorted,8,ParallelBufferedSort,9,29841
1000,NearlySorted,8,ParallelBufferedSort,10,40833
1000,NearlySorted,8,ParallelRadixSort,0,1067
1000,NearlySorted,8,ParallelRadixSort,1,1872
1000,NearlySorted,8,ParallelRadixSort,2,1296
1000,NearlySorted,8,ParallelRadixSort,3,3437
1000,NearlySorted,8,ParallelRadixSort,4,6710
1000,NearlySorted,8,ParallelRadixSort,5,12328
1000,NearlySorted,8,ParallelRadixSort,6,20731
1000,NearlySorted,8,ParallelRadixSort,7,32415
1000,NearlySorted,8,ParallelRadixSort,8,47990
1000,NearlySorted,8,ParallelRadixSort,9,67961
1000,NearlySorted,8,ParallelRadixSort,10,92900
1000,NearlySorted,8,StdSort,0,99
1000,NearlySorted,8,StdSort,1,143
1000,NearlySorted,8,StdSort,2,429
1000,NearlySorted,8,StdSort,3,1367
1000,NearlySorted,8,StdSort,4,2865
1000,NearlySorted,8,StdSort,5,5351
1000,NearlySorted,8,StdSort,6,9030
1000,NearlySorted,8,StdSort,7,14184
1000,NearlySorted,8,StdSort,8,21037
1000,NearlySorted,8,StdSort,9,29833
1000,NearlySorted,8,StdSort,10,40822
1000,NormalDistributionWithDups,1,ParallelSort,0,347
1000,NormalDistributionWithDups,1,ParallelSort,1,497
1000,NormalDistributionWithDups,1,ParallelSort,2,1374
1000,NormalDistributionWithDups,1,ParallelSort,3,4010
1000,NormalDistributionWithDups,1,ParallelSort,4,8365
1000,NormalDistributionWithDups,1,ParallelSort,5,15504
1000,NormalDistributionWithDups,1,ParallelSort,6,26165
1000,NormalDistributionWithDups,1,ParallelSort,7,41068
1000,NormalDistributionWithDups,1,ParallelSort,8,60859
1000,NormalDistributionWithDups,1,ParallelSort,9,86298
1000,NormalDistributionWithDups,1,ParallelSort,10,118102
1000,NormalDistributionWithDups,1,ParallelBufferedSort,0,360
1000,NormalDistributionWithDups,1,ParallelBufferedSort,1,481
1000,NormalDistributionWithDups,1,ParallelBufferedSort,2,1375
1000,NormalDistributionWithDups,1,ParallelBufferedSort,3,4018
1000,NormalDistributionWithDups,1,ParallelBufferedSort,4,8369
1000,NormalDistributionWithDups,1,ParallelBufferedSort,5,15514
1000,NormalDistributionWithDups,1,ParallelBufferedSort,6,26177
1000,NormalDistributionWithDups,1,ParallelBufferedSort,7,41095
1000,NormalDistributionWithDups,1,ParallelBufferedSort,8,60874
1000,NormalDistributionWithDups,1,ParallelBufferedSort,9,86299
1000,NormalDistributionWithDups,1,ParallelBufferedSort,10,118097
1000,NormalDistributionWithDups,1,ParallelRadixSort,0,417
1000,NormalDistributionWithDups,1,ParallelRadixSort,1,643
1000,NormalDistributionWithDups,1,ParallelRadixSort,2,1572
1000,NormalDistributionWithDups,1,ParallelRadixSort,3,4417
1000,NormalDistributionWithDups,1,ParallelRadixSort,4,9158
1000,NormalDistributionWithDups,1,ParallelRadixSort,5,16996
1000,NormalDistributionWithDups,1,ParallelRadixSort,6,28692
1000,NormalDistributionWithDups,1,ParallelRadixSort,7,45018
1000,NormalDistributionWithDups,1,ParallelRadixSort,8,66716
1000,NormalDistributionWithDups,1,ParallelRadixSort,9,94597
1000,NormalDistributionWithDups,1,ParallelRadixSort,10,129398
1000,NormalDistributionWithDups,1,StdSort,0,354
1000,NormalDistributionWithDups,1,StdSort,1,481
1000,NormalDistributionWithDups,1,StdSort,2,1369
1000,NormalDistributionWithDups,1,StdSort,3,4054
1000,NormalDistributionWithDups,1,StdSort,4,8404
1000,NormalDistributionWithDups,1,StdSort,5,15527
1000,NormalDistributionWithDups,1,StdSort,6,26198
1000,NormalDistributionWithDups,1,StdSort,7,41106
1000,NormalDistributionWithDups,1,StdSort,8,60887
1000,NormalDistributionWithDups,1,StdSort,9,86324
1000,NormalDistributionWithDups,1,StdSort,10,118096
1000,NormalDistributionWithDups,2,ParallelSort,0,324
1000,NormalDistributionWithDups,2,ParallelSort,1,444
1000,NormalDistributionWithDups,2,ParallelSort,2,1232
1000,NormalDistributionWithDups,2,ParallelSort,3,3583
1000,NormalDistributionWithDups,2,ParallelSort,4,7461
1000,NormalDistributionWithDups,2,ParallelSort,5,13830
1000,NormalDistributionWithDups,2,ParallelSort,6,23323
1000,NormalDistributionWithDups,2,ParallelSort,7,36611
1000,NormalDistributionWithDups,2,ParallelSort,8,54255
1000,NormalDistributionWithDups,2,ParallelSort,9,76923
1000,NormalDistributionWithDups,2,ParallelSort,10,105270
1000,NormalDistributionWithDups,2,ParallelBufferedSort,0,340
1000,NormalDistributionWithDups,2,ParallelBufferedSort,1,445
1000,NormalDistributionWithDups,2,ParallelBufferedSort,2,1232
1000,NormalDistributionWithDups,2,ParallelBufferedSort,3,3583
1000,NormalDistributionWithDups,2,ParallelBufferedSort,4,7461
1000,NormalDistributionWithDups,2,ParallelBufferedSort,5,13844
1000,NormalDistributionWithDups,2,ParallelBufferedSort,6,23360
1000,NormalDistributionWithDups,2,ParallelBufferedSort,7,36615
1000,NormalDistributionWithDups,2,ParallelBufferedSort,8,54258
1000,NormalDistributionWithDups,2,ParallelBufferedSort,9,76922
1000,NormalDistributionWithDups,2,ParallelBufferedSort,10,105251
1000,NormalDistributionWithDups,2,ParallelRadixSort,0,411
1000,NormalDistributionWithDups,2,ParallelRadixSort,1,611
1000,NormalDistributionWithDups,2,ParallelRadixSort,2,1505
1000,NormalDistributionWithDups,2,ParallelRadixSort,3,4065
1000,NormalDistributionWithDups,2,ParallelRadixSort,4,8358
1000,NormalDistributionWithDups,2,ParallelRadixSort,5,15449
1000,NormalDistributionWithDups,2,ParallelRadixSort,6,26036
1000,NormalDistributionWithDups,2,ParallelRadixSort,7,40785
1000,NormalDistributionWithDups,2,ParallelRadixSort,8,60440
1000,NormalDistributionWithDups,2,ParallelRadixSort,9,85662
1000,NormalDistributionWithDups,2,ParallelRadixSort,10,117137
1000,NormalDistributionWithDups,2,StdSort,0,321
1000,NormalDistributionWithDups,2,StdSort,1,434
1000,NormalDistributionWithDups,2,StdSort,2,1230
1000,NormalDistributionWithDups,2,StdSort,3,3580
1000,NormalDistributionWithDups,2,StdSort,4,7465
1000,NormalDistributionWithDups,2,StdSort,5,13827
1000,NormalDistributionWithDups,2,StdSort,6,23319
1000,NormalDistributionWithDups,2,StdSort,7,36599
1000,NormalDistributionWithDups,2,StdSort,8,54250
1000,NormalDistributionWithDups,2,StdSort,9,76912
1000,NormalDistributionWithDups,2,StdSort,10,105233
1000,NormalDistributionWithDups,3,ParallelSort,0,404
1000,NormalDistributionWithDups,3,ParallelSort,1,532
1000,NormalDistributionWithDups,3,ParallelSort,2,1514
1000,NormalDistributionWithDups,3,ParallelSort,3,4423
1000,NormalDistributionWithDups,3,ParallelSort,4,9236
1000,NormalDistributionWithDups,3,ParallelSort,5,17102
1000,NormalDistributionWithDups,3,ParallelSort,6,28867
1000,NormalDistributionWithDups,3,ParallelSort,7,45311
1000,NormalDistributionWithDups,3,ParallelSort,8,67166
1000,NormalDistributionWithDups,3,ParallelSort,9,95217
1000,NormalDistributionWithDups,3,ParallelSort,10,130309
1000,NormalDistributionWithDups,3,ParallelBufferedSort,0,404
1000,NormalDistributionWithDups,3,ParallelBufferedSort,1,532
1000,NormalDistributionWithDups,3,ParallelBufferedSort,2,1512
1000,NormalDistributionWithDups,3,ParallelBufferedSort,3,4471
1000,NormalDistributionWithDups,3,ParallelBufferedSort,4,9246
1000,NormalDistributionWithDups,3,ParallelBufferedSort,5,17132
1000,NormalDistributionWithDups,3,ParallelBufferedSort,6,28891
1000,NormalDistributionWithDups,3,ParallelBufferedSort,7,45358
1000,NormalDistributionWithDups,3,ParallelBufferedSort,8,67160
1000,NormalDistributionWithDups,3,ParallelBufferedSort,9,95213
1000,NormalDistributionWithDups,3,ParallelBufferedSort,10,130296
1000,NormalDistributionWithDups,3,ParallelRadixSort,0,506
1000,NormalDistributionWithDups,3,ParallelRadixSort,1,736
1000,NormalDistributionWithDups,3,ParallelRadixSort,2,1708
1000,NormalDistributionWithDups,3,ParallelRadixSort,3,4713
1000,NormalDistributionWithDups,3,ParallelRadixSort,4,9644
1000,NormalDistributionWithDups,3,ParallelRadixSort,5,17816
1000,NormalDistributionWithDups,3,ParallelRadixSort,6,30020
1000,NormalDistributionWithDups,3,ParallelRadixSort,7,47018
1000,NormalDistributionWithDups,3,ParallelRadixSort,8,69659
1000,NormalDistributionWithDups,3,ParallelRadixSort,9,98757
1000,NormalDistributionWithDups,3,ParallelRadixSort,10,135050
1000,NormalDistributionWithDups,3,StdSort,0,710
1000,NormalDistributionWithDups,3,StdSort,1,526
1000,NormalDistributionWithDups,3,StdSort,2,1506
1000,NormalDistributionWithDups,3,StdSort,3,4426
1000,NormalDistributionWithDups,3,StdSort,4,9231
1000,NormalDistributionWithDups,3,StdSort,5,17103
1000,NormalDistributionWithDups,3,StdSort,6,28870
1000,NormalDistributionWithDups,3,StdSort,7,45306
1000,NormalDistributionWithDups,3,StdSort,8,67149
1000,NormalDistributionWithDups,3,StdSort,9,95201
1000,NormalDistributionWithDups,3,StdSort,10,130268
1000,NormalDistributionWithDups,4,ParallelSort,0,296
1000,NormalDistributionWithDups,4,ParallelSort,1,418
1000,NormalDistributionWithDups,4,ParallelSort,2,1160
1000,NormalDistributionWithDups,4,ParallelSort,3,3407
1000,NormalDistributionWithDups,4,ParallelSort,4,7033
1000,NormalDistributionWithDups,4,ParallelSort,5,13029
1000,NormalDistributionWithDups,4,ParallelSort,6,21977
1000,NormalDistributionWithDups,4,ParallelSort,7,34507
1000,NormalDistributionWithDups,4,ParallelSort,8,51121
1000,NormalDistributionWithDups,4,ParallelSort,9,72482
1000,NormalDistributionWithDups,4,ParallelSort,10,99167
1000,NormalDistributionWithDups,4,ParallelBufferedSort,0,313
1000,NormalDistributionWithDups,4,ParallelBufferedSort,1,421
1000,NormalDistributionWithDups,4,ParallelBufferedSort,2,1166
1000,NormalDistributionWithDups,4,ParallelBufferedSort,3,3402
1000,NormalDistributionWithDups,4,ParallelBufferedSort,4,7041
1000,NormalDistributionWithDups,4,ParallelBufferedSort,5,13027
1000,NormalDistributionWithDups,4,ParallelBufferedSort,6,21987
1000,NormalDistributionWithDups,4,ParallelBufferedSort,7,34492
1000,NormalDistributionWithDups,4,ParallelBufferedSort,8,51131
1000,NormalDistributionWithDups,4,ParallelBufferedSort,9,72501
1000,NormalDistributionWithDups,4,ParallelBufferedSort,10,99171
1000,NormalDistributionWithDups,4,ParallelRadixSort,0,480
1000,NormalDistributionWithDups,4,ParallelRadixSort,1,659
1000,NormalDistributionWithDups,4,ParallelRadixSort,2,1441
1000,NormalDistributionWithDups,4,ParallelRadixSort,3,3885
1000,NormalDistributionWithDups,4,ParallelRadixSort,4,7908
1000,NormalDistributionWithDups,4,ParallelRadixSort,5,14574
1000,NormalDistributionWithDups,4,ParallelRadixSort,6,24515
1000,NormalDistributionWithDups,4,ParallelRadixSort,7,38376
1000,NormalDistributionWithDups,4,ParallelRadixSort,8,56834
1000,NormalDistributionWithDups,4,ParallelRadixSort,9,80589
1000,NormalDistributionWithDups,4,ParallelRadixSort,10,110133
1000,NormalDistributionWithDups,4,StdSort,0,303
1000,NormalDistributionWithDups,4,StdSort,1,408
1000,NormalDistributionWithDups,4,StdSort,2,1157
1000,NormalDistributionWithDups,4,StdSort,3,3376
1000,NormalDistributionWithDups,4,StdSort,4,7026
1000,NormalDistributionWithDups,4,StdSort,5,13049
1000,NormalDistributionWithDups,4,StdSort,6,21989
1000,NormalDistributionWithDups,4,StdSort,7,34504
1000,NormalDistributionWithDups,4,StdSort,8,51126
1000,NormalDistributionWithDups,4,StdSort,9,72483
1000,NormalDistributionWithDups,4,StdSort,10,99158
1000,NormalDistributionWithDups,5,ParallelSort,0,514
1000,NormalDistributionWithDups,5,ParallelSort,1,685
1000,NormalDistributionWithDups,5,ParallelSort,2,1875
1000,NormalDistributionWithDups,5,ParallelSort,3,5454
1000,NormalDistributionWithDups,5,ParallelSort,4,11365
1000,NormalDistributionWithDups,5,ParallelSort,5,21053
1000,NormalDistributionWithDups,5,ParallelSort,6,35587
1000,NormalDistributionWithDups,5,ParallelSort,7,55746
1000,NormalDistributionWithDups,5,ParallelSort,8,82610
1000,NormalDistributionWithDups,5,ParallelSort,9,117116
1000,NormalDistributionWithDups,5,ParallelSort,10,160275
1000,NormalDistributionWithDups,5,ParallelBufferedSort,0,528
1000,NormalDistributionWithDups,5,ParallelBufferedSort,1,686
1000,NormalDistributionWithDups,5,ParallelBufferedSort,2,1875
1000,NormalDistributionWithDups,5,ParallelBufferedSort,3,5467
1000,NormalDistributionWithDups,5,ParallelBufferedSort,4,11357
1000,NormalDistributionWithDups,5,ParallelBufferedSort,5,21054
1000,NormalDistributionWithDups,5,ParallelBufferedSort,6,35517
1000,NormalDistributionWithDups,5,ParallelBufferedSort,7,55797
1000,NormalDistributionWithDups,5,ParallelBufferedSort,8,82612
1000,NormalDistributionWithDups,5,ParallelBufferedSort,9,117152
1000,NormalDistributionWithDups,5,ParallelBufferedSort,10,160249
1000,NormalDistributionWithDups,5,ParallelRadixSort,0,647
1000,NormalDistributionWithDups,5,ParallelRadixSort,1,966
1000,NormalDistributionWithDups,5,ParallelRadixSort,2,2170
1000,NormalDistributionWithDups,5,ParallelRadixSort,3,5905
1000,NormalDistributionWithDups,5,ParallelRadixSort,4,12160
1000,NormalDistributionWithDups,5,ParallelRadixSort,5,22439
1000,NormalDistributionWithDups,5,ParallelRadixSort,6,37791
1000,NormalDistributionWithDups,5,ParallelRadixSort,7,59211
1000,NormalDistributionWithDups,5,ParallelRadixSort,8,87678
1000,NormalDistributionWithDups,5,ParallelRadixSort,9,124282
1000,NormalDistributionWithDups,5,ParallelRadixSort,10,169999
1000,NormalDistributionWithDups,5,StdSort,0,691
1000,NormalDistributionWithDups,5,StdSort,1,664
1000,NormalDistributionWithDups,5,StdSort,2,1870
1000,NormalDistributionWithDups,5,StdSort,3,5464
1000,NormalDistributionWithDups,5,StdSort,4,11363
1000,NormalDistributionWithDups,5,StdSort,5,21051
1000,NormalDistributionWithDups,5,StdSort,6,35524
1000,NormalDistributionWithDups,5,StdSort,7,55741
1000,NormalDistributionWithDups,5,StdSort,8,82605
1000,NormalDistributionWithDups,5,StdSort,9,117127
1000,NormalDistributionWithDups,5,StdSort,10,160252
1000,NormalDistributionWithDups,6,ParallelSort,0,295
1000,NormalDistributionWithDups,6,ParallelSort,1,416
1000,NormalDistributionWithDups,6,ParallelSort,2,1174
1000,NormalDistributionWithDups,6,ParallelSort,3,3419
1000,NormalDistributionWithDups,6,ParallelSort,4,7118
1000,NormalDistributionWithDups,6,ParallelSort,5,13173
1000,NormalDistributionWithDups,6,ParallelSort,6,22229
1000,NormalDistributionWithDups,6,ParallelSort,7,34898
1000,NormalDistributionWithDups,6,ParallelSort,8,51715
1000,NormalDistributionWithDups,6,ParallelSort,9,73313
1000,NormalDistributionWithDups,6,ParallelSort,10,100327
1000,NormalDistributionWithDups,6,ParallelBufferedSort,0,316
1000,NormalDistributionWithDups,6,ParallelBufferedSort,1,414
1000,NormalDistributionWithDups,6,ParallelBufferedSort,2,1173
1000,NormalDistributionWithDups,6,ParallelBufferedSort,3,3414
1000,NormalDistributionWithDups,6,ParallelBufferedSort,4,7117
1000,NormalDistributionWithDups,6,ParallelBufferedSort,5,13198
1000,NormalDistributionWithDups,6,ParallelBufferedSort,6,22234
1000,NormalDistributionWithDups,6,ParallelBufferedSort,7,34896
1000,NormalDistributionWithDups,6,ParallelBufferedSort,8,51720
1000,NormalDistributionWithDups,6,ParallelBufferedSort,9,73314
1000,NormalDistributionWithDups,6,ParallelBufferedSort,10,100317
1000,NormalDistributionWithDups,6,ParallelRadixSort,0,556
1000,NormalDistributionWithDups,6,ParallelRadixSort,1,762
1000,NormalDistributionWithDups,6,ParallelRadixSort,2,1495
1000,NormalDistributionWithDups,6,ParallelRadixSort,3,3839
1000,NormalDistributionWithDups,6,ParallelRadixSort,4,7839
1000,NormalDistributionWithDups,6,ParallelRadixSort,5,14464
1000,NormalDistributionWithDups,6,ParallelRadixSort,6,24269
1000,NormalDistributionWithDups,6,ParallelRadixSort,7,38004
1000,NormalDistributionWithDups,6,ParallelRadixSort,8,56279
1000,NormalDistributionWithDups,6,ParallelRadixSort,9,79746
1000,NormalDistributionWithDups,6,ParallelRadixSort,10,109014
1000,NormalDistributionWithDups,6,StdSort,0,303
1000,NormalDistributionWithDups,6,StdSort,1,409
1000,NormalDistributionWithDups,6,StdSort,2,1171
1000,NormalDistributionWithDups,6,StdSort,3,3418
1000,NormalDistributionWithDups,6,StdSort,4,7108
1000,NormalDistributionWithDups,6,StdSort,5,13171
1000,NormalDistributionWithDups,6,StdSort,6,22236
1000,NormalDistributionWithDups,6,StdSort,7,34897
1000,NormalDistributionWithDups,6,StdSort,8,51709
1000,NormalDistributionWithDups,6,StdSort,9,73313
1000,NormalDistributionWithDups,6,StdSort,10,100412
1000,NormalDistributionWithDups,7,ParallelSort,0,383
1000,NormalDistributionWithDups,7,ParallelSort,1,536
1000,NormalDistributionWithDups,7,ParallelSort,2,1520
1000,NormalDistributionWithDups,7,ParallelSort,3,4460
1000,NormalDistributionWithDups,7,ParallelSort,4,9308
1000,NormalDistributionWithDups,7,ParallelSort,5,17256
1000,NormalDistributionWithDups,7,ParallelSort,6,29122
1000,NormalDistributionWithDups,7,ParallelSort,7,45709
1000,NormalDistributionWithDups,7,ParallelSort,8,67754
1000,NormalDistributionWithDups,7,ParallelSort,9,96047
1000,NormalDistributionWithDups,7,ParallelSort,10,131440
1000,NormalDistributionWithDups,7,ParallelBufferedSort,0,407
1000,NormalDistributionWithDups,7,ParallelBufferedSort,1,540
1000,NormalDistributionWithDups,7,ParallelBufferedSort,2,1529
1000,NormalDistributionWithDups,7,ParallelBufferedSort,3,4460
1000,NormalDistributionWithDups,7,ParallelBufferedSort,4,9311
1000,NormalDistributionWithDups,7,ParallelBufferedSort,5,17265
1000,NormalDistributionWithDups,7,ParallelBufferedSort,6,29129
1000,NormalDistributionWithDups,7,ParallelBufferedSort,7,45732
1000,NormalDistributionWithDups,7,ParallelBufferedSort,8,67768
1000,NormalDistributionWithDups,7,ParallelBufferedSort,9,96048
1000,NormalDistributionWithDups,7,ParallelBufferedSort,10,131433
1000,NormalDistributionWithDups,7,ParallelRadixSort,0,657
1000,NormalDistributionWithDups,7,ParallelRadixSort,1,969
1000,NormalDistributionWithDups,7,ParallelRadixSort,2,1853
1000,NormalDistributionWithDups,7,ParallelRadixSort,3,4754
1000,NormalDistributionWithDups,7,ParallelRadixSort,4,9749
1000,NormalDistributionWithDups,7,ParallelRadixSort,5,17962
1000,NormalDistributionWithDups,7,ParallelRadixSort,6,30195
1000,NormalDistributionWithDups,7,ParallelRadixSort,7,47294
1000,NormalDistributionWithDups,7,ParallelRadixSort,8,70016
1000,NormalDistributionWithDups,7,ParallelRadixSort,9,99238
1000,NormalDistributionWithDups,7,ParallelRadixSort,10,135694
1000,NormalDistributionWithDups,7,StdSort,0,394
1000,NormalDistributionWithDups,7,StdSort,1,535
1000,NormalDistributionWithDups,7,StdSort,2,1524
1000,NormalDistributionWithDups,7,StdSort,3,4456
1000,NormalDistributionWithDups,7,StdSort,4,9301
1000,NormalDistributionWithDups,7,StdSort,5,17250
1000,NormalDistributionWithDups,7,StdSort,6,29114
1000,NormalDistributionWithDups,7,StdSort,7,45705
1000,NormalDistributionWithDups,7,StdSort,8,67739
1000,NormalDistributionWithDups,7,StdSort,9,96039
1000,NormalDistributionWithDups,7,StdSort,10,131414
1000,NormalDistributionWithDups,8,ParallelSort,0,361
1000,NormalDistributionWithDups,8,ParallelSort,1,494
1000,NormalDistributionWithDups,8,ParallelSort,2,1414
1000,NormalDistributionWithDups,8,ParallelSort,3,4147
1000,NormalDistributionWithDups,8,ParallelSort,4,8636
1000,NormalDistributionWithDups,8,ParallelSort,5,16025
1000,NormalDistributionWithDups,8,ParallelSort,6,27031
1000,NormalDistributionWithDups,8,ParallelSort,7,42430
1000,NormalDistributionWithDups,8,ParallelSort,8,62883
1000,NormalDistributionWithDups,8,ParallelSort,9,89141
1000,NormalDistributionWithDups,8,ParallelSort,10,122000
1000,NormalDistributionWithDups,8,ParallelBufferedSort,0,381
1000,NormalDistributionWithDups,8,ParallelBufferedSort,1,509
1000,NormalDistributionWithDups,8,ParallelBufferedSort,2,1406
1000,NormalDistributionWithDups,8,ParallelBufferedSort,3,4191
1000,NormalDistributionWithDups,8,ParallelBufferedSort,4,8681
1000,NormalDistributionWithDups,8,ParallelBufferedSort,5,16022
1000,NormalDistributionWithDups,8,ParallelBufferedSort,6,27027
1000,NormalDistributionWithDups,8,ParallelBufferedSort,7,42419
1000,NormalDistributionWithDups,8,ParallelBufferedSort,8,62880
1000,NormalDistributionWithDups,8,ParallelBufferedSort,9,89186
1000,NormalDistributionWithDups,8,ParallelBufferedSort,10,121971
1000,NormalDistributionWithDups,8,ParallelRadixSort,0,1251
1000,NormalDistributionWithDups,8,ParallelRadixSort,1,1230
1000,NormalDistributionWithDups,8,ParallelRadixSort,2,1685
1000,NormalDistributionWithDups,8,ParallelRadixSort,3,4325
1000,NormalDistributionWithDups,8,ParallelRadixSort,4,8788
1000,NormalDistributionWithDups,8,ParallelRadixSort,5,16216
1000,NormalDistributionWithDups,8,ParallelRadixSort,6,27367
1000,NormalDistributionWithDups,8,ParallelRadixSort,7,42665
1000,NormalDistributionWithDups,8,ParallelRadixSort,8,63112
1000,NormalDistributionWithDups,8,ParallelRadixSort,9,89423
1000,NormalDistributionWithDups,8,ParallelRadixSort,10,122475
1000,NormalDistributionWithDups,8,StdSort,0,353
1000,NormalDistributionWithDups,8,StdSort,1,492
1000,NormalDistributionWithDups,8,StdSort,2,1408
1000,NormalDistributionWithDups,8,StdSort,3,4138
1000,NormalDistributionWithDups,8,StdSort,4,8637
1000,NormalDistributionWithDups,8,StdSort,5,16011
1000,NormalDistributionWithDups,8,StdSort,6,26991
1000,NormalDistributionWithDups,8,StdSort,7,42353
1000,NormalDistributionWithDups,8,StdSort,8,62905
1000,NormalDistributionWithDups,8,StdSort,9,89138
1000,NormalDistributionWithDups,8,StdSort,10,121964
1000,SawTooth,1,ParallelSort,0,167
1000,SawTooth,1,ParallelSort,1,243
1000,SawTooth,1,ParallelSort,2,683
1000,SawTooth,1,ParallelSort,3,2080
1000,SawTooth,1,ParallelSort,4,4315
1000,SawTooth,1,ParallelSort,5,8005
1000,SawTooth,1,ParallelSort,6,13511
1000,SawTooth,1,ParallelSort,7,21200
1000,SawTooth,1,ParallelSort,8,31399
1000,SawTooth,1,ParallelSort,9,44523
1000,SawTooth,1,ParallelSort,10,60913
1000,SawTooth,1,ParallelBufferedSort,0,182
1000,SawTooth,1,ParallelBufferedSort,1,242
1000,SawTooth,1,ParallelBufferedSort,2,682
1000,SawTooth,1,ParallelBufferedSort,3,2070
1000,SawTooth,1,ParallelBufferedSort,4,4312
1000,SawTooth,1,ParallelBufferedSort,5,7998
1000,SawTooth,1,ParallelBufferedSort,6,13513
1000,SawTooth,1,ParallelBufferedSort,7,21183
1000,SawTooth,1,ParallelBufferedSort,8,31402
1000,SawTooth,1,ParallelBufferedSort,9,44515
1000,SawTooth,1,ParallelBufferedSort,10,60914
1000,SawTooth,1,ParallelRadixSort,0,322
1000,SawTooth,1,ParallelRadixSort,1,480
1000,SawTooth,1,ParallelRadixSort,2,1189
1000,SawTooth,1,ParallelRadixSort,3,3328
1000,SawTooth,1,ParallelRadixSort,4,6920
1000,SawTooth,1,ParallelRadixSort,5,12827
1000,SawTooth,1,ParallelRadixSort,6,21657
1000,SawTooth,1,ParallelRadixSort,7,33959
1000,SawTooth,1,ParallelRadixSort,8,50336
1000,SawTooth,1,ParallelRadixSort,9,71372
1000,SawTooth,1,ParallelRadixSort,10,97652
1000,SawTooth,1,StdSort,0,170
1000,SawTooth,1,StdSort,1,239
1000,SawTooth,1,StdSort,2,681
1000,SawTooth,1,StdSort,3,2060
1000,SawTooth,1,StdSort,4,4305
1000,SawTooth,1,StdSort,5,7991
1000,SawTooth,1,StdSort,6,13484
1000,SawTooth,1,StdSort,7,21176
1000,SawTooth,1,StdSort,8,31393
1000,SawTooth,1,StdSort,9,44512
1000,SawTooth,1,StdSort,10,60911
1000,SawTooth,2,ParallelSort,0,174
1000,SawTooth,2,ParallelSort,1,239
1000,SawTooth,2,ParallelSort,2,686
1000,SawTooth,2,ParallelSort,3,2065
1000,SawTooth,2,ParallelSort,4,4313
1000,SawTooth,2,ParallelSort,5,8000
1000,SawTooth,2,ParallelSort,6,13494
1000,SawTooth,2,ParallelSort,7,21182
1000,SawTooth,2,ParallelSort,8,31397
1000,SawTooth,2,ParallelSort,9,44521
1000,SawTooth,2,ParallelSort,10,60914
1000,SawTooth,2,ParallelBufferedSort,0,173
1000,SawTooth,2,ParallelBufferedSort,1,237
1000,SawTooth,2,ParallelBufferedSort,2,685
1000,SawTooth,2,ParallelBufferedSort,3,2064
1000,SawTooth,2,ParallelBufferedSort,4,4312
1000,SawTooth,2,ParallelBufferedSort,5,7995
1000,SawTooth,2,ParallelBufferedSort,6,13499
1000,SawTooth,2,ParallelBufferedSort,7,21185
1000,SawTooth,2,ParallelBufferedSort,8,31402
1000,SawTooth,2,ParallelBufferedSort,9,44531
1000,SawTooth,2,ParallelBufferedSort,10,60923
1000,SawTooth,2,ParallelRadixSort,0,338
1000,SawTooth,2,ParallelRadixSort,1,501
1000,SawTooth,2,ParallelRadixSort,2,1204
1000,SawTooth,2,ParallelRadixSort,3,3299
1000,SawTooth,2,ParallelRadixSort,4,6778
1000,SawTooth,2,ParallelRadixSort,5,12522
1000,SawTooth,2,ParallelRadixSort,6,21074
1000,SawTooth,2,ParallelRadixSort,7,33045
1000,SawTooth,2,ParallelRadixSort,8,48948
1000,SawTooth,2,ParallelRadixSort,9,69382
1000,SawTooth,2,ParallelRadixSort,10,94899
1000,SawTooth,2,StdSort,0,170
1000,SawTooth,2,StdSort,1,239
1000,SawTooth,2,StdSort,2,681
1000,SawTooth,2,StdSort,3,2060
1000,SawTooth,2,StdSort,4,4305
1000,SawTooth,2,StdSort,5,7990
1000,SawTooth,2,StdSort,6,13484
1000,SawTooth,2,StdSort,7,21176
1000,SawTooth,2,StdSort,8,31391
1000,SawTooth,2,StdSort,9,44508
1000,SawTooth,2,StdSort,10,60906
1000,SawTooth,3,ParallelSort,0,175
1000,SawTooth,3,ParallelSort,1,242
1000,SawTooth,3,ParallelSort,2,682
1000,SawTooth,3,ParallelSort,3,2078
1000,SawTooth,3,ParallelSort,4,4316
1000,SawTooth,3,ParallelSort,5,7999
1000,SawTooth,3,ParallelSort,6,13491
1000,SawTooth,3,ParallelSort,7,21192
1000,SawTooth,3,ParallelSort,8,31412
1000,SawTooth,3,ParallelSort,9,44517
1000,SawTooth,3,ParallelSort,10,60918
1000,SawTooth,3,ParallelBufferedSort,0,178
1000,SawTooth,3,ParallelBufferedSort,1,239
1000,SawTooth,3,ParallelBufferedSort,2,684
1000,SawTooth,3,ParallelBufferedSort,3,2078
1000,SawTooth,3,ParallelBufferedSort,4,4309
1000,SawTooth,3,ParallelBufferedSort,5,7996
1000,SawTooth,3,ParallelBufferedSort,6,13504
1000,SawTooth,3,ParallelBufferedSort,7,21195
1000,SawTooth,3,ParallelBufferedSort,8,31405
1000,SawTooth,3,ParallelBufferedSort,9,44527
1000,SawTooth,3,ParallelBufferedSort,10,60919
1000,SawTooth,3,ParallelRadixSort,0,356
1000,SawTooth,3,ParallelRadixSort,1,523
1000,SawTooth,3,ParallelRadixSort,2,1208
1000,SawTooth,3,ParallelRadixSort,3,3287
1000,SawTooth,3,ParallelRadixSort,4,6755
1000,SawTooth,3,ParallelRadixSort,5,12430
1000,SawTooth,3,ParallelRadixSort,6,20901
1000,SawTooth,3,ParallelRadixSort,7,32710
1000,SawTooth,3,ParallelRadixSort,8,48506
1000,SawTooth,3,ParallelRadixSort,9,68732
1000,SawTooth,3,ParallelRadixSort,10,93975
1000,SawTooth,3,StdSort,0,170
1000,SawTooth,3,StdSort,1,239
1000,SawTooth,3,StdSort,2,681
1000,SawTooth,3,StdSort,3,2060
1000,SawTooth,3,StdSort,4,4305
1000,SawTooth,3,StdSort,5,7991
1000,SawTooth,3,StdSort,6,13483
1000,SawTooth,3,StdSort,7,21175
1000,SawTooth,3,StdSort,8,31391
1000,SawTooth,3,StdSort,9,44514
1000,SawTooth,3,StdSort,10,60911
1000,SawTooth,4,ParallelSort,0,167
1000,SawTooth,4,ParallelSort,1,238
1000,SawTooth,4,ParallelSort,2,683
1000,SawTooth,4,ParallelSort,3,2080
1000,SawTooth,4,ParallelSort,4,4313
1000,SawTooth,4,ParallelSort,5,7995
1000,SawTooth,4,ParallelSort,6,13494
1000,SawTooth,4,ParallelSort,7,21188
1000,SawTooth,4,ParallelSort,8,31404
1000,SawTooth,4,ParallelSort,9,44523
1000,SawTooth,4,ParallelSort,10,60926
1000,SawTooth,4,ParallelBufferedSort,0,181
1000,SawTooth,4,ParallelBufferedSort,1,239
1000,SawTooth,4,ParallelBufferedSort,2,685
1000,SawTooth,4,ParallelBufferedSort,3,2065
1000,SawTooth,4,ParallelBufferedSort,4,4313
1000,SawTooth,4,ParallelBufferedSort,5,7996
1000,SawTooth,4,ParallelBufferedSort,6,13498
1000,SawTooth,4,ParallelBufferedSort,7,21187
1000,SawTooth,4,ParallelBufferedSort,8,31398
1000,SawTooth,4,ParallelBufferedSort,9,44520
1000,SawTooth,4,ParallelBufferedSort,10,60915
1000,SawTooth,4,ParallelRadixSort,0,391
1000,SawTooth,4,ParallelRadixSort,1,578
1000,SawTooth,4,ParallelRadixSort,2,1228
1000,SawTooth,4,ParallelRadixSort,3,3282
1000,SawTooth,4,ParallelRadixSort,4,6720
1000,SawTooth,4,ParallelRadixSort,5,12402
1000,SawTooth,4,ParallelRadixSort,6,20827
1000,SawTooth,4,ParallelRadixSort,7,32618
1000,SawTooth,4,ParallelRadixSort,8,48285
1000,SawTooth,4,ParallelRadixSort,9,68388
1000,SawTooth,4,ParallelRadixSort,10,93525
1000,SawTooth,4,StdSort,0,282
1000,SawTooth,4,StdSort,1,239
1000,SawTooth,4,StdSort,2,681
1000,SawTooth,4,StdSort,3,2060
1000,SawTooth,4,StdSort,4,4305
1000,SawTooth,4,StdSort,5,7992
1000,SawTooth,4,StdSort,6,13488
1000,SawTooth,4,StdSort,7,21180
1000,SawTooth,4,StdSort,8,31393
1000,SawTooth,4,StdSort,9,44513
1000,SawTooth,4,StdSort,10,60911
1000,SawTooth,5,ParallelSort,0,167
1000,SawTooth,5,ParallelSort,1,239
1000,SawTooth,5,ParallelSort,2,684
1000,SawTooth,5,ParallelSort,3,2075
1000,SawTooth,5,ParallelSort,4,4329
1000,SawTooth,5,ParallelSort,5,7997
1000,SawTooth,5,ParallelSort,6,13504
1000,SawTooth,5,ParallelSort,7,21183
1000,SawTooth,5,ParallelSort,8,31397
1000,SawTooth,5,ParallelSort,9,44520
1000,SawTooth,5,ParallelSort,10,60926
1000,SawTooth,5,ParallelBufferedSort,0,178
1000,SawTooth,5,ParallelBufferedSort,1,241
1000,SawTooth,5,ParallelBufferedSort,2,683
1000,SawTooth,5,ParallelBufferedSort,3,2071
1000,SawTooth,5,ParallelBufferedSort,4,4315
1000,SawTooth,5,ParallelBufferedSort,5,7993
1000,SawTooth,5,ParallelBufferedSort,6,13500
1000,SawTooth,5,ParallelBufferedSort,7,21182
1000,SawTooth,5,ParallelBufferedSort,8,31404
1000,SawTooth,5,ParallelBufferedSort,9,44520
1000,SawTooth,5,ParallelBufferedSort,10,60920
1000,SawTooth,5,ParallelRadixSort,0,404
1000,SawTooth,5,ParallelRadixSort,1,563
1000,SawTooth,5,ParallelRadixSort,2,1242
1000,SawTooth,5,ParallelRadixSort,3,3290
1000,SawTooth,5,ParallelRadixSort,4,6719
1000,SawTooth,5,ParallelRadixSort,5,12368
1000,SawTooth,5,ParallelRadixSort,6,20792
1000,SawTooth,5,ParallelRadixSort,7,32547
1000,SawTooth,5,ParallelRadixSort,8,48144
1000,SawTooth,5,ParallelRadixSort,9,68226
1000,SawTooth,5,ParallelRadixSort,10,93288
1000,SawTooth,5,StdSort,0,170
1000,SawTooth,5,StdSort,1,239
1000,SawTooth,5,StdSort,2,681
1000,SawTooth,5,StdSort,3,2060
1000,SawTooth,5,StdSort,4,4305
1000,SawTooth,5,StdSort,5,7991
1000,SawTooth,5,StdSort,6,13494
1000,SawTooth,5,StdSort,7,21175
1000,SawTooth,5,StdSort,8,31391
1000,SawTooth,5,StdSort,9,44506
1000,SawTooth,5,StdSort,10,60907
1000,SawTooth,6,ParallelSort,0,181
1000,SawTooth,6,ParallelSort,1,246
1000,SawTooth,6,ParallelSort,2,683
1000,SawTooth,6,ParallelSort,3,2085
1000,SawTooth,6,ParallelSort,4,4314
1000,SawTooth,6,ParallelSort,5,8011
1000,SawTooth,6,ParallelSort,6,13513
1000,SawTooth,6,ParallelSort,7,21202
1000,SawTooth,6,ParallelSort,8,31415
1000,SawTooth,6,ParallelSort,9,44531
1000,SawTooth,6,ParallelSort,10,60923
1000,SawTooth,6,ParallelBufferedSort,0,179
1000,SawTooth,6,ParallelBufferedSort,1,239
1000,SawTooth,6,ParallelBufferedSort,2,683
1000,SawTooth,6,ParallelBufferedSort,3,2067
1000,SawTooth,6,ParallelBufferedSort,4,4312
1000,SawTooth,6,ParallelBufferedSort,5,7996
1000,SawTooth,6,ParallelBufferedSort,6,13492
1000,SawTooth,6,ParallelBufferedSort,7,21186
1000,SawTooth,6,ParallelBufferedSort,8,31401
1000,SawTooth,6,ParallelBufferedSort,9,44529
1000,SawTooth,6,ParallelBufferedSort,10,60927
1000,SawTooth,6,ParallelRadixSort,0,405
1000,SawTooth,6,ParallelRadixSort,1,1059
1000,SawTooth,6,ParallelRadixSort,2,1258
1000,SawTooth,6,ParallelRadixSort,3,3298
1000,SawTooth,6,ParallelRadixSort,4,6716
1000,SawTooth,6,ParallelRadixSort,5,12351
1000,SawTooth,6,ParallelRadixSort,6,20746
1000,SawTooth,6,ParallelRadixSort,7,32460
1000,SawTooth,6,ParallelRadixSort,8,48068
1000,SawTooth,6,ParallelRadixSort,9,68119
1000,SawTooth,6,ParallelRadixSort,10,93114
1000,SawTooth,6,StdSort,0,170
1000,SawTooth,6,StdSort,1,239
1000,SawTooth,6,StdSort,2,681
1000,SawTooth,6,StdSort,3,2064
1000,SawTooth,6,StdSort,4,4309
1000,SawTooth,6,StdSort,5,7993
1000,SawTooth,6,StdSort,6,13488
1000,SawTooth,6,StdSort,7,21179
1000,SawTooth,6,StdSort,8,31391
1000,SawTooth,6,StdSort,9,44510
1000,SawTooth,6,StdSort,10,60909
1000,SawTooth,7,ParallelSort,0,173
1000,SawTooth,7,ParallelSort,1,239
1000,SawTooth,7,ParallelSort,2,684
1000,SawTooth,7,ParallelSort,3,2083
1000,SawTooth,7,ParallelSort,4,4324
1000,SawTooth,7,ParallelSort,5,7997
1000,SawTooth,7,ParallelSort,6,13503
1000,SawTooth,7,ParallelSort,7,21184
1000,SawTooth,7,ParallelSort,8,31405
1000,SawTooth,7,ParallelSort,9,44526
1000,SawTooth,7,ParallelSort,10,60938
1000,SawTooth,7,ParallelBufferedSort,0,181
1000,SawTooth,7,ParallelBufferedSort,1,239
1000,SawTooth,7,ParallelBufferedSort,2,683
1000,SawTooth,7,ParallelBufferedSort,3,2068
1000,SawTooth,7,ParallelBufferedSort,4,4316
1000,SawTooth,7,ParallelBufferedSort,5,8002
1000,SawTooth,7,ParallelBufferedSort,6,13506
1000,SawTooth,7,ParallelBufferedSort,7,21186
1000,SawTooth,7,ParallelBufferedSort,8,31406
1000,SawTooth,7,ParallelBufferedSort,9,44531
1000,SawTooth,7,ParallelBufferedSort,10,60937
1000,SawTooth,7,ParallelRadixSort,0,544
1000,SawTooth,7,ParallelRadixSort,1,1228
1000,SawTooth,7,ParallelRadixSort,2,1299
1000,SawTooth,7,ParallelRadixSort,3,3326
1000,SawTooth,7,ParallelRadixSort,4,6720
1000,SawTooth,7,ParallelRadixSort,5,12379
1000,SawTooth,7,ParallelRadixSort,6,20744
1000,SawTooth,7,ParallelRadixSort,7,32439
1000,SawTooth,7,ParallelRadixSort,8,48046
1000,SawTooth,7,ParallelRadixSort,9,68046
1000,SawTooth,7,ParallelRadixSort,10,93008
1000,SawTooth,7,StdSort,0,170
1000,SawTooth,7,StdSort,1,236
1000,SawTooth,7,StdSort,2,682
1000,SawTooth,7,StdSort,3,2064
1000,SawTooth,7,StdSort,4,4309
1000,SawTooth,7,StdSort,5,7993
1000,SawTooth,7,StdSort,6,13488
1000,SawTooth,7,StdSort,7,21179
1000,SawTooth,7,StdSort,8,31392
1000,SawTooth,7,StdSort,9,44511
1000,SawTooth,7,StdSort,10,60908
1000,SawTooth,8,ParallelSort,0,181
1000,SawTooth,8,ParallelSort,1,241
1000,SawTooth,8,ParallelSort,2,686
1000,SawTooth,8,ParallelSort,3,2076
1000,SawTooth,8,ParallelSort,4,4312
1000,SawTooth,8,ParallelSort,5,8003
1000,SawTooth,8,ParallelSort,6,13508
1000,SawTooth,8,ParallelSort,7,21198
1000,SawTooth,8,ParallelSort,8,31406
1000,SawTooth,8,ParallelSort,9,44525
1000,SawTooth,8,ParallelSort,10,60915
1000,SawTooth,8,ParallelBufferedSort,0,173
1000,SawTooth,8,ParallelBufferedSort,1,240
1000,SawTooth,8,ParallelBufferedSort,2,687
1000,SawTooth,8,ParallelBufferedSort,3,2067
1000,SawTooth,8,ParallelBufferedSort,4,4317
1000,SawTooth,8,ParallelBufferedSort,5,8001
1000,SawTooth,8,ParallelBufferedSort,6,13499
1000,SawTooth,8,ParallelBufferedSort,7,21196
1000,SawTooth,8,ParallelBufferedSort,8,31405
1000,SawTooth,8,ParallelBufferedSort,9,44525
1000,SawTooth,8,ParallelBufferedSort,10,60913
1000,SawTooth,8,ParallelRadixSort,0,1074
1000,SawTooth,8,ParallelRadixSort,1,1837
1000,SawTooth,8,ParallelRadixSort,2,1344
1000,SawTooth,8,ParallelRadixSort,3,3464
1000,SawTooth,8,ParallelRadixSort,4,6704
1000,SawTooth,8,ParallelRadixSort,5,12324
1000,SawTooth,8,ParallelRadixSort,6,20701
1000,SawTooth,8,ParallelRadixSort,7,32398
1000,SawTooth,8,ParallelRadixSort,8,47970
1000,SawTooth,8,ParallelRadixSort,9,67929
1000,SawTooth,8,ParallelRadixSort,10,92926
1000,SawTooth,8,StdSort,0,165
1000,SawTooth,8,StdSort,1,239
1000,SawTooth,8,StdSort,2,681
1000,SawTooth,8,StdSort,3,2060
1000,SawTooth,8,StdSort,4,4301
1000,SawTooth,8,StdSort,5,7977
1000,SawTooth,8,StdSort,6,13473
1000,SawTooth,8,StdSort,7,21143
1000,SawTooth,8,StdSort,8,31347
1000,SawTooth,8,StdSort,9,44500
1000,SawTooth,8,StdSort,10,60908
10000,Random,1,ParallelSort,0,3559
10000,Random,1,ParallelSort,1,5027
10000,Random,1,ParallelSort,2,13764
10000,Random,1,ParallelSort,3,39655
10000,Random,1,ParallelSort,4,82881
10000,Random,1,ParallelSort,5,153760
10000,Random,1,ParallelSort,6,259513
10000,Random,1,ParallelSort,7,407397
10000,Random,1,ParallelSort,8,603892
10000,Random,1,ParallelSort,9,856184
10000,Random,1,ParallelSort,10,1171668
10000,Random,1,ParallelBufferedSort,0,3502
10000,Random,1,ParallelBufferedSort,1,5052
10000,Random,1,ParallelBufferedSort,2,13760
10000,Random,1,ParallelBufferedSort,3,39657
10000,Random,1,ParallelBufferedSort,4,82888
10000,Random,1,ParallelBufferedSort,5,153731
10000,Random,1,ParallelBufferedSort,6,259473
10000,Random,1,ParallelBufferedSort,7,407689
10000,Random,1,ParallelBufferedSort,8,604069
10000,Random,1,ParallelBufferedSort,9,856284
10000,Random,1,ParallelBufferedSort,10,1171601
10000,Random,1,ParallelRadixSort,0,3020
10000,Random,1,ParallelRadixSort,1,4637
10000,Random,1,ParallelRadixSort,2,11630
10000,Random,1,ParallelRadixSort,3,33038
10000,Random,1,ParallelRadixSort,4,68807
10000,Random,1,ParallelRadixSort,5,127766
10000,Random,1,ParallelRadixSort,6,215749
10000,Random,1,ParallelRadixSort,7,338555
10000,Random,1,ParallelRadixSort,8,501892
10000,Random,1,ParallelRadixSort,9,711817
10000,Random,1,ParallelRadixSort,10,973708
10000,Random,1,StdSort,0,3510
10000,Random,1,StdSort,1,4919
10000,Random,1,StdSort,2,13741
10000,Random,1,StdSort,3,39648
10000,Random,1,StdSort,4,82881
10000,Random,1,StdSort,5,153766
10000,Random,1,StdSort,6,259611
10000,Random,1,StdSort,7,407391
10000,Random,1,StdSort,8,603882
10000,Random,1,StdSort,9,856187
10000,Random,1,StdSort,10,1171573
10000,Random,2,ParallelSort,0,1906
10000,Random,2,ParallelSort,1,2511
10000,Random,2,ParallelSort,2,6149
10000,Random,2,ParallelSort,3,17223
10000,Random,2,ParallelSort,4,35716
10000,Random,2,ParallelSort,5,66175
10000,Random,2,ParallelSort,6,111575
10000,Random,2,ParallelSort,7,175085
10000,Random,2,ParallelSort,8,259476
10000,Random,2,ParallelSort,9,367830
10000,Random,2,ParallelSort,10,503268
10000,Random,2,ParallelBufferedSort,0,1819
10000,Random,2,ParallelBufferedSort,1,2216
10000,Random,2,ParallelBufferedSort,2,5397
10000,Random,2,ParallelBufferedSort,3,14932
10000,Random,2,ParallelBufferedSort,4,31067
10000,Random,2,ParallelBufferedSort,5,57179
10000,Random,2,ParallelBufferedSort,6,96033
10000,Random,2,ParallelBufferedSort,7,150405
10000,Random,2,ParallelBufferedSort,8,222663
10000,Random,2,ParallelBufferedSort,9,315448
10000,Random,2,ParallelBufferedSort,10,431337
10000,Random,2,ParallelRadixSort,0,3109
10000,Random,2,ParallelRadixSort,1,4680
10000,Random,2,ParallelRadixSort,2,11479
10000,Random,2,ParallelRadixSort,3,32250
10000,Random,2,ParallelRadixSort,4,67001
10000,Random,2,ParallelRadixSort,5,124278
10000,Random,2,ParallelRadixSort,6,209768
10000,Random,2,ParallelRadixSort,7,328978
10000,Random,2,ParallelRadixSort,8,487753
10000,Random,2,ParallelRadixSort,9,691533
10000,Random,2,ParallelRadixSort,10,945824
10000,Random,2,StdSort,0,4797
10000,Random,2,StdSort,1,4889
10000,Random,2,StdSort,2,13652
10000,Random,2,StdSort,3,39292
10000,Random,2,StdSort,4,82107
10000,Random,2,StdSort,5,152286
10000,Random,2,StdSort,6,257022
10000,Random,2,StdSort,7,403533
10000,Random,2,StdSort,8,598176
10000,Random,2,StdSort,9,848335
10000,Random,2,StdSort,10,1160754
10000,Random,3,ParallelSort,0,1880
10000,Random,3,ParallelSort,1,2412
10000,Random,3,ParallelSort,2,5786
10000,Random,3,ParallelSort,3,15938
10000,Random,3,ParallelSort,4,32847
10000,Random,3,ParallelSort,5,60663
10000,Random,3,ParallelSort,6,102183
10000,Random,3,ParallelSort,7,160164
10000,Random,3,ParallelSort,8,237266
10000,Random,3,ParallelSort,9,336374
10000,Random,3,ParallelSort,10,459975
10000,Random,3,ParallelBufferedSort,0,1400
10000,Random,3,ParallelBufferedSort,1,1390
10000,Random,3,ParallelBufferedSort,2,3358
10000,Random,3,ParallelBufferedSort,3,9266
10000,Random,3,ParallelBufferedSort,4,19237
10000,Random,3,ParallelBufferedSort,5,35561
10000,Random,3,ParallelBufferedSort,6,60003
10000,Random,3,ParallelBufferedSort,7,93803
10000,Random,3,ParallelBufferedSort,8,139487
10000,Random,3,ParallelBufferedSort,9,196776
10000,Random,3,ParallelBufferedSort,10,270199
10000,Random,3,ParallelRadixSort,0,3091
10000,Random,3,ParallelRadixSort,1,4695
10000,Random,3,ParallelRadixSort,2,11444
10000,Random,3,ParallelRadixSort,3,32001
10000,Random,3,ParallelRadixSort,4,66399
10000,Random,3,ParallelRadixSort,5,123115
10000,Random,3,ParallelRadixSort,6,207750
10000,Random,3,ParallelRadixSort,7,325806
10000,Random,3,ParallelRadixSort,8,482964
10000,Random,3,ParallelRadixSort,9,684752
10000,Random,3,ParallelRadixSort,10,936640
10000,Random,3,StdSort,0,3537
10000,Random,3,StdSort,1,4951
10000,Random,3,StdSort,2,13799
10000,Random,3,StdSort,3,39766
10000,Random,3,StdSort,4,83110
10000,Random,3,StdSort,5,154217
10000,Random,3,StdSort,6,260230
10000,Random,3,StdSort,7,409724
10000,Random,3,StdSort,8,605802
10000,Random,3,StdSort,9,858756
10000,Random,3,StdSort,10,1174926
10000,Random,4,ParallelSort,0,1575
10000,Random,4,ParallelSort,1,2066
10000,Random,4,ParallelSort,2,5055
10000,Random,4,ParallelSort,3,14123
10000,Random,4,ParallelSort,4,27339
10000,Random,4,ParallelSort,5,44724
10000,Random,4,ParallelSort,6,77615
10000,Random,4,ParallelSort,7,117946
10000,Random,4,ParallelSort,8,174749
10000,Random,4,ParallelSort,9,252908
10000,Random,4,ParallelSort,10,379415
10000,Random,4,ParallelBufferedSort,0,1244
10000,Random,4,ParallelBufferedSort,1,1516
10000,Random,4,ParallelBufferedSort,2,3544
10000,Random,4,ParallelBufferedSort,3,9672
10000,Random,4,ParallelBufferedSort,4,19889
10000,Random,4,ParallelBufferedSort,5,36750
10000,Random,4,ParallelBufferedSort,6,61794
10000,Random,4,ParallelBufferedSort,7,96794
10000,Random,4,ParallelBufferedSort,8,143398
10000,Random,4,ParallelBufferedSort,9,213646
10000,Random,4,ParallelBufferedSort,10,275094
10000,Random,4,ParallelRadixSort,0,3103
10000,Random,4,ParallelRadixSort,1,4698
10000,Random,4,ParallelRadixSort,2,11421
10000,Random,4,ParallelRadixSort,3,31885
10000,Random,4,ParallelRadixSort,4,66100
10000,Random,4,ParallelRadixSort,5,122555
10000,Random,4,ParallelRadixSort,6,206746
10000,Random,4,ParallelRadixSort,7,324233
10000,Random,4,ParallelRadixSort,8,480540
10000,Random,4,ParallelRadixSort,9,681391
10000,Random,4,ParallelRadixSort,10,931917
10000,Random,4,StdSort,0,3486
10000,Random,4,StdSort,1,4898
10000,Random,4,StdSort,2,13648
10000,Random,4,StdSort,3,39277
10000,Random,4,StdSort,4,82084
10000,Random,4,StdSort,5,152250
10000,Random,4,StdSort,6,256976
10000,Random,4,StdSort,7,403484
10000,Random,4,StdSort,8,598078
10000,Random,4,StdSort,9,847963
10000,Random,4,StdSort,10,1160338
10000,Random,5,ParallelSort,0,1424
10000,Random,5,ParallelSort,1,1839
10000,Random,5,ParallelSort,2,4066
10000,Random,5,ParallelSort,3,11219
10000,Random,5,ParallelSort,4,22242
10000,Random,5,ParallelSort,5,40630
10000,Random,5,ParallelSort,6,68546
10000,Random,5,ParallelSort,7,109189
10000,Random,5,ParallelSort,8,155796
10000,Random,5,ParallelSort,9,221143
10000,Random,5,ParallelSort,10,302477
10000,Random,5,ParallelBufferedSort,0,1295
10000,Random,5,ParallelBufferedSort,1,1617
10000,Random,5,ParallelBufferedSort,2,3663
10000,Random,5,ParallelBufferedSort,3,9555
10000,Random,5,ParallelBufferedSort,4,19534
10000,Random,5,ParallelBufferedSort,5,35982
10000,Random,5,ParallelBufferedSort,6,60478
10000,Random,5,ParallelBufferedSort,7,94747
10000,Random,5,ParallelBufferedSort,8,140146
10000,Random,5,ParallelBufferedSort,9,198594
10000,Random,5,ParallelBufferedSort,10,271838
10000,Random,5,ParallelRadixSort,0,3136
10000,Random,5,ParallelRadixSort,1,4725
10000,Random,5,ParallelRadixSort,2,11395
10000,Random,5,ParallelRadixSort,3,31799
10000,Random,5,ParallelRadixSort,4,65939
10000,Random,5,ParallelRadixSort,5,122195
10000,Random,5,ParallelRadixSort,6,206148
10000,Random,5,ParallelRadixSort,7,323303
10000,Random,5,ParallelRadixSort,8,479836
10000,Random,5,ParallelRadixSort,9,679542
10000,Random,5,ParallelRadixSort,10,929146
10000,Random,5,StdSort,0,3464
10000,Random,5,StdSort,1,4901
10000,Random,5,StdSort,2,13542
10000,Random,5,StdSort,3,38930
10000,Random,5,StdSort,4,81269
10000,Random,5,StdSort,5,151784
10000,Random,5,StdSort,6,254238
10000,Random,5,StdSort,7,399111
10000,Random,5,StdSort,8,591697
10000,Random,5,StdSort,9,838877
10000,Random,5,StdSort,10,1147672
10000,Random,6,ParallelSort,0,1846
10000,Random,6,ParallelSort,1,2169
10000,Random,6,ParallelSort,2,4889
10000,Random,6,ParallelSort,3,13581
10000,Random,6,ParallelSort,4,28066
10000,Random,6,ParallelSort,5,51801
10000,Random,6,ParallelSort,6,87163
10000,Random,6,ParallelSort,7,136763
10000,Random,6,ParallelSort,8,202970
10000,Random,6,ParallelSort,9,286496
10000,Random,6,ParallelSort,10,393253
10000,Random,6,ParallelBufferedSort,0,1341
10000,Random,6,ParallelBufferedSort,1,1591
10000,Random,6,ParallelBufferedSort,2,3568
10000,Random,6,ParallelBufferedSort,3,9112
10000,Random,6,ParallelBufferedSort,4,18746
10000,Random,6,ParallelBufferedSort,5,30374
10000,Random,6,ParallelBufferedSort,6,55479
10000,Random,6,ParallelBufferedSort,7,79832
10000,Random,6,ParallelBufferedSort,8,118075
10000,Random,6,ParallelBufferedSort,9,167205
10000,Random,6,ParallelBufferedSort,10,228551
10000,Random,6,ParallelRadixSort,0,3114
10000,Random,6,ParallelRadixSort,1,4711
10000,Random,6,ParallelRadixSort,2,11381
10000,Random,6,ParallelRadixSort,3,31772
10000,Random,6,ParallelRadixSort,4,65820
10000,Random,6,ParallelRadixSort,5,121956
10000,Random,6,ParallelRadixSort,6,205790
10000,Random,6,ParallelRadixSort,7,322646
10000,Random,6,ParallelRadixSort,8,478449
10000,Random,6,ParallelRadixSort,9,677919
10000,Random,6,ParallelRadixSort,10,927364
10000,Random,6,StdSort,0,3560
10000,Random,6,StdSort,1,4979
10000,Random,6,StdSort,2,13948
10000,Random,6,StdSort,3,40308
10000,Random,6,StdSort,4,84144
10000,Random,6,StdSort,5,155980
10000,Random,6,StdSort,6,263325
10000,Random,6,StdSort,7,413338
10000,Random,6,StdSort,8,612675
10000,Random,6,StdSort,9,868720
10000,Random,6,StdSort,10,1188737
10000,Random,7,ParallelSort,0,1724
10000,Random,7,ParallelSort,1,1964
10000,Random,7,ParallelSort,2,3944
10000,Random,7,ParallelSort,3,10531
10000,Random,7,ParallelSort,4,22090
10000,Random,7,ParallelSort,5,41171
10000,Random,7,ParallelSort,6,69217
10000,Random,7,ParallelSort,7,108946
10000,Random,7,ParallelSort,8,161924
10000,Random,7,ParallelSort,9,228401
10000,Random,7,ParallelSort,10,313174
10000,Random,7,ParallelBufferedSort,0,1528
10000,Random,7,ParallelBufferedSort,1,2188
10000,Random,7,ParallelBufferedSort,2,3252
10000,Random,7,ParallelBufferedSort,3,8820
10000,Random,7,ParallelBufferedSort,4,17944
10000,Random,7,ParallelBufferedSort,5,31958
10000,Random,7,ParallelBufferedSort,6,53010
10000,Random,7,ParallelBufferedSort,7,82387
10000,Random,7,ParallelBufferedSort,8,120842
10000,Random,7,ParallelBufferedSort,9,171619
10000,Random,7,ParallelBufferedSort,10,234667
10000,Random,7,ParallelRadixSort,0,3132
10000,Random,7,ParallelRadixSort,1,4706
10000,Random,7,ParallelRadixSort,2,11374
10000,Random,7,ParallelRadixSort,3,31725
10000,Random,7,ParallelRadixSort,4,65750
10000,Random,7,ParallelRadixSort,5,121854
10000,Random,7,ParallelRadixSort,6,205518
10000,Random,7,ParallelRadixSort,7,322254
10000,Random,7,ParallelRadixSort,8,481927
10000,Random,7,ParallelRadixSort,9,683078
10000,Random,7,ParallelRadixSort,10,926291
10000,Random,7,StdSort,0,3473
10000,Random,7,StdSort,1,4892
10000,Random,7,StdSort,2,13581
10000,Random,7,StdSort,3,39064
10000,Random,7,StdSort,4,81580
10000,Random,7,StdSort,5,151258
10000,Random,7,StdSort,6,255225
10000,Random,7,StdSort,7,400722
10000,Random,7,StdSort,8,593986
10000,Random,7,StdSort,9,842126
10000,Random,7,StdSort,10,1152365
10000,Random,8,ParallelSort,0,2048
10000,Random,8,ParallelSort,1,2565
10000,Random,8,ParallelSort,2,4024
10000,Random,8,ParallelSort,3,9830
10000,Random,8,ParallelSort,4,20228
10000,Random,8,ParallelSort,5,37491
10000,Random,8,ParallelSort,6,63079
10000,Random,8,ParallelSort,7,98906
10000,Random,8,ParallelSort,8,146659
10000,Random,8,ParallelSort,9,207744
10000,Random,8,ParallelSort,10,284159
10000,Random,8,ParallelBufferedSort,0,1902
10000,Random,8,ParallelBufferedSort,1,2775
10000,Random,8,ParallelBufferedSort,2,4038
10000,Random,8,ParallelBufferedSort,3,9344
10000,Random,8,ParallelBufferedSort,4,17553
10000,Random,8,ParallelBufferedSort,5,32493
10000,Random,8,ParallelBufferedSort,6,32479
10000,Random,8,ParallelBufferedSort,7,82980
10000,Random,8,ParallelBufferedSort,8,124516
10000,Random,8,ParallelBufferedSort,9,154491
10000,Random,8,ParallelBufferedSort,10,187282
10000,Random,8,ParallelRadixSort,0,3229
10000,Random,8,ParallelRadixSort,1,4715
10000,Random,8,ParallelRadixSort,2,11376
10000,Random,8,ParallelRadixSort,3,31732
10000,Random,8,ParallelRadixSort,4,65690
10000,Random,8,ParallelRadixSort,5,121768
10000,Random,8,ParallelRadixSort,6,205404
10000,Random,8,ParallelRadixSort,7,322044
10000,Random,8,ParallelRadixSort,8,477392
10000,Random,8,ParallelRadixSort,9,676833
10000,Random,8,ParallelRadixSort,10,925786
10000,Random,8,StdSort,0,3518
10000,Random,8,StdSort,1,4916
10000,Random,8,StdSort,2,13736
10000,Random,8,StdSort,3,39808
10000,Random,8,StdSort,4,82872
10000,Random,8,StdSort,5,153402
10000,Random,8,StdSort,6,259030
10000,Random,8,StdSort,7,406373
10000,Random,8,StdSort,8,603395
10000,Random,8,StdSort,9,854019
10000,Random,8,StdSort,10,1168563
10000,PreSorted,1,ParallelSort,0,1557
10000,PreSorted,1,ParallelSort,1,2217
10000,PreSorted,1,ParallelSort,2,6793
10000,PreSorted,1,ParallelSort,3,21027
10000,PreSorted,1,ParallelSort,4,44252
10000,PreSorted,1,ParallelSort,5,82323
10000,PreSorted,1,ParallelSort,6,139192
10000,PreSorted,1,ParallelSort,7,218678
10000,PreSorted,1,ParallelSort,8,324273
10000,PreSorted,1,ParallelSort,9,459943
10000,PreSorted,1,ParallelSort,10,629492
10000,PreSorted,1,ParallelBufferedSort,0,1556
10000,PreSorted,1,ParallelBufferedSort,1,2223
10000,PreSorted,1,ParallelBufferedSort,2,6793
10000,PreSorted,1,ParallelBufferedSort,3,21027
10000,PreSorted,1,ParallelBufferedSort,4,44251
10000,PreSorted,1,ParallelBufferedSort,5,82339
10000,PreSorted,1,ParallelBufferedSort,6,139184
10000,PreSorted,1,ParallelBufferedSort,7,218730
10000,PreSorted,1,ParallelBufferedSort,8,324305
10000,PreSorted,1,ParallelBufferedSort,9,460165
10000,PreSorted,1,ParallelBufferedSort,10,629535
10000,PreSorted,1,ParallelRadixSort,0,3026
10000,PreSorted,1,ParallelRadixSort,1,4738
10000,PreSorted,1,ParallelRadixSort,2,11632
10000,PreSorted,1,ParallelRadixSort,3,33052
10000,PreSorted,1,ParallelRadixSort,4,68863
10000,PreSorted,1,ParallelRadixSort,5,127862
10000,PreSorted,1,ParallelRadixSort,6,215935
10000,PreSorted,1,ParallelRadixSort,7,338763
10000,PreSorted,1,ParallelRadixSort,8,502286
10000,PreSorted,1,ParallelRadixSort,9,712218
10000,PreSorted,1,ParallelRadixSort,10,974356
10000,PreSorted,1,StdSort,0,1550
10000,PreSorted,1,StdSort,1,2209
10000,PreSorted,1,StdSort,2,6790
10000,PreSorted,1,StdSort,3,21022
10000,PreSorted,1,StdSort,4,44245
10000,PreSorted,1,StdSort,5,82318
10000,PreSorted,1,StdSort,6,139179
10000,PreSorted,1,StdSort,7,218736
10000,PreSorted,1,StdSort,8,324313
10000,PreSorted,1,StdSort,9,460035
10000,PreSorted,1,StdSort,10,630285
10000,PreSorted,2,ParallelSort,0,852
10000,PreSorted,2,ParallelSort,1,1189
10000,PreSorted,2,ParallelSort,2,3226
10000,PreSorted,2,ParallelSort,3,9815
10000,PreSorted,2,ParallelSort,4,20367
10000,PreSorted,2,ParallelSort,5,37715
10000,PreSorted,2,ParallelSort,6,63574
10000,PreSorted,2,ParallelSort,7,99688
10000,PreSorted,2,ParallelSort,8,147775
10000,PreSorted,2,ParallelSort,9,209455
10000,PreSorted,2,ParallelSort,10,286527
10000,PreSorted,2,ParallelBufferedSort,0,847
10000,PreSorted,2,ParallelBufferedSort,1,972
10000,PreSorted,2,ParallelBufferedSort,2,2472
10000,PreSorted,2,ParallelBufferedSort,3,7102
10000,PreSorted,2,ParallelBufferedSort,4,14520
10000,PreSorted,2,ParallelBufferedSort,5,26729
10000,PreSorted,2,ParallelBufferedSort,6,45037
10000,PreSorted,2,ParallelBufferedSort,7,70515
10000,PreSorted,2,ParallelBufferedSort,8,104375
10000,PreSorted,2,ParallelBufferedSort,9,147871
10000,PreSorted,2,ParallelBufferedSort,10,202269
10000,PreSorted,2,ParallelRadixSort,0,3152
10000,PreSorted,2,ParallelRadixSort,1,4679
10000,PreSorted,2,ParallelRadixSort,2,11477
10000,PreSorted,2,ParallelRadixSort,3,32281
10000,PreSorted,2,ParallelRadixSort,4,67058
10000,PreSorted,2,ParallelRadixSort,5,124363
10000,PreSorted,2,ParallelRadixSort,6,209867
10000,PreSorted,2,ParallelRadixSort,7,329158
10000,PreSorted,2,ParallelRadixSort,8,487960
10000,PreSorted,2,ParallelRadixSort,9,691849
10000,PreSorted,2,ParallelRadixSort,10,946208
10000,PreSorted,2,StdSort,0,1550
10000,PreSorted,2,StdSort,1,2209
10000,PreSorted,2,StdSort,2,6791
10000,PreSorted,2,StdSort,3,21022
10000,PreSorted,2,StdSort,4,44245
10000,PreSorted,2,StdSort,5,82319
10000,PreSorted,2,StdSort,6,139608
10000,PreSorted,2,StdSort,7,218694
10000,PreSorted,2,StdSort,8,324307
10000,PreSorted,2,StdSort,9,460031
10000,PreSorted,2,StdSort,10,629601
10000,PreSorted,3,ParallelSort,0,904
10000,PreSorted,3,ParallelSort,1,1172
10000,PreSorted,3,ParallelSort,2,2519
10000,PreSorted,3,ParallelSort,3,7410
10000,PreSorted,3,ParallelSort,4,15364
10000,PreSorted,3,ParallelSort,5,28341
10000,PreSorted,3,ParallelSort,6,47712
10000,PreSorted,3,ParallelSort,7,74761
10000,PreSorted,3,ParallelSort,8,110786
10000,PreSorted,3,ParallelSort,9,157119
10000,PreSorted,3,ParallelSort,10,214773
10000,PreSorted,3,ParallelBufferedSort,0,808
10000,PreSorted,3,ParallelBufferedSort,1,979
10000,PreSorted,3,ParallelBufferedSort,2,1687
10000,PreSorted,3,ParallelBufferedSort,3,4633
10000,PreSorted,3,ParallelBufferedSort,4,9430
10000,PreSorted,3,ParallelBufferedSort,5,17253
10000,PreSorted,3,ParallelBufferedSort,6,29000
10000,PreSorted,3,ParallelBufferedSort,7,45414
10000,PreSorted,3,ParallelBufferedSort,8,67227
10000,PreSorted,3,ParallelBufferedSort,9,95242
10000,PreSorted,3,ParallelBufferedSort,10,130254
10000,PreSorted,3,ParallelRadixSort,0,3095
10000,PreSorted,3,ParallelRadixSort,1,4689
10000,PreSorted,3,ParallelRadixSort,2,11428
10000,PreSorted,3,ParallelRadixSort,3,32009
10000,PreSorted,3,ParallelRadixSort,4,66433
10000,PreSorted,3,ParallelRadixSort,5,123196
10000,PreSorted,3,ParallelRadixSort,6,207814
10000,PreSorted,3,ParallelRadixSort,7,325949
10000,PreSorted,3,ParallelRadixSort,8,483205
10000,PreSorted,3,ParallelRadixSort,9,685025
10000,PreSorted,3,ParallelRadixSort,10,937060
10000,PreSorted,3,StdSort,0,1550
10000,PreSorted,3,StdSort,1,2209
10000,PreSorted,3,StdSort,2,6791
10000,PreSorted,3,StdSort,3,21022
10000,PreSorted,3,StdSort,4,44245
10000,PreSorted,3,StdSort,5,82319
10000,PreSorted,3,StdSort,6,139222
10000,PreSorted,3,StdSort,7,219615
10000,PreSorted,3,StdSort,8,325227
10000,PreSorted,3,StdSort,9,460916
10000,PreSorted,3,StdSort,10,630485
10000,PreSorted,4,ParallelSort,0,812
10000,PreSorted,4,ParallelSort,1,999
10000,PreSorted,4,ParallelSort,2,2568
10000,PreSorted,4,ParallelSort,3,7405
10000,PreSorted,4,ParallelSort,4,15352
10000,PreSorted,4,ParallelSort,5,28337
10000,PreSorted,4,ParallelSort,6,47661
10000,PreSorted,4,ParallelSort,7,74751
10000,PreSorted,4,ParallelSort,8,110713
10000,PreSorted,4,ParallelSort,9,156975
10000,PreSorted,4,ParallelSort,10,215457
10000,PreSorted,4,ParallelBufferedSort,0,707
10000,PreSorted,4,ParallelBufferedSort,1,811
10000,PreSorted,4,ParallelBufferedSort,2,1701
10000,PreSorted,4,ParallelBufferedSort,3,4664
10000,PreSorted,4,ParallelBufferedSort,4,9478
10000,PreSorted,4,ParallelBufferedSort,5,17338
10000,PreSorted,4,ParallelBufferedSort,6,29116
10000,PreSorted,4,ParallelBufferedSort,7,45576
10000,PreSorted,4,ParallelBufferedSort,8,67326
10000,PreSorted,4,ParallelBufferedSort,9,95315
10000,PreSorted,4,ParallelBufferedSort,10,133053
10000,PreSorted,4,ParallelRadixSort,0,3163
10000,PreSorted,4,ParallelRadixSort,1,4686
10000,PreSorted,4,ParallelRadixSort,2,11430
10000,PreSorted,4,ParallelRadixSort,3,31887
10000,PreSorted,4,ParallelRadixSort,4,66131
10000,PreSorted,4,ParallelRadixSort,5,122617
10000,PreSorted,4,ParallelRadixSort,6,206861
10000,PreSorted,4,ParallelRadixSort,7,324380
10000,PreSorted,4,ParallelRadixSort,8,480819
10000,PreSorted,4,ParallelRadixSort,9,681708
10000,PreSorted,4,ParallelRadixSort,10,932472
10000,PreSorted,4,StdSort,0,1550
10000,PreSorted,4,StdSort,1,2209
10000,PreSorted,4,StdSort,2,6790
10000,PreSorted,4,StdSort,3,21022
10000,PreSorted,4,StdSort,4,44244
10000,PreSorted,4,StdSort,5,82460
10000,PreSorted,4,StdSort,6,139183
10000,PreSorted,4,StdSort,7,219156
10000,PreSorted,4,StdSort,8,324548
10000,PreSorted,4,StdSort,9,460884
10000,PreSorted,4,StdSort,10,630280
10000,PreSorted,5,ParallelSort,0,874
10000,PreSorted,5,ParallelSort,1,1018
10000,PreSorted,5,ParallelSort,2,2494
10000,PreSorted,5,ParallelSort,3,7403
10000,PreSorted,5,ParallelSort,4,15349
10000,PreSorted,5,ParallelSort,5,28327
10000,PreSorted,5,ParallelSort,6,47680
10000,PreSorted,5,ParallelSort,7,74774
10000,PreSorted,5,ParallelSort,8,110774
10000,PreSorted,5,ParallelSort,9,156952
10000,PreSorted,5,ParallelSort,10,214742
10000,PreSorted,5,ParallelBufferedSort,0,739
10000,PreSorted,5,ParallelBufferedSort,1,905
10000,PreSorted,5,ParallelBufferedSort,2,1815
10000,PreSorted,5,ParallelBufferedSort,3,4734
10000,PreSorted,5,ParallelBufferedSort,4,9545
10000,PreSorted,5,ParallelBufferedSort,5,17372
10000,PreSorted,5,ParallelBufferedSort,6,29105
10000,PreSorted,5,ParallelBufferedSort,7,45540
10000,PreSorted,5,ParallelBufferedSort,8,67315
10000,PreSorted,5,ParallelBufferedSort,9,95409
10000,PreSorted,5,ParallelBufferedSort,10,130371
10000,PreSorted,5,ParallelRadixSort,0,3119
10000,PreSorted,5,ParallelRadixSort,1,4710
10000,PreSorted,5,ParallelRadixSort,2,11405
10000,PreSorted,5,ParallelRadixSort,3,31802
10000,PreSorted,5,ParallelRadixSort,4,65956
10000,PreSorted,5,ParallelRadixSort,5,122261
10000,PreSorted,5,ParallelRadixSort,6,206238
10000,PreSorted,5,ParallelRadixSort,7,323434
10000,PreSorted,5,ParallelRadixSort,8,479397
10000,PreSorted,5,ParallelRadixSort,9,679728
10000,PreSorted,5,ParallelRadixSort,10,929702
10000,PreSorted,5,StdSort,0,1550
10000,PreSorted,5,StdSort,1,2209
10000,PreSorted,5,StdSort,2,6790
10000,PreSorted,5,StdSort,3,21022
10000,PreSorted,5,StdSort,4,44245
10000,PreSorted,5,StdSort,5,82320
10000,PreSorted,5,StdSort,6,139180
10000,PreSorted,5,StdSort,7,219557
10000,PreSorted,5,StdSort,8,324318
10000,PreSorted,5,StdSort,9,460053
10000,PreSorted,5,StdSort,10,629467
10000,PreSorted,6,ParallelSort,0,909
10000,PreSorted,6,ParallelSort,1,1318
10000,PreSorted,6,ParallelSort,2,2546
10000,PreSorted,6,ParallelSort,3,7449
10000,PreSorted,6,ParallelSort,4,15399
10000,PreSorted,6,ParallelSort,5,28342
10000,PreSorted,6,ParallelSort,6,47692
10000,PreSorted,6,ParallelSort,7,74742
10000,PreSorted,6,ParallelSort,8,110734
10000,PreSorted,6,ParallelSort,9,156921
10000,PreSorted,6,ParallelSort,10,214588
10000,PreSorted,6,ParallelBufferedSort,0,1038
10000,PreSorted,6,ParallelBufferedSort,1,1333
10000,PreSorted,6,ParallelBufferedSort,2,1819
10000,PreSorted,6,ParallelBufferedSort,3,4825
10000,PreSorted,6,ParallelBufferedSort,4,9521
10000,PreSorted,6,ParallelBufferedSort,5,17438
10000,PreSorted,6,ParallelBufferedSort,6,29221
10000,PreSorted,6,ParallelBufferedSort,7,45625
10000,PreSorted,6,ParallelBufferedSort,8,67536
10000,PreSorted,6,ParallelBufferedSort,9,95493
10000,PreSorted,6,ParallelBufferedSort,10,130498
10000,PreSorted,6,ParallelRadixSort,0,3122
10000,PreSorted,6,ParallelRadixSort,1,4708
10000,PreSorted,6,ParallelRadixSort,2,11386
10000,PreSorted,6,ParallelRadixSort,3,31761
10000,PreSorted,6,ParallelRadixSort,4,65831
10000,PreSorted,6,ParallelRadixSort,5,121985
10000,PreSorted,6,ParallelRadixSort,6,205746
10000,PreSorted,6,ParallelRadixSort,7,322662
10000,PreSorted,6,ParallelRadixSort,8,478202
10000,PreSorted,6,ParallelRadixSort,9,677976
10000,PreSorted,6,ParallelRadixSort,10,927444
10000,PreSorted,6,StdSort,0,1550
10000,PreSorted,6,StdSort,1,2210
10000,PreSorted,6,StdSort,2,6790
10000,PreSorted,6,StdSort,3,21022
10000,PreSorted,6,StdSort,4,44263
10000,PreSorted,6,StdSort,5,82336
10000,PreSorted,6,StdSort,6,139202
10000,PreSorted,6,StdSort,7,218787
10000,PreSorted,6,StdSort,8,324285
10000,PreSorted,6,StdSort,9,459964
10000,PreSorted,6,StdSort,10,629562
10000,PreSorted,7,ParallelSort,0,1430
10000,PreSorted,7,ParallelSort,1,1642
10000,PreSorted,7,ParallelSort,2,2583
10000,PreSorted,7,ParallelSort,3,7410
10000,PreSorted,7,ParallelSort,4,11281
10000,PreSorted,7,ParallelSort,5,20744
10000,PreSorted,7,ParallelSort,6,43765
10000,PreSorted,7,ParallelSort,7,74653
10000,PreSorted,7,ParallelSort,8,110685
10000,PreSorted,7,ParallelSort,9,156583
10000,PreSorted,7,ParallelSort,10,214243
10000,PreSorted,7,ParallelBufferedSort,0,1349
10000,PreSorted,7,ParallelBufferedSort,1,1674
10000,PreSorted,7,ParallelBufferedSort,2,2301
10000,PreSorted,7,ParallelBufferedSort,3,4916
10000,PreSorted,7,ParallelBufferedSort,4,9553
10000,PreSorted,7,ParallelBufferedSort,5,17357
10000,PreSorted,7,ParallelBufferedSort,6,18495
10000,PreSorted,7,ParallelBufferedSort,7,27588
10000,PreSorted,7,ParallelBufferedSort,8,39811
10000,PreSorted,7,ParallelBufferedSort,9,55735
10000,PreSorted,7,ParallelBufferedSort,10,75087
10000,PreSorted,7,ParallelRadixSort,0,3163
10000,PreSorted,7,ParallelRadixSort,1,4716
10000,PreSorted,7,ParallelRadixSort,2,11378
10000,PreSorted,7,ParallelRadixSort,3,31724
10000,PreSorted,7,ParallelRadixSort,4,65741
10000,PreSorted,7,ParallelRadixSort,5,121818
10000,PreSorted,7,ParallelRadixSort,6,205496
10000,PreSorted,7,ParallelRadixSort,7,322191
10000,PreSorted,7,ParallelRadixSort,8,477598
10000,PreSorted,7,ParallelRadixSort,9,677047
10000,PreSorted,7,ParallelRadixSort,10,926102
10000,PreSorted,7,StdSort,0,1550
10000,PreSorted,7,StdSort,1,2209
10000,PreSorted,7,StdSort,2,6791
10000,PreSorted,7,StdSort,3,21026
10000,PreSorted,7,StdSort,4,44243
10000,PreSorted,7,StdSort,5,82383
10000,PreSorted,7,StdSort,6,140147
10000,PreSorted,7,StdSort,7,218803
10000,PreSorted,7,StdSort,8,325485
10000,PreSorted,7,StdSort,9,460984
10000,PreSorted,7,StdSort,10,629696
10000,PreSorted,8,ParallelSort,0,1455
10000,PreSorted,8,ParallelSort,1,1820
10000,PreSorted,8,ParallelSort,2,2569
10000,PreSorted,8,ParallelSort,3,5658
10000,PreSorted,8,ParallelSort,4,11322
10000,PreSorted,8,ParallelSort,5,20781
10000,PreSorted,8,ParallelSort,6,34889
10000,PreSorted,8,ParallelSort,7,54623
10000,PreSorted,8,ParallelSort,8,80849
10000,PreSorted,8,ParallelSort,9,114540
10000,PreSorted,8,ParallelSort,10,156734
10000,PreSorted,8,ParallelBufferedSort,0,1358
10000,PreSorted,8,ParallelBufferedSort,1,1989
10000,PreSorted,8,ParallelBufferedSort,2,2885
10000,PreSorted,8,ParallelBufferedSort,3,4957
10000,PreSorted,8,ParallelBufferedSort,4,9034
10000,PreSorted,8,ParallelBufferedSort,5,15683
10000,PreSorted,8,ParallelBufferedSort,6,26083
10000,PreSorted,8,ParallelBufferedSort,7,40679
10000,PreSorted,8,ParallelBufferedSort,8,34986
10000,PreSorted,8,ParallelBufferedSort,9,85030
10000,PreSorted,8,ParallelBufferedSort,10,67017
10000,PreSorted,8,ParallelRadixSort,0,3160
10000,PreSorted,8,ParallelRadixSort,1,4710
10000,PreSorted,8,ParallelRadixSort,2,11389
10000,PreSorted,8,ParallelRadixSort,3,31708
10000,PreSorted,8,ParallelRadixSort,4,65706
10000,PreSorted,8,ParallelRadixSort,5,121784
10000,PreSorted,8,ParallelRadixSort,6,205367
10000,PreSorted,8,ParallelRadixSort,7,321987
10000,PreSorted,8,ParallelRadixSort,8,477207
10000,PreSorted,8,ParallelRadixSort,9,676692
10000,PreSorted,8,ParallelRadixSort,10,926505
10000,PreSorted,8,StdSort,0,1550
10000,PreSorted,8,StdSort,1,2209
10000,PreSorted,8,StdSort,2,6791
10000,PreSorted,8,StdSort,3,21070
10000,PreSorted,8,StdSort,4,44252
10000,PreSorted,8,StdSort,5,83194
10000,PreSorted,8,StdSort,6,139198
10000,PreSorted,8,StdSort,7,218691
10000,PreSorted,8,StdSort,8,324343
10000,PreSorted,8,StdSort,9,460987
10000,PreSorted,8,StdSort,10,630464
10000,NearlySorted,1,ParallelSort,0,1555
10000,NearlySorted,1,ParallelSort,1,2221
10000,NearlySorted,1,ParallelSort,2,6643
10000,NearlySorted,1,ParallelSort,3,21026
10000,NearlySorted,1,ParallelSort,4,44264
10000,NearlySorted,1,ParallelSort,5,82362
10000,NearlySorted,1,ParallelSort,6,139325
10000,NearlySorted,1,ParallelSort,7,218703
10000,NearlySorted,1,ParallelSort,8,324324
10000,NearlySorted,1,ParallelSort,9,459948
10000,NearlySorted,1,ParallelSort,10,629579
10000,NearlySorted,1,ParallelBufferedSort,0,1555
10000,NearlySorted,1,ParallelBufferedSort,1,2219
10000,NearlySorted,1,ParallelBufferedSort,2,6647
10000,NearlySorted,1,ParallelBufferedSort,3,21027
10000,NearlySorted,1,ParallelBufferedSort,4,44252
10000,NearlySorted,1,ParallelBufferedSort,5,82322
10000,NearlySorted,1,ParallelBufferedSort,6,139220
10000,NearlySorted,1,ParallelBufferedSort,7,218675
10000,NearlySorted,1,ParallelBufferedSort,8,324293
10000,NearlySorted,1,ParallelBufferedSort,9,459932
10000,NearlySorted,1,ParallelBufferedSort,10,629529
10000,NearlySorted,1,ParallelRadixSort,0,3022
10000,NearlySorted,1,ParallelRadixSort,1,4749
10000,NearlySorted,1,ParallelRadixSort,2,11634
10000,NearlySorted,1,ParallelRadixSort,3,33046
10000,NearlySorted,1,ParallelRadixSort,4,68836
10000,NearlySorted,1,ParallelRadixSort,5,127852
10000,NearlySorted,1,ParallelRadixSort,6,215882
10000,NearlySorted,1,ParallelRadixSort,7,338745
10000,NearlySorted,1,ParallelRadixSort,8,502239
10000,NearlySorted,1,ParallelRadixSort,9,712216
10000,NearlySorted,1,ParallelRadixSort,10,974275
10000,NearlySorted,1,StdSort,0,1549
10000,NearlySorted,1,StdSort,1,2213
10000,NearlySorted,1,StdSort,2,6640
10000,NearlySorted,1,StdSort,3,21027
10000,NearlySorted,1,StdSort,4,44246
10000,NearlySorted,1,StdSort,5,82323
10000,NearlySorted,1,StdSort,6,139185
10000,NearlySorted,1,StdSort,7,218673
10000,NearlySorted,1,StdSort,8,324322
10000,NearlySorted,1,StdSort,9,460997
10000,NearlySorted,1,StdSort,10,630263
10000,NearlySorted,2,ParallelSort,0,880
10000,NearlySorted,2,ParallelSort,1,1168
10000,NearlySorted,2,ParallelSort,2,3161
10000,NearlySorted,2,ParallelSort,3,9852
10000,NearlySorted,2,ParallelSort,4,20366
10000,NearlySorted,2,ParallelSort,5,37733
10000,NearlySorted,2,ParallelSort,6,63596
10000,NearlySorted,2,ParallelSort,7,99719
10000,NearlySorted,2,ParallelSort,8,147794
10000,NearlySorted,2,ParallelSort,9,209503
10000,NearlySorted,2,ParallelSort,10,286482
10000,NearlySorted,2,ParallelBufferedSort,0,766
10000,NearlySorted,2,ParallelBufferedSort,1,968
10000,NearlySorted,2,ParallelBufferedSort,2,2470
10000,NearlySorted,2,ParallelBufferedSort,3,7073
10000,NearlySorted,2,ParallelBufferedSort,4,14492
10000,NearlySorted,2,ParallelBufferedSort,5,26745
10000,NearlySorted,2,ParallelBufferedSort,6,45049
10000,NearlySorted,2,ParallelBufferedSort,7,70523
10000,NearlySorted,2,ParallelBufferedSort,8,104380
10000,NearlySorted,2,ParallelBufferedSort,9,147884
10000,NearlySorted,2,ParallelBufferedSort,10,202239
10000,NearlySorted,2,ParallelRadixSort,0,3158
10000,NearlySorted,2,ParallelRadixSort,1,4709
10000,NearlySorted,2,ParallelRadixSort,2,11474
10000,NearlySorted,2,ParallelRadixSort,3,32255
10000,NearlySorted,2,ParallelRadixSort,4,67034
10000,NearlySorted,2,ParallelRadixSort,5,124341
10000,NearlySorted,2,ParallelRadixSort,6,209834
10000,NearlySorted,2,ParallelRadixSort,7,329159
10000,NearlySorted,2,ParallelRadixSort,8,487912
10000,NearlySorted,2,ParallelRadixSort,9,692748
10000,NearlySorted,2,ParallelRadixSort,10,946674
10000,NearlySorted,2,StdSort,0,1550
10000,NearlySorted,2,StdSort,1,2212
10000,NearlySorted,2,StdSort,2,6639
10000,NearlySorted,2,StdSort,3,21031
10000,NearlySorted,2,StdSort,4,44245
10000,NearlySorted,2,StdSort,5,82319
10000,NearlySorted,2,StdSort,6,139179
10000,NearlySorted,2,StdSort,7,218693
10000,NearlySorted,2,StdSort,8,325347
10000,NearlySorted,2,StdSort,9,459997
10000,NearlySorted,2,StdSort,10,629647
10000,NearlySorted,3,ParallelSort,0,990
10000,NearlySorted,3,ParallelSort,1,1182
10000,NearlySorted,3,ParallelSort,2,2469
10000,NearlySorted,3,ParallelSort,3,7448
10000,NearlySorted,3,ParallelSort,4,15375
10000,NearlySorted,3,ParallelSort,5,28486
10000,NearlySorted,3,ParallelSort,6,47890
10000,NearlySorted,3,ParallelSort,7,74930
10000,NearlySorted,3,ParallelSort,8,111006
10000,NearlySorted,3,ParallelSort,9,157928
10000,NearlySorted,3,ParallelSort,10,214991
10000,NearlySorted,3,ParallelBufferedSort,0,813
10000,NearlySorted,3,ParallelBufferedSort,1,978
10000,NearlySorted,3,ParallelBufferedSort,2,1665
10000,NearlySorted,3,ParallelBufferedSort,3,4642
10000,NearlySorted,3,ParallelBufferedSort,4,9472
10000,NearlySorted,3,ParallelBufferedSort,5,17341
10000,NearlySorted,3,ParallelBufferedSort,6,29049
10000,NearlySorted,3,ParallelBufferedSort,7,47144
10000,NearlySorted,3,ParallelBufferedSort,8,70377
10000,NearlySorted,3,ParallelBufferedSort,9,96215
10000,NearlySorted,3,ParallelBufferedSort,10,131056
10000,NearlySorted,3,ParallelRadixSort,0,3096
10000,NearlySorted,3,ParallelRadixSort,1,4686
10000,NearlySorted,3,ParallelRadixSort,2,11440
10000,NearlySorted,3,ParallelRadixSort,3,32015
10000,NearlySorted,3,ParallelRadixSort,4,66424
10000,NearlySorted,3,ParallelRadixSort,5,123188
10000,NearlySorted,3,ParallelRadixSort,6,207866
10000,NearlySorted,3,ParallelRadixSort,7,326018
10000,NearlySorted,3,ParallelRadixSort,8,483172
10000,NearlySorted,3,ParallelRadixSort,9,685034
10000,NearlySorted,3,ParallelRadixSort,10,937098
10000,NearlySorted,3,StdSort,0,1550
10000,NearlySorted,3,StdSort,1,2217
10000,NearlySorted,3,StdSort,2,6639
10000,NearlySorted,3,StdSort,3,21026
10000,NearlySorted,3,StdSort,4,44244
10000,NearlySorted,3,StdSort,5,82318
10000,NearlySorted,3,StdSort,6,139184
10000,NearlySorted,3,StdSort,7,218676
10000,NearlySorted,3,StdSort,8,324321
10000,NearlySorted,3,StdSort,9,459957
10000,NearlySorted,3,StdSort,10,630492
10000,NearlySorted,4,ParallelSort,0,790
10000,NearlySorted,4,ParallelSort,1,1002
10000,NearlySorted,4,ParallelSort,2,2512
10000,NearlySorted,4,ParallelSort,3,7439
10000,NearlySorted,4,ParallelSort,4,15349
10000,NearlySorted,4,ParallelSort,5,28341
10000,NearlySorted,4,ParallelSort,6,47698
10000,NearlySorted,4,ParallelSort,7,74812
10000,NearlySorted,4,ParallelSort,8,110833
10000,NearlySorted,4,ParallelSort,9,157333
10000,NearlySorted,4,ParallelSort,10,216728
10000,NearlySorted,4,ParallelBufferedSort,0,733
10000,NearlySorted,4,ParallelBufferedSort,1,860
10000,NearlySorted,4,ParallelBufferedSort,2,1683
10000,NearlySorted,4,ParallelBufferedSort,3,4651
10000,NearlySorted,4,ParallelBufferedSort,4,9471
10000,NearlySorted,4,ParallelBufferedSort,5,17346
10000,NearlySorted,4,ParallelBufferedSort,6,29102
10000,NearlySorted,4,ParallelBufferedSort,7,45554
10000,NearlySorted,4,ParallelBufferedSort,8,67330
10000,NearlySorted,4,ParallelBufferedSort,9,95383
10000,NearlySorted,4,ParallelBufferedSort,10,133613
10000,NearlySorted,4,ParallelRadixSort,0,3208
10000,NearlySorted,4,ParallelRadixSort,1,4703
10000,NearlySorted,4,ParallelRadixSort,2,11410
10000,NearlySorted,4,ParallelRadixSort,3,31880
10000,NearlySorted,4,ParallelRadixSort,4,66132
10000,NearlySorted,4,ParallelRadixSort,5,122576
10000,NearlySorted,4,ParallelRadixSort,6,206869
10000,NearlySorted,4,ParallelRadixSort,7,324481
10000,NearlySorted,4,ParallelRadixSort,8,480741
10000,NearlySorted,4,ParallelRadixSort,9,681577
10000,NearlySorted,4,ParallelRadixSort,10,932672
10000,NearlySorted,4,StdSort,0,1550
10000,NearlySorted,4,StdSort,1,2213
10000,NearlySorted,4,StdSort,2,6639
10000,NearlySorted,4,StdSort,3,21026
10000,NearlySorted,4,StdSort,4,44245
10000,NearlySorted,4,StdSort,5,82446
10000,NearlySorted,4,StdSort,6,139211
10000,NearlySorted,4,StdSort,7,218729
10000,NearlySorted,4,StdSort,8,324403
10000,NearlySorted,4,StdSort,9,461144
10000,NearlySorted,4,StdSort,10,630359
10000,NearlySorted,5,ParallelSort,0,903
10000,NearlySorted,5,ParallelSort,1,1093
10000,NearlySorted,5,ParallelSort,2,2514
10000,NearlySorted,5,ParallelSort,3,7435
10000,NearlySorted,5,ParallelSort,4,15347
10000,NearlySorted,5,ParallelSort,5,28359
10000,NearlySorted,5,ParallelSort,6,47743
10000,NearlySorted,5,ParallelSort,7,74815
10000,NearlySorted,5,ParallelSort,8,110776
10000,NearlySorted,5,ParallelSort,9,156964
10000,NearlySorted,5,ParallelSort,10,214681
10000,NearlySorted,5,ParallelBufferedSort,0,770
10000,NearlySorted,5,ParallelBufferedSort,1,886
10000,NearlySorted,5,ParallelBufferedSort,2,1751
10000,NearlySorted,5,ParallelBufferedSort,3,4729
10000,NearlySorted,5,ParallelBufferedSort,4,9497
10000,NearlySorted,5,ParallelBufferedSort,5,17331
10000,NearlySorted,5,ParallelBufferedSort,6,29151
10000,NearlySorted,5,ParallelBufferedSort,7,45614
10000,NearlySorted,5,ParallelBufferedSort,8,67433
10000,NearlySorted,5,ParallelBufferedSort,9,95400
10000,NearlySorted,5,ParallelBufferedSort,10,130443
10000,NearlySorted,5,ParallelRadixSort,0,3109
10000,NearlySorted,5,ParallelRadixSort,1,4694
10000,NearlySorted,5,ParallelRadixSort,2,11393
10000,NearlySorted,5,ParallelRadixSort,3,31798
10000,NearlySorted,5,ParallelRadixSort,4,65932
10000,NearlySorted,5,ParallelRadixSort,5,122243
10000,NearlySorted,5,ParallelRadixSort,6,206201
10000,NearlySorted,5,ParallelRadixSort,7,323393
10000,NearlySorted,5,ParallelRadixSort,8,479321
10000,NearlySorted,5,ParallelRadixSort,9,679570
10000,NearlySorted,5,ParallelRadixSort,10,929590
10000,NearlySorted,5,StdSort,0,1550
10000,NearlySorted,5,StdSort,1,2213
10000,NearlySorted,5,StdSort,2,6640
10000,NearlySorted,5,StdSort,3,21026
10000,NearlySorted,5,StdSort,4,44246
10000,NearlySorted,5,StdSort,5,82448
10000,NearlySorted,5,StdSort,6,139180
10000,NearlySorted,5,StdSort,7,218803
10000,NearlySorted,5,StdSort,8,324408
10000,NearlySorted,5,StdSort,9,460026
10000,NearlySorted,5,StdSort,10,629576
10000,NearlySorted,6,ParallelSort,0,1255
10000,NearlySorted,6,ParallelSort,1,1256
10000,NearlySorted,6,ParallelSort,2,2587
10000,NearlySorted,6,ParallelSort,3,7455
10000,NearlySorted,6,ParallelSort,4,15401
10000,NearlySorted,6,ParallelSort,5,28368
10000,NearlySorted,6,ParallelSort,6,47761
10000,NearlySorted,6,ParallelSort,7,74806
10000,NearlySorted,6,ParallelSort,8,110876
10000,NearlySorted,6,ParallelSort,9,157130
10000,NearlySorted,6,ParallelSort,10,214816
10000,NearlySorted,6,ParallelBufferedSort,0,1074
10000,NearlySorted,6,ParallelBufferedSort,1,1211
10000,NearlySorted,6,ParallelBufferedSort,2,1763
10000,NearlySorted,6,ParallelBufferedSort,3,4799
10000,NearlySorted,6,ParallelBufferedSort,4,9536
10000,NearlySorted,6,ParallelBufferedSort,5,17420
10000,NearlySorted,6,ParallelBufferedSort,6,29146
10000,NearlySorted,6,ParallelBufferedSort,7,45680
10000,NearlySorted,6,ParallelBufferedSort,8,67469
10000,NearlySorted,6,ParallelBufferedSort,9,95426
10000,NearlySorted,6,ParallelBufferedSort,10,130520
10000,NearlySorted,6,ParallelRadixSort,0,3130
10000,NearlySorted,6,ParallelRadixSort,1,4816
10000,NearlySorted,6,ParallelRadixSort,2,11498
10000,NearlySorted,6,ParallelRadixSort,3,31749
10000,NearlySorted,6,ParallelRadixSort,4,65812
10000,NearlySorted,6,ParallelRadixSort,5,121957
10000,NearlySorted,6,ParallelRadixSort,6,205749
10000,NearlySorted,6,ParallelRadixSort,7,322611
10000,NearlySorted,6,ParallelRadixSort,8,478156
10000,NearlySorted,6,ParallelRadixSort,9,678169
10000,NearlySorted,6,ParallelRadixSort,10,927244
10000,NearlySorted,6,StdSort,0,1554
10000,NearlySorted,6,StdSort,1,2213
10000,NearlySorted,6,StdSort,2,6638
10000,NearlySorted,6,StdSort,3,21027
10000,NearlySorted,6,StdSort,4,44245
10000,NearlySorted,6,StdSort,5,82447
10000,NearlySorted,6,StdSort,6,139177
10000,NearlySorted,6,StdSort,7,218717
10000,NearlySorted,6,StdSort,8,325143
10000,NearlySorted,6,StdSort,9,460299
10000,NearlySorted,6,StdSort,10,629811
10000,NearlySorted,7,ParallelSort,0,1214
10000,NearlySorted,7,ParallelSort,1,1416
10000,NearlySorted,7,ParallelSort,2,2544
10000,NearlySorted,7,ParallelSort,3,5502
10000,NearlySorted,7,ParallelSort,4,11314
10000,NearlySorted,7,ParallelSort,5,28340
10000,NearlySorted,7,ParallelSort,6,47705
10000,NearlySorted,7,ParallelSort,7,74737
10000,NearlySorted,7,ParallelSort,8,110667
10000,NearlySorted,7,ParallelSort,9,156789
10000,NearlySorted,7,ParallelSort,10,214497
10000,NearlySorted,7,ParallelBufferedSort,0,1066
10000,NearlySorted,7,ParallelBufferedSort,1,1499
10000,NearlySorted,7,ParallelBufferedSort,2,2172
10000,NearlySorted,7,ParallelBufferedSort,3,4891
10000,NearlySorted,7,ParallelBufferedSort,4,6917
10000,NearlySorted,7,ParallelBufferedSort,5,17378
10000,NearlySorted,7,ParallelBufferedSort,6,17584
10000,NearlySorted,7,ParallelBufferedSort,7,27210
10000,NearlySorted,7,ParallelBufferedSort,8,59179
10000,NearlySorted,7,ParallelBufferedSort,9,74208
10000,NearlySorted,7,ParallelBufferedSort,10,74844
10000,NearlySorted,7,ParallelRadixSort,0,3132
10000,NearlySorted,7,ParallelRadixSort,1,4712
10000,NearlySorted,7,ParallelRadixSort,2,11376
10000,NearlySorted,7,ParallelRadixSort,3,31729
10000,NearlySorted,7,ParallelRadixSort,4,65729
10000,NearlySorted,7,ParallelRadixSort,5,121852
10000,NearlySorted,7,ParallelRadixSort,6,205500
10000,NearlySorted,7,ParallelRadixSort,7,322233
10000,NearlySorted,7,ParallelRadixSort,8,477667
10000,NearlySorted,7,ParallelRadixSort,9,677149
10000,NearlySorted,7,ParallelRadixSort,10,926387
10000,NearlySorted,7,StdSort,0,1550
10000,NearlySorted,7,StdSort,1,2213
10000,NearlySorted,7,StdSort,2,6639
10000,NearlySorted,7,StdSort,3,21031
10000,NearlySorted,7,StdSort,4,44249
10000,NearlySorted,7,StdSort,5,83591
10000,NearlySorted,7,StdSort,6,139356
10000,NearlySorted,7,StdSort,7,218674
10000,NearlySorted,7,StdSort,8,324405
10000,NearlySorted,7,StdSort,9,460993
10000,NearlySorted,7,StdSort,10,630267
10000,NearlySorted,8,ParallelSort,0,1307
10000,NearlySorted,8,ParallelSort,1,1718
10000,NearlySorted,8,ParallelSort,2,2843
10000,NearlySorted,8,ParallelSort,3,7299
10000,NearlySorted,8,ParallelSort,4,11312
10000,NearlySorted,8,ParallelSort,5,20825
10000,NearlySorted,8,ParallelSort,6,34947
10000,NearlySorted,8,ParallelSort,7,54697
10000,NearlySorted,8,ParallelSort,8,80970
10000,NearlySorted,8,ParallelSort,9,114772
10000,NearlySorted,8,ParallelSort,10,156865
10000,NearlySorted,8,ParallelBufferedSort,0,1485
10000,NearlySorted,8,ParallelBufferedSort,1,1844
10000,NearlySorted,8,ParallelBufferedSort,2,2736
10000,NearlySorted,8,ParallelBufferedSort,3,5083
10000,NearlySorted,8,ParallelBufferedSort,4,9011
10000,NearlySorted,8,ParallelBufferedSort,5,15569
10000,NearlySorted,8,ParallelBufferedSort,6,15989
10000,NearlySorted,8,ParallelBufferedSort,7,40667
10000,NearlySorted,8,ParallelBufferedSort,8,60138
10000,NearlySorted,8,ParallelBufferedSort,9,46116
10000,NearlySorted,8,ParallelBufferedSort,10,103330
10000,NearlySorted,8,ParallelRadixSort,0,3157
10000,NearlySorted,8,ParallelRadixSort,1,4706
10000,NearlySorted,8,ParallelRadixSort,2,11375
10000,NearlySorted,8,ParallelRadixSort,3,31728
10000,NearlySorted,8,ParallelRadixSort,4,65714
10000,NearlySorted,8,ParallelRadixSort,5,121828
10000,NearlySorted,8,ParallelRadixSort,6,205486
10000,NearlySorted,8,ParallelRadixSort,7,322195
10000,NearlySorted,8,ParallelRadixSort,8,477549
10000,NearlySorted,8,ParallelRadixSort,9,677134
10000,NearlySorted,8,ParallelRadixSort,10,926089
10000,NearlySorted,8,StdSort,0,1550
10000,NearlySorted,8,StdSort,1,2213
10000,NearlySorted,8,StdSort,2,6641
10000,NearlySorted,8,StdSort,3,21026
10000,NearlySorted,8,StdSort,4,44249
10000,NearlySorted,8,StdSort,5,83171
10000,NearlySorted,8,StdSort,6,139186
10000,NearlySorted,8,StdSort,7,219492
10000,NearlySorted,8,StdSort,8,324400
10000,NearlySorted,8,StdSort,9,460986
10000,NearlySorted,8,StdSort,10,629553
10000,NormalDistributionWithDups,1,ParallelSort,0,6426
10000,NormalDistributionWithDups,1,ParallelSort,1,8542
10000,NormalDistributionWithDups,1,ParallelSort,2,23467
10000,NormalDistributionWithDups,1,ParallelSort,3,68965
10000,NormalDistributionWithDups,1,ParallelSort,4,144115
10000,NormalDistributionWithDups,1,ParallelSort,5,266064
10000,NormalDistributionWithDups,1,ParallelSort,6,448931
10000,NormalDistributionWithDups,1,ParallelSort,7,704887
10000,NormalDistributionWithDups,1,ParallelSort,8,1044111
10000,NormalDistributionWithDups,1,ParallelSort,9,1480326
10000,NormalDistributionWithDups,1,ParallelSort,10,2025495
10000,NormalDistributionWithDups,1,ParallelBufferedSort,0,6204
10000,NormalDistributionWithDups,1,ParallelBufferedSort,1,8448
10000,NormalDistributionWithDups,1,ParallelBufferedSort,2,23467
10000,NormalDistributionWithDups,1,ParallelBufferedSort,3,69502
10000,NormalDistributionWithDups,1,ParallelBufferedSort,4,144116
10000,NormalDistributionWithDups,1,ParallelBufferedSort,5,266064
10000,NormalDistributionWithDups,1,ParallelBufferedSort,6,448976
10000,NormalDistributionWithDups,1,ParallelBufferedSort,7,704571
10000,NormalDistributionWithDups,1,ParallelBufferedSort,8,1044113
10000,NormalDistributionWithDups,1,ParallelBufferedSort,9,1480335
10000,NormalDistributionWithDups,1,ParallelBufferedSort,10,2025592
10000,NormalDistributionWithDups,1,ParallelRadixSort,0,5670
10000,NormalDistributionWithDups,1,ParallelRadixSort,1,8572
10000,NormalDistributionWithDups,1,ParallelRadixSort,2,21449
10000,NormalDistributionWithDups,1,ParallelRadixSort,3,60990
10000,NormalDistributionWithDups,1,ParallelRadixSort,4,127026
10000,NormalDistributionWithDups,1,ParallelRadixSort,5,235766
10000,NormalDistributionWithDups,1,ParallelRadixSort,6,398170
10000,NormalDistributionWithDups,1,ParallelRadixSort,7,624808
10000,NormalDistributionWithDups,1,ParallelRadixSort,8,926167
10000,NormalDistributionWithDups,1,ParallelRadixSort,9,1313432
10000,NormalDistributionWithDups,1,ParallelRadixSort,10,1796799
10000,NormalDistributionWithDups,1,StdSort,0,6309
10000,NormalDistributionWithDups,1,StdSort,1,8476
10000,NormalDistributionWithDups,1,StdSort,2,23425
10000,NormalDistributionWithDups,1,StdSort,3,68958
10000,NormalDistributionWithDups,1,StdSort,4,143630
10000,NormalDistributionWithDups,1,StdSort,5,266074
10000,NormalDistributionWithDups,1,StdSort,6,448916
10000,NormalDistributionWithDups,1,StdSort,7,704548
10000,NormalDistributionWithDups,1,StdSort,8,1044106
10000,NormalDistributionWithDups,1,StdSort,9,1480778
10000,NormalDistributionWithDups,1,StdSort,10,2025462
10000,NormalDistributionWithDups,2,ParallelSort,0,2068
10000,NormalDistributionWithDups,2,ParallelSort,1,2643
10000,NormalDistributionWithDups,2,ParallelSort,2,6491
10000,NormalDistributionWithDups,2,ParallelSort,3,18299
10000,NormalDistributionWithDups,2,ParallelSort,4,37978
10000,NormalDistributionWithDups,2,ParallelSort,5,70324
10000,NormalDistributionWithDups,2,ParallelSort,6,118638
10000,NormalDistributionWithDups,2,ParallelSort,7,186164
10000,NormalDistributionWithDups,2,ParallelSort,8,275982
10000,NormalDistributionWithDups,2,ParallelSort,9,391190
10000,NormalDistributionWithDups,2,ParallelSort,10,535036
10000,NormalDistributionWithDups,2,ParallelBufferedSort,0,2017
10000,NormalDistributionWithDups,2,ParallelBufferedSort,1,2530
10000,NormalDistributionWithDups,2,ParallelBufferedSort,2,6176
10000,NormalDistributionWithDups,2,ParallelBufferedSort,3,17522
10000,NormalDistributionWithDups,2,ParallelBufferedSort,4,36186
10000,NormalDistributionWithDups,2,ParallelBufferedSort,5,66802
10000,NormalDistributionWithDups,2,ParallelBufferedSort,6,112380
10000,NormalDistributionWithDups,2,ParallelBufferedSort,7,176191
10000,NormalDistributionWithDups,2,ParallelBufferedSort,8,261012
10000,NormalDistributionWithDups,2,ParallelBufferedSort,9,369910
10000,NormalDistributionWithDups,2,ParallelBufferedSort,10,506074
10000,NormalDistributionWithDups,2,ParallelRadixSort,0,3405
10000,NormalDistributionWithDups,2,ParallelRadixSort,1,5136
10000,NormalDistributionWithDups,2,ParallelRadixSort,2,12582
10000,NormalDistributionWithDups,2,ParallelRadixSort,3,35369
10000,NormalDistributionWithDups,2,ParallelRadixSort,4,73416
10000,NormalDistributionWithDups,2,ParallelRadixSort,5,136161
10000,NormalDistributionWithDups,2,ParallelRadixSort,6,229813
10000,NormalDistributionWithDups,2,ParallelRadixSort,7,360400
10000,NormalDistributionWithDups,2,ParallelRadixSort,8,534377
10000,NormalDistributionWithDups,2,ParallelRadixSort,9,757602
10000,NormalDistributionWithDups,2,ParallelRadixSort,10,1036360
10000,NormalDistributionWithDups,2,StdSort,0,3745
10000,NormalDistributionWithDups,2,StdSort,1,5025
10000,NormalDistributionWithDups,2,StdSort,2,14000
10000,NormalDistributionWithDups,2,StdSort,3,41549
10000,NormalDistributionWithDups,2,StdSort,4,85893
10000,NormalDistributionWithDups,2,StdSort,5,159041
10000,NormalDistributionWithDups,2,StdSort,6,268444
10000,NormalDistributionWithDups,2,StdSort,7,422514
10000,NormalDistributionWithDups,2,StdSort,8,625451
10000,NormalDistributionWithDups,2,StdSort,9,885620
10000,NormalDistributionWithDups,2,StdSort,10,1211093
10000,NormalDistributionWithDups,3,ParallelSort,0,1988
10000,NormalDistributionWithDups,3,ParallelSort,1,2413
10000,NormalDistributionWithDups,3,ParallelSort,2,5871
10000,NormalDistributionWithDups,3,ParallelSort,3,16606
10000,NormalDistributionWithDups,3,ParallelSort,4,34628
10000,NormalDistributionWithDups,3,ParallelSort,5,64351
10000,NormalDistributionWithDups,3,ParallelSort,6,108645
10000,NormalDistributionWithDups,3,ParallelSort,7,170512
10000,NormalDistributionWithDups,3,ParallelSort,8,252858
10000,NormalDistributionWithDups,3,ParallelSort,9,358550
10000,NormalDistributionWithDups,3,ParallelSort,10,490496
10000,NormalDistributionWithDups,3,ParallelBufferedSort,0,1963
10000,NormalDistributionWithDups,3,ParallelBufferedSort,1,1846
10000,NormalDistributionWithDups,3,ParallelBufferedSort,2,4492
10000,NormalDistributionWithDups,3,ParallelBufferedSort,3,12725
10000,NormalDistributionWithDups,3,ParallelBufferedSort,4,26345
10000,NormalDistributionWithDups,3,ParallelBufferedSort,5,48622
10000,NormalDistributionWithDups,3,ParallelBufferedSort,6,81870
10000,NormalDistributionWithDups,3,ParallelBufferedSort,7,128450
10000,NormalDistributionWithDups,3,ParallelBufferedSort,8,190350
10000,NormalDistributionWithDups,3,ParallelBufferedSort,9,269616
10000,NormalDistributionWithDups,3,ParallelBufferedSort,10,369008
10000,NormalDistributionWithDups,3,ParallelRadixSort,0,4175
10000,NormalDistributionWithDups,3,ParallelRadixSort,1,6282
10000,NormalDistributionWithDups,3,ParallelRadixSort,2,15346
10000,NormalDistributionWithDups,3,ParallelRadixSort,3,43037
10000,NormalDistributionWithDups,3,ParallelRadixSort,4,89328
10000,NormalDistributionWithDups,3,ParallelRadixSort,5,165632
10000,NormalDistributionWithDups,3,ParallelRadixSort,6,279475
10000,NormalDistributionWithDups,3,ParallelRadixSort,7,438539
10000,NormalDistributionWithDups,3,ParallelRadixSort,8,649622
10000,NormalDistributionWithDups,3,ParallelRadixSort,9,921162
10000,NormalDistributionWithDups,3,ParallelRadixSort,10,1260230
10000,NormalDistributionWithDups,3,StdSort,0,4572
10000,NormalDistributionWithDups,3,StdSort,1,6136
10000,NormalDistributionWithDups,3,StdSort,2,17104
10000,NormalDistributionWithDups,3,StdSort,3,50309
10000,NormalDistributionWithDups,3,StdSort,4,104666
10000,NormalDistributionWithDups,3,StdSort,5,193839
10000,NormalDistributionWithDups,3,StdSort,6,327201
10000,NormalDistributionWithDups,3,StdSort,7,513282
10000,NormalDistributionWithDups,3,StdSort,8,760997
10000,NormalDistributionWithDups,3,StdSort,9,1078385
10000,NormalDistributionWithDups,3,StdSort,10,1475237
10000,NormalDistributionWithDups,4,ParallelSort,0,2251
10000,NormalDistributionWithDups,4,ParallelSort,1,2884
10000,NormalDistributionWithDups,4,ParallelSort,2,6792
10000,NormalDistributionWithDups,4,ParallelSort,3,18577
10000,NormalDistributionWithDups,4,ParallelSort,4,38356
10000,NormalDistributionWithDups,4,ParallelSort,5,71059
10000,NormalDistributionWithDups,4,ParallelSort,6,120244
10000,NormalDistributionWithDups,4,ParallelSort,7,190576
10000,NormalDistributionWithDups,4,ParallelSort,8,279032
10000,NormalDistributionWithDups,4,ParallelSort,9,396118
10000,NormalDistributionWithDups,4,ParallelSort,10,540161
10000,NormalDistributionWithDups,4,ParallelBufferedSort,0,1902
10000,NormalDistributionWithDups,4,ParallelBufferedSort,1,2397
10000,NormalDistributionWithDups,4,ParallelBufferedSort,2,5957
10000,NormalDistributionWithDups,4,ParallelBufferedSort,3,16852
10000,NormalDistributionWithDups,4,ParallelBufferedSort,4,34838
10000,NormalDistributionWithDups,4,ParallelBufferedSort,5,64416
10000,NormalDistributionWithDups,4,ParallelBufferedSort,6,115527
10000,NormalDistributionWithDups,4,ParallelBufferedSort,7,177078
10000,NormalDistributionWithDups,4,ParallelBufferedSort,8,262706
10000,NormalDistributionWithDups,4,ParallelBufferedSort,9,366683
10000,NormalDistributionWithDups,4,ParallelBufferedSort,10,515257
10000,NormalDistributionWithDups,4,ParallelRadixSort,0,5404
10000,NormalDistributionWithDups,4,ParallelRadixSort,1,8173
10000,NormalDistributionWithDups,4,ParallelRadixSort,2,19996
10000,NormalDistributionWithDups,4,ParallelRadixSort,3,55718
10000,NormalDistributionWithDups,4,ParallelRadixSort,4,115603
10000,NormalDistributionWithDups,4,ParallelRadixSort,5,214213
10000,NormalDistributionWithDups,4,ParallelRadixSort,6,361451
10000,NormalDistributionWithDups,4,ParallelRadixSort,7,566874
10000,NormalDistributionWithDups,4,ParallelRadixSort,8,840209
10000,NormalDistributionWithDups,4,ParallelRadixSort,9,1191726
10000,NormalDistributionWithDups,4,ParallelRadixSort,10,1629906
10000,NormalDistributionWithDups,4,StdSort,0,6009
10000,NormalDistributionWithDups,4,StdSort,1,8010
10000,NormalDistributionWithDups,4,StdSort,2,21997
10000,NormalDistributionWithDups,4,StdSort,3,64782
10000,NormalDistributionWithDups,4,StdSort,4,134889
10000,NormalDistributionWithDups,4,StdSort,5,249562
10000,NormalDistributionWithDups,4,StdSort,6,421746
10000,NormalDistributionWithDups,4,StdSort,7,661757
10000,NormalDistributionWithDups,4,StdSort,8,980482
10000,NormalDistributionWithDups,4,StdSort,9,1391422
10000,NormalDistributionWithDups,4,StdSort,10,1901878
10000,NormalDistributionWithDups,5,ParallelSort,0,2331
10000,NormalDistributionWithDups,5,ParallelSort,1,2917
10000,NormalDistributionWithDups,5,ParallelSort,2,6772
10000,NormalDistributionWithDups,5,ParallelSort,3,19065
10000,NormalDistributionWithDups,5,ParallelSort,4,38758
10000,NormalDistributionWithDups,5,ParallelSort,5,71820
10000,NormalDistributionWithDups,5,ParallelSort,6,119767
10000,NormalDistributionWithDups,5,ParallelSort,7,190162
10000,NormalDistributionWithDups,5,ParallelSort,8,276264
10000,NormalDistributionWithDups,5,ParallelSort,9,391969
10000,NormalDistributionWithDups,5,ParallelSort,10,521607
10000,NormalDistributionWithDups,5,ParallelBufferedSort,0,2189
10000,NormalDistributionWithDups,5,ParallelBufferedSort,1,2766
10000,NormalDistributionWithDups,5,ParallelBufferedSort,2,6649
10000,NormalDistributionWithDups,5,ParallelBufferedSort,3,18286
10000,NormalDistributionWithDups,5,ParallelBufferedSort,4,37495
10000,NormalDistributionWithDups,5,ParallelBufferedSort,5,64769
10000,NormalDistributionWithDups,5,ParallelBufferedSort,6,108880
10000,NormalDistributionWithDups,5,ParallelBufferedSort,7,170975
10000,NormalDistributionWithDups,5,ParallelBufferedSort,8,253307
10000,NormalDistributionWithDups,5,ParallelBufferedSort,9,358140
10000,NormalDistributionWithDups,5,ParallelBufferedSort,10,488997
10000,NormalDistributionWithDups,5,ParallelRadixSort,0,6158
10000,NormalDistributionWithDups,5,ParallelRadixSort,1,9240
10000,NormalDistributionWithDups,5,ParallelRadixSort,2,22512
10000,NormalDistributionWithDups,5,ParallelRadixSort,3,63012
10000,NormalDistributionWithDups,5,ParallelRadixSort,4,130705
10000,NormalDistributionWithDups,5,ParallelRadixSort,5,242197
10000,NormalDistributionWithDups,5,ParallelRadixSort,6,408687
10000,NormalDistributionWithDups,5,ParallelRadixSort,7,641654
10000,NormalDistributionWithDups,5,ParallelRadixSort,8,949630
10000,NormalDistributionWithDups,5,ParallelRadixSort,9,1346618
10000,NormalDistributionWithDups,5,ParallelRadixSort,10,1842009
10000,NormalDistributionWithDups,5,StdSort,0,6605
10000,NormalDistributionWithDups,5,StdSort,1,8840
10000,NormalDistributionWithDups,5,StdSort,2,24335
10000,NormalDistributionWithDups,5,StdSort,3,71457
10000,NormalDistributionWithDups,5,StdSort,4,148741
10000,NormalDistributionWithDups,5,StdSort,5,275417
10000,NormalDistributionWithDups,5,StdSort,6,465029
10000,NormalDistributionWithDups,5,StdSort,7,729536
10000,NormalDistributionWithDups,5,StdSort,8,1080826
10000,NormalDistributionWithDups,5,StdSort,9,1532572
10000,NormalDistributionWithDups,5,StdSort,10,2097444
10000,NormalDistributionWithDups,6,ParallelSort,0,1519
10000,NormalDistributionWithDups,6,ParallelSort,1,2133
10000,NormalDistributionWithDups,6,ParallelSort,2,4083
10000,NormalDistributionWithDups,6,ParallelSort,3,11445
10000,NormalDistributionWithDups,6,ParallelSort,4,23966
10000,NormalDistributionWithDups,6,ParallelSort,5,43576
10000,NormalDistributionWithDups,6,ParallelSort,6,73340
10000,NormalDistributionWithDups,6,ParallelSort,7,115015
10000,NormalDistributionWithDups,6,ParallelSort,8,170555
10000,NormalDistributionWithDups,6,ParallelSort,9,240949
10000,NormalDistributionWithDups,6,ParallelSort,10,331308
10000,NormalDistributionWithDups,6,ParallelBufferedSort,0,1389
10000,NormalDistributionWithDups,6,ParallelBufferedSort,1,1764
10000,NormalDistributionWithDups,6,ParallelBufferedSort,2,4152
10000,NormalDistributionWithDups,6,ParallelBufferedSort,3,9933
10000,NormalDistributionWithDups,6,ParallelBufferedSort,4,20178
10000,NormalDistributionWithDups,6,ParallelBufferedSort,5,37001
10000,NormalDistributionWithDups,6,ParallelBufferedSort,6,62005
10000,NormalDistributionWithDups,6,ParallelBufferedSort,7,96988
10000,NormalDistributionWithDups,6,ParallelBufferedSort,8,143787
10000,NormalDistributionWithDups,6,ParallelBufferedSort,9,204261
10000,NormalDistributionWithDups,6,ParallelBufferedSort,10,278688
10000,NormalDistributionWithDups,6,ParallelRadixSort,0,3573
10000,NormalDistributionWithDups,6,ParallelRadixSort,1,5350
10000,NormalDistributionWithDups,6,ParallelRadixSort,2,12902
10000,NormalDistributionWithDups,6,ParallelRadixSort,3,36031
10000,NormalDistributionWithDups,6,ParallelRadixSort,4,74663
10000,NormalDistributionWithDups,6,ParallelRadixSort,5,138339
10000,NormalDistributionWithDups,6,ParallelRadixSort,6,233401
10000,NormalDistributionWithDups,6,ParallelRadixSort,7,366040
10000,NormalDistributionWithDups,6,ParallelRadixSort,8,542473
10000,NormalDistributionWithDups,6,ParallelRadixSort,9,769188
10000,NormalDistributionWithDups,6,ParallelRadixSort,10,1052188
10000,NormalDistributionWithDups,6,StdSort,0,3855
10000,NormalDistributionWithDups,6,StdSort,1,5167
10000,NormalDistributionWithDups,6,StdSort,2,14388
10000,NormalDistributionWithDups,6,StdSort,3,42352
10000,NormalDistributionWithDups,6,StdSort,4,88241
10000,NormalDistributionWithDups,6,StdSort,5,163492
10000,NormalDistributionWithDups,6,StdSort,6,275899
10000,NormalDistributionWithDups,6,StdSort,7,432937
10000,NormalDistributionWithDups,6,StdSort,8,641547
10000,NormalDistributionWithDups,6,StdSort,9,909597
10000,NormalDistributionWithDups,6,StdSort,10,1244511
10000,NormalDistributionWithDups,7,ParallelSort,0,1891
10000,NormalDistributionWithDups,7,ParallelSort,1,2477
10000,NormalDistributionWithDups,7,ParallelSort,2,4478
10000,NormalDistributionWithDups,7,ParallelSort,3,12928
10000,NormalDistributionWithDups,7,ParallelSort,4,27087
10000,NormalDistributionWithDups,7,ParallelSort,5,50463
10000,NormalDistributionWithDups,7,ParallelSort,6,85371
10000,NormalDistributionWithDups,7,ParallelSort,7,134031
10000,NormalDistributionWithDups,7,ParallelSort,8,198818
10000,NormalDistributionWithDups,7,ParallelSort,9,282054
10000,NormalDistributionWithDups,7,ParallelSort,10,385824
10000,NormalDistributionWithDups,7,ParallelBufferedSort,0,2037
10000,NormalDistributionWithDups,7,ParallelBufferedSort,1,2243
10000,NormalDistributionWithDups,7,ParallelBufferedSort,2,5294
10000,NormalDistributionWithDups,7,ParallelBufferedSort,3,10467
10000,NormalDistributionWithDups,7,ParallelBufferedSort,4,20501
10000,NormalDistributionWithDups,7,ParallelBufferedSort,5,37646
10000,NormalDistributionWithDups,7,ParallelBufferedSort,6,63229
10000,NormalDistributionWithDups,7,ParallelBufferedSort,7,99099
10000,NormalDistributionWithDups,7,ParallelBufferedSort,8,146526
10000,NormalDistributionWithDups,7,ParallelBufferedSort,9,207714
10000,NormalDistributionWithDups,7,ParallelBufferedSort,10,283739
10000,NormalDistributionWithDups,7,ParallelRadixSort,0,4411
10000,NormalDistributionWithDups,7,ParallelRadixSort,1,6644
10000,NormalDistributionWithDups,7,ParallelRadixSort,2,16104
10000,NormalDistributionWithDups,7,ParallelRadixSort,3,44950
10000,NormalDistributionWithDups,7,ParallelRadixSort,4,93117
10000,NormalDistributionWithDups,7,ParallelRadixSort,5,172485
10000,NormalDistributionWithDups,7,ParallelRadixSort,6,290962
10000,NormalDistributionWithDups,7,ParallelRadixSort,7,456305
10000,NormalDistributionWithDups,7,ParallelRadixSort,8,676224
10000,NormalDistributionWithDups,7,ParallelRadixSort,9,959024
10000,NormalDistributionWithDups,7,ParallelRadixSort,10,1311419
10000,NormalDistributionWithDups,7,StdSort,0,4765
10000,NormalDistributionWithDups,7,StdSort,1,6359
10000,NormalDistributionWithDups,7,StdSort,2,17642
10000,NormalDistributionWithDups,7,StdSort,3,52006
10000,NormalDistributionWithDups,7,StdSort,4,108150
10000,NormalDistributionWithDups,7,StdSort,5,200455
10000,NormalDistributionWithDups,7,StdSort,6,338310
10000,NormalDistributionWithDups,7,StdSort,7,530558
10000,NormalDistributionWithDups,7,StdSort,8,786798
10000,NormalDistributionWithDups,7,StdSort,9,1114577
10000,NormalDistributionWithDups,7,StdSort,10,1526328
10000,NormalDistributionWithDups,8,ParallelSort,0,2534
10000,NormalDistributionWithDups,8,ParallelSort,1,2141
10000,NormalDistributionWithDups,8,ParallelSort,2,4738
10000,NormalDistributionWithDups,8,ParallelSort,3,11520
10000,NormalDistributionWithDups,8,ParallelSort,4,23639
10000,NormalDistributionWithDups,8,ParallelSort,5,43569
10000,NormalDistributionWithDups,8,ParallelSort,6,73097
10000,NormalDistributionWithDups,8,ParallelSort,7,114659
10000,NormalDistributionWithDups,8,ParallelSort,8,170197
10000,NormalDistributionWithDups,8,ParallelSort,9,240442
10000,NormalDistributionWithDups,8,ParallelSort,10,329218
10000,NormalDistributionWithDups,8,ParallelBufferedSort,0,2109
10000,NormalDistributionWithDups,8,ParallelBufferedSort,1,2563
10000,NormalDistributionWithDups,8,ParallelBufferedSort,2,4456
10000,NormalDistributionWithDups,8,ParallelBufferedSort,3,9804
10000,NormalDistributionWithDups,8,ParallelBufferedSort,4,18554
10000,NormalDistributionWithDups,8,ParallelBufferedSort,5,33739
10000,NormalDistributionWithDups,8,ParallelBufferedSort,6,57635
10000,NormalDistributionWithDups,8,ParallelBufferedSort,7,86916
10000,NormalDistributionWithDups,8,ParallelBufferedSort,8,76200
10000,NormalDistributionWithDups,8,ParallelBufferedSort,9,120563
10000,NormalDistributionWithDups,8,ParallelBufferedSort,10,157968
10000,NormalDistributionWithDups,8,ParallelRadixSort,0,3277
10000,NormalDistributionWithDups,8,ParallelRadixSort,1,4904
10000,NormalDistributionWithDups,8,ParallelRadixSort,2,11833
10000,NormalDistributionWithDups,8,ParallelRadixSort,3,32989
10000,NormalDistributionWithDups,8,ParallelRadixSort,4,68348
10000,NormalDistributionWithDups,8,ParallelRadixSort,5,126623
10000,NormalDistributionWithDups,8,ParallelRadixSort,6,213571
10000,NormalDistributionWithDups,8,ParallelRadixSort,7,334933
10000,NormalDistributionWithDups,8,ParallelRadixSort,8,496490
10000,NormalDistributionWithDups,8,ParallelRadixSort,9,703840
10000,NormalDistributionWithDups,8,ParallelRadixSort,10,962792
10000,NormalDistributionWithDups,8,StdSort,0,3566
10000,NormalDistributionWithDups,8,StdSort,1,4777
10000,NormalDistributionWithDups,8,StdSort,2,13321
10000,NormalDistributionWithDups,8,StdSort,3,39361
10000,NormalDistributionWithDups,8,StdSort,4,82061
10000,NormalDistributionWithDups,8,StdSort,5,151984
10000,NormalDistributionWithDups,8,StdSort,6,256380
10000,NormalDistributionWithDups,8,StdSort,7,402408
10000,NormalDistributionWithDups,8,StdSort,8,596348
10000,NormalDistributionWithDups,8,StdSort,9,845484
10000,NormalDistributionWithDups,8,StdSort,10,1156789
10000,SawTooth,1,ParallelSort,0,3137
10000,SawTooth,1,ParallelSort,1,4414
10000,SawTooth,1,ParallelSort,2,12665
10000,SawTooth,1,ParallelSort,3,39060
10000,SawTooth,1,ParallelSort,4,81630
10000,SawTooth,1,ParallelSort,5,151768
10000,SawTooth,1,ParallelSort,6,256277
10000,SawTooth,1,ParallelSort,7,402323
10000,SawTooth,1,ParallelSort,8,596415
10000,SawTooth,1,ParallelSort,9,845771
10000,SawTooth,1,ParallelSort,10,1157456
10000,SawTooth,1,ParallelBufferedSort,0,3102
10000,SawTooth,1,ParallelBufferedSort,1,4413
10000,SawTooth,1,ParallelBufferedSort,2,12667
10000,SawTooth,1,ParallelBufferedSort,3,39019
10000,SawTooth,1,ParallelBufferedSort,4,81630
10000,SawTooth,1,ParallelBufferedSort,5,151599
10000,SawTooth,1,ParallelBufferedSort,6,256332
10000,SawTooth,1,ParallelBufferedSort,7,402365
10000,SawTooth,1,ParallelBufferedSort,8,596402
10000,SawTooth,1,ParallelBufferedSort,9,845797
10000,SawTooth,1,ParallelBufferedSort,10,1157409
10000,SawTooth,1,ParallelRadixSort,0,3026
10000,SawTooth,1,ParallelRadixSort,1,4720
10000,SawTooth,1,ParallelRadixSort,2,11619
10000,SawTooth,1,ParallelRadixSort,3,33041
10000,SawTooth,1,ParallelRadixSort,4,68782
10000,SawTooth,1,ParallelRadixSort,5,127677
10000,SawTooth,1,ParallelRadixSort,6,215594
10000,SawTooth,1,ParallelRadixSort,7,338232
10000,SawTooth,1,ParallelRadixSort,8,501702
10000,SawTooth,1,ParallelRadixSort,9,711226
10000,SawTooth,1,ParallelRadixSort,10,973155
10000,SawTooth,1,StdSort,0,3104
10000,SawTooth,1,StdSort,1,4361
10000,SawTooth,1,StdSort,2,12668
10000,SawTooth,1,StdSort,3,39017
10000,SawTooth,1,StdSort,4,81688
10000,SawTooth,1,StdSort,5,151637
10000,SawTooth,1,StdSort,6,256226
10000,SawTooth,1,StdSort,7,402433
10000,SawTooth,1,StdSort,8,596479
10000,SawTooth,1,StdSort,9,846109
10000,SawTooth,1,StdSort,10,1157681
10000,SawTooth,2,ParallelSort,0,1875
10000,SawTooth,2,ParallelSort,1,2562
10000,SawTooth,2,ParallelSort,2,7015
10000,SawTooth,2,ParallelSort,3,20678
10000,SawTooth,2,ParallelSort,4,43096
10000,SawTooth,2,ParallelSort,5,79880
10000,SawTooth,2,ParallelSort,6,134737
10000,SawTooth,2,ParallelSort,7,211367
10000,SawTooth,2,ParallelSort,8,313290
10000,SawTooth,2,ParallelSort,9,444191
10000,SawTooth,2,ParallelSort,10,607763
10000,SawTooth,2,ParallelBufferedSort,0,1433
10000,SawTooth,2,ParallelBufferedSort,1,1895
10000,SawTooth,2,ParallelBufferedSort,2,4885
10000,SawTooth,2,ParallelBufferedSort,3,14330
10000,SawTooth,2,ParallelBufferedSort,4,29761
10000,SawTooth,2,ParallelBufferedSort,5,55069
10000,SawTooth,2,ParallelBufferedSort,6,92708
10000,SawTooth,2,ParallelBufferedSort,7,145483
10000,SawTooth,2,ParallelBufferedSort,8,215750
10000,SawTooth,2,ParallelBufferedSort,9,305692
10000,SawTooth,2,ParallelBufferedSort,10,418113
10000,SawTooth,2,ParallelRadixSort,0,3078
10000,SawTooth,2,ParallelRadixSort,1,4663
10000,SawTooth,2,ParallelRadixSort,2,11453
10000,SawTooth,2,ParallelRadixSort,3,32239
10000,SawTooth,2,ParallelRadixSort,4,66963
10000,SawTooth,2,ParallelRadixSort,5,124228
10000,SawTooth,2,ParallelRadixSort,6,209596
10000,SawTooth,2,ParallelRadixSort,7,328744
10000,SawTooth,2,ParallelRadixSort,8,487238
10000,SawTooth,2,ParallelRadixSort,9,690927
10000,SawTooth,2,ParallelRadixSort,10,945040
10000,SawTooth,2,StdSort,0,3104
10000,SawTooth,2,StdSort,1,4361
10000,SawTooth,2,StdSort,2,12667
10000,SawTooth,2,StdSort,3,39017
10000,SawTooth,2,StdSort,4,81689
10000,SawTooth,2,StdSort,5,151411
10000,SawTooth,2,StdSort,6,256219
10000,SawTooth,2,StdSort,7,402446
10000,SawTooth,2,StdSort,8,597163
10000,SawTooth,2,StdSort,9,847365
10000,SawTooth,2,StdSort,10,1158745
10000,SawTooth,3,ParallelSort,0,1597
10000,SawTooth,3,ParallelSort,1,2155
10000,SawTooth,3,ParallelSort,2,5724
10000,SawTooth,3,ParallelSort,3,16768
10000,SawTooth,3,ParallelSort,4,34730
10000,SawTooth,3,ParallelSort,5,64393
10000,SawTooth,3,ParallelSort,6,108540
10000,SawTooth,3,ParallelSort,7,170327
10000,SawTooth,3,ParallelSort,8,252377
10000,SawTooth,3,ParallelSort,9,357683
10000,SawTooth,3,ParallelSort,10,489319
10000,SawTooth,3,ParallelBufferedSort,0,1318
10000,SawTooth,3,ParallelBufferedSort,1,1680
10000,SawTooth,3,ParallelBufferedSort,2,3179
10000,SawTooth,3,ParallelBufferedSort,3,9264
10000,SawTooth,3,ParallelBufferedSort,4,19174
10000,SawTooth,3,ParallelBufferedSort,5,35427
10000,SawTooth,3,ParallelBufferedSort,6,59646
10000,SawTooth,3,ParallelBufferedSort,7,93589
10000,SawTooth,3,ParallelBufferedSort,8,138717
10000,SawTooth,3,ParallelBufferedSort,9,196506
10000,SawTooth,3,ParallelBufferedSort,10,268813
10000,SawTooth,3,ParallelRadixSort,0,3120
10000,SawTooth,3,ParallelRadixSort,1,4675
10000,SawTooth,3,ParallelRadixSort,2,11399
10000,SawTooth,3,ParallelRadixSort,3,31976
10000,SawTooth,3,ParallelRadixSort,4,66329
10000,SawTooth,3,ParallelRadixSort,5,123038
10000,SawTooth,3,ParallelRadixSort,6,207604
10000,SawTooth,3,ParallelRadixSort,7,325537
10000,SawTooth,3,ParallelRadixSort,8,482491
10000,SawTooth,3,ParallelRadixSort,9,684198
10000,SawTooth,3,ParallelRadixSort,10,935867
10000,SawTooth,3,StdSort,0,3104
10000,SawTooth,3,StdSort,1,4408
10000,SawTooth,3,StdSort,2,12661
10000,SawTooth,3,StdSort,3,39026
10000,SawTooth,3,StdSort,4,81698
10000,SawTooth,3,StdSort,5,151629
10000,SawTooth,3,StdSort,6,256187
10000,SawTooth,3,StdSort,7,402343
10000,SawTooth,3,StdSort,8,596455
10000,SawTooth,3,StdSort,9,847324
10000,SawTooth,3,StdSort,10,1157461
10000,SawTooth,4,ParallelSort,0,1488
10000,SawTooth,4,ParallelSort,1,1954
10000,SawTooth,4,ParallelSort,2,5161
10000,SawTooth,4,ParallelSort,3,14955
10000,SawTooth,4,ParallelSort,4,31056
10000,SawTooth,4,ParallelSort,5,57539
10000,SawTooth,4,ParallelSort,6,96823
10000,SawTooth,4,ParallelSort,7,151978
10000,SawTooth,4,ParallelSort,8,225537
10000,SawTooth,4,ParallelSort,9,319710
10000,SawTooth,4,ParallelSort,10,437459
10000,SawTooth,4,ParallelBufferedSort,0,1188
10000,SawTooth,4,ParallelBufferedSort,1,1308
10000,SawTooth,4,ParallelBufferedSort,2,3231
10000,SawTooth,4,ParallelBufferedSort,3,9340
10000,SawTooth,4,ParallelBufferedSort,4,19159
10000,SawTooth,4,ParallelBufferedSort,5,35459
10000,SawTooth,4,ParallelBufferedSort,6,59689
10000,SawTooth,4,ParallelBufferedSort,7,93670
10000,SawTooth,4,ParallelBufferedSort,8,139512
10000,SawTooth,4,ParallelBufferedSort,9,210893
10000,SawTooth,4,ParallelBufferedSort,10,306826
10000,SawTooth,4,ParallelRadixSort,0,3085
10000,SawTooth,4,ParallelRadixSort,1,4669
10000,SawTooth,4,ParallelRadixSort,2,11366
10000,SawTooth,4,ParallelRadixSort,3,31856
10000,SawTooth,4,ParallelRadixSort,4,66050
10000,SawTooth,4,ParallelRadixSort,5,122460
10000,SawTooth,4,ParallelRadixSort,6,206571
10000,SawTooth,4,ParallelRadixSort,7,323957
10000,SawTooth,4,ParallelRadixSort,8,480159
10000,SawTooth,4,ParallelRadixSort,9,680700
10000,SawTooth,4,ParallelRadixSort,10,931446
10000,SawTooth,4,StdSort,0,3104
10000,SawTooth,4,StdSort,1,4408
10000,SawTooth,4,StdSort,2,12661
10000,SawTooth,4,StdSort,3,39015
10000,SawTooth,4,StdSort,4,81685
10000,SawTooth,4,StdSort,5,151626
10000,SawTooth,4,StdSort,6,256222
10000,SawTooth,4,StdSort,7,402327
10000,SawTooth,4,StdSort,8,596594
10000,SawTooth,4,StdSort,9,845770
10000,SawTooth,4,StdSort,10,1157606
10000,SawTooth,5,ParallelSort,0,1490
10000,SawTooth,5,ParallelSort,1,1892
10000,SawTooth,5,ParallelSort,2,4900
10000,SawTooth,5,ParallelSort,3,14535
10000,SawTooth,5,ParallelSort,4,30199
10000,SawTooth,5,ParallelSort,5,55932
10000,SawTooth,5,ParallelSort,6,94311
10000,SawTooth,5,ParallelSort,7,147868
10000,SawTooth,5,ParallelSort,8,219116
10000,SawTooth,5,ParallelSort,9,310777
10000,SawTooth,5,ParallelSort,10,424803
10000,SawTooth,5,ParallelBufferedSort,0,1126
10000,SawTooth,5,ParallelBufferedSort,1,1429
10000,SawTooth,5,ParallelBufferedSort,2,3282
10000,SawTooth,5,ParallelBufferedSort,3,9318
10000,SawTooth,5,ParallelBufferedSort,4,19192
10000,SawTooth,5,ParallelBufferedSort,5,35440
10000,SawTooth,5,ParallelBufferedSort,6,59772
10000,SawTooth,5,ParallelBufferedSort,7,93595
10000,SawTooth,5,ParallelBufferedSort,8,131437
10000,SawTooth,5,ParallelBufferedSort,9,196535
10000,SawTooth,5,ParallelBufferedSort,10,254187
10000,SawTooth,5,ParallelRadixSort,0,3087
10000,SawTooth,5,ParallelRadixSort,1,4682
10000,SawTooth,5,ParallelRadixSort,2,11380
10000,SawTooth,5,ParallelRadixSort,3,31796
10000,SawTooth,5,ParallelRadixSort,4,65886
10000,SawTooth,5,ParallelRadixSort,5,122108
10000,SawTooth,5,ParallelRadixSort,6,206035
10000,SawTooth,5,ParallelRadixSort,7,322981
10000,SawTooth,5,ParallelRadixSort,8,478847
10000,SawTooth,5,ParallelRadixSort,9,678706
10000,SawTooth,5,ParallelRadixSort,10,928313
10000,SawTooth,5,StdSort,0,3104
10000,SawTooth,5,StdSort,1,4360
10000,SawTooth,5,StdSort,2,12667
10000,SawTooth,5,StdSort,3,39009
10000,SawTooth,5,StdSort,4,81628
10000,SawTooth,5,StdSort,5,151634
10000,SawTooth,5,StdSort,6,256231
10000,SawTooth,5,StdSort,7,402477
10000,SawTooth,5,StdSort,8,596510
10000,SawTooth,5,StdSort,9,847229
10000,SawTooth,5,StdSort,10,1158707
10000,SawTooth,6,ParallelSort,0,1630
10000,SawTooth,6,ParallelSort,1,1936
10000,SawTooth,6,ParallelSort,2,4924
10000,SawTooth,6,ParallelSort,3,14559
10000,SawTooth,6,ParallelSort,4,30240
10000,SawTooth,6,ParallelSort,5,55875
10000,SawTooth,6,ParallelSort,6,94215
10000,SawTooth,6,ParallelSort,7,147908
10000,SawTooth,6,ParallelSort,8,218764
10000,SawTooth,6,ParallelSort,9,310414
10000,SawTooth,6,ParallelSort,10,424889
10000,SawTooth,6,ParallelBufferedSort,0,1994
10000,SawTooth,6,ParallelBufferedSort,1,1401
10000,SawTooth,6,ParallelBufferedSort,2,3291
10000,SawTooth,6,ParallelBufferedSort,3,9293
10000,SawTooth,6,ParallelBufferedSort,4,18221
10000,SawTooth,6,ParallelBufferedSort,5,33490
10000,SawTooth,6,ParallelBufferedSort,6,56403
10000,SawTooth,6,ParallelBufferedSort,7,88360
10000,SawTooth,6,ParallelBufferedSort,8,130853
10000,SawTooth,6,ParallelBufferedSort,9,185509
10000,SawTooth,6,ParallelBufferedSort,10,253537
10000,SawTooth,6,ParallelRadixSort,0,3113
10000,SawTooth,6,ParallelRadixSort,1,4671
10000,SawTooth,6,ParallelRadixSort,2,11348
10000,SawTooth,6,ParallelRadixSort,3,31726
10000,SawTooth,6,ParallelRadixSort,4,65760
10000,SawTooth,6,ParallelRadixSort,5,121892
10000,SawTooth,6,ParallelRadixSort,6,205564
10000,SawTooth,6,ParallelRadixSort,7,322373
10000,SawTooth,6,ParallelRadixSort,8,477924
10000,SawTooth,6,ParallelRadixSort,9,677511
10000,SawTooth,6,ParallelRadixSort,10,926564
10000,SawTooth,6,StdSort,0,3103
10000,SawTooth,6,StdSort,1,4361
10000,SawTooth,6,StdSort,2,12667
10000,SawTooth,6,StdSort,3,39018
10000,SawTooth,6,StdSort,4,81688
10000,SawTooth,6,StdSort,5,151605
10000,SawTooth,6,StdSort,6,256221
10000,SawTooth,6,StdSort,7,402357
10000,SawTooth,6,StdSort,8,596444
10000,SawTooth,6,StdSort,9,845842
10000,SawTooth,6,StdSort,10,1157472
10000,SawTooth,7,ParallelSort,0,1727
10000,SawTooth,7,ParallelSort,1,2034
10000,SawTooth,7,ParallelSort,2,4924
10000,SawTooth,7,ParallelSort,3,14568
10000,SawTooth,7,ParallelSort,4,30179
10000,SawTooth,7,ParallelSort,5,55848
10000,SawTooth,7,ParallelSort,6,94226
10000,SawTooth,7,ParallelSort,7,147749
10000,SawTooth,7,ParallelSort,8,219020
10000,SawTooth,7,ParallelSort,9,310242
10000,SawTooth,7,ParallelSort,10,424544
10000,SawTooth,7,ParallelBufferedSort,0,1533
10000,SawTooth,7,ParallelBufferedSort,1,1720
10000,SawTooth,7,ParallelBufferedSort,2,3359
10000,SawTooth,7,ParallelBufferedSort,3,8318
10000,SawTooth,7,ParallelBufferedSort,4,12894
10000,SawTooth,7,ParallelBufferedSort,5,22659
10000,SawTooth,7,ParallelBufferedSort,6,37416
10000,SawTooth,7,ParallelBufferedSort,7,58118
10000,SawTooth,7,ParallelBufferedSort,8,85417
10000,SawTooth,7,ParallelBufferedSort,9,120876
10000,SawTooth,7,ParallelBufferedSort,10,165540
10000,SawTooth,7,ParallelRadixSort,0,3105
10000,SawTooth,7,ParallelRadixSort,1,4674
10000,SawTooth,7,ParallelRadixSort,2,11344
10000,SawTooth,7,ParallelRadixSort,3,31715
10000,SawTooth,7,ParallelRadixSort,4,65725
10000,SawTooth,7,ParallelRadixSort,5,121775
10000,SawTooth,7,ParallelRadixSort,6,205429
10000,SawTooth,7,ParallelRadixSort,7,322175
10000,SawTooth,7,ParallelRadixSort,8,477456
10000,SawTooth,7,ParallelRadixSort,9,676976
10000,SawTooth,7,ParallelRadixSort,10,925967
10000,SawTooth,7,StdSort,0,3105
10000,SawTooth,7,StdSort,1,4407
10000,SawTooth,7,StdSort,2,12667
10000,SawTooth,7,StdSort,3,39014
10000,SawTooth,7,StdSort,4,81685
10000,SawTooth,7,StdSort,5,151627
10000,SawTooth,7,StdSort,6,256220
10000,SawTooth,7,StdSort,7,402339
10000,SawTooth,7,StdSort,8,596625
10000,SawTooth,7,StdSort,9,846188
10000,SawTooth,7,StdSort,10,1157760
10000,SawTooth,8,ParallelSort,0,1955
10000,SawTooth,8,ParallelSort,1,2232
10000,SawTooth,8,ParallelSort,2,4945
10000,SawTooth,8,ParallelSort,3,14605
10000,SawTooth,8,ParallelSort,4,30320
10000,SawTooth,8,ParallelSort,5,56182
10000,SawTooth,8,ParallelSort,6,94758
10000,SawTooth,8,ParallelSort,7,148691
10000,SawTooth,8,ParallelSort,8,220258
10000,SawTooth,8,ParallelSort,9,312192
10000,SawTooth,8,ParallelSort,10,427289
10000,SawTooth,8,ParallelBufferedSort,0,1755
10000,SawTooth,8,ParallelBufferedSort,1,2266
10000,SawTooth,8,ParallelBufferedSort,2,3552
10000,SawTooth,8,ParallelBufferedSort,3,9285
10000,SawTooth,8,ParallelBufferedSort,4,17476
10000,SawTooth,8,ParallelBufferedSort,5,21895
10000,SawTooth,8,ParallelBufferedSort,6,33363
10000,SawTooth,8,ParallelBufferedSort,7,56064
10000,SawTooth,8,ParallelBufferedSort,8,82937
10000,SawTooth,8,ParallelBufferedSort,9,115830
10000,SawTooth,8,ParallelBufferedSort,10,195040
10000,SawTooth,8,ParallelRadixSort,0,3077
10000,SawTooth,8,ParallelRadixSort,1,4663
10000,SawTooth,8,ParallelRadixSort,2,11340
10000,SawTooth,8,ParallelRadixSort,3,31689
10000,SawTooth,8,ParallelRadixSort,4,65674
10000,SawTooth,8,ParallelRadixSort,5,121675
10000,SawTooth,8,ParallelRadixSort,6,205302
10000,SawTooth,8,ParallelRadixSort,7,321942
10000,SawTooth,8,ParallelRadixSort,8,477094
10000,SawTooth,8,ParallelRadixSort,9,676504
10000,SawTooth,8,ParallelRadixSort,10,925293
10000,SawTooth,8,StdSort,0,3104
10000,SawTooth,8,StdSort,1,4362
10000,SawTooth,8,StdSort,2,12668
10000,SawTooth,8,StdSort,3,39005
10000,SawTooth,8,StdSort,4,81685
10000,SawTooth,8,StdSort,5,151627
10000,SawTooth,8,StdSort,6,256150
10000,SawTooth,8,StdSort,7,402351
10000,SawTooth,8,StdSort,8,596484
10000,SawTooth,8,StdSort,9,845951
10000,SawTooth,8,StdSort,10,1158750
100000,Random,1,ParallelSort,0,45227
100000,Random,1,ParallelSort,1,63702
100000,Random,1,ParallelSort,2,177331
100000,Random,1,ParallelSort,3,511984
100000,Random,1,ParallelSort,4,1070082
100000,Random,1,ParallelSort,5,1984964
100000,Random,1,ParallelSort,6,3350739
100000,Random,1,ParallelSort,7,5261736
100000,Random,1,ParallelSort,8,7797596
100000,Random,1,ParallelSort,9,11055900
100000,Random,1,ParallelSort,10,15128728
100000,Random,1,ParallelBufferedSort,0,45231
100000,Random,1,ParallelBufferedSort,1,63691
100000,Random,1,ParallelBufferedSort,2,177318
100000,Random,1,ParallelBufferedSort,3,512062
100000,Random,1,ParallelBufferedSort,4,1070332
100000,Random,1,ParallelBufferedSort,5,1986091
100000,Random,1,ParallelBufferedSort,6,3351053
100000,Random,1,ParallelBufferedSort,7,5261325
100000,Random,1,ParallelBufferedSort,8,7798484
100000,Random,1,ParallelBufferedSort,9,11057375
100000,Random,1,ParallelBufferedSort,10,15130668
100000,Random,1,ParallelRadixSort,0,30790
100000,Random,1,ParallelRadixSort,1,47039
100000,Random,1,ParallelRadixSort,2,116771
100000,Random,1,ParallelRadixSort,3,335148
100000,Random,1,ParallelRadixSort,4,703257
100000,Random,1,ParallelRadixSort,5,1309772
100000,Random,1,ParallelRadixSort,6,2216037
100000,Random,1,ParallelRadixSort,7,3481744
100000,Random,1,ParallelRadixSort,8,5163907
100000,Random,1,ParallelRadixSort,9,7326182
100000,Random,1,ParallelRadixSort,10,10028429
100000,Random,1,StdSort,0,45259
100000,Random,1,StdSort,1,63701
100000,Random,1,StdSort,2,177081
100000,Random,1,StdSort,3,511953
100000,Random,1,StdSort,4,1071523
100000,Random,1,StdSort,5,2001040
100000,Random,1,StdSort,6,3350524
100000,Random,1,StdSort,7,5262759
100000,Random,1,StdSort,8,7800255
100000,Random,1,StdSort,9,11058868
100000,Random,1,StdSort,10,15131171
100000,Random,2,ParallelSort,0,22236
100000,Random,2,ParallelSort,1,29765
100000,Random,2,ParallelSort,2,77318
100000,Random,2,ParallelSort,3,221988
100000,Random,2,ParallelSort,4,465974
100000,Random,2,ParallelSort,5,867721
100000,Random,2,ParallelSort,6,1466204
100000,Random,2,ParallelSort,7,2304855
100000,Random,2,ParallelSort,8,3416230
100000,Random,2,ParallelSort,9,4847111
100000,Random,2,ParallelSort,10,6629069
100000,Random,2,ParallelBufferedSort,0,18208
100000,Random,2,ParallelBufferedSort,1,24041
100000,Random,2,ParallelBufferedSort,2,59934
100000,Random,2,ParallelBufferedSort,3,170242
100000,Random,2,ParallelBufferedSort,4,354311
100000,Random,2,ParallelBufferedSort,5,656703
100000,Random,2,ParallelBufferedSort,6,1107775
100000,Random,2,ParallelBufferedSort,7,1739204
100000,Random,2,ParallelBufferedSort,8,2579113
100000,Random,2,ParallelBufferedSort,9,3655318
100000,Random,2,ParallelBufferedSort,10,5002132
100000,Random,2,ParallelRadixSort,0,17238
100000,Random,2,ParallelRadixSort,1,25206
100000,Random,2,ParallelRadixSort,2,60181
100000,Random,2,ParallelRadixSort,3,169640
100000,Random,2,ParallelRadixSort,4,353086
100000,Random,2,ParallelRadixSort,5,655784
100000,Random,2,ParallelRadixSort,6,1107691
100000,Random,2,ParallelRadixSort,7,1738807
100000,Random,2,ParallelRadixSort,8,2578665
100000,Random,2,ParallelRadixSort,9,3659858
100000,Random,2,ParallelRadixSort,10,5009023
100000,Random,2,StdSort,0,43847
100000,Random,2,StdSort,1,61909
100000,Random,2,StdSort,2,171885
100000,Random,2,StdSort,3,494190
100000,Random,2,StdSort,4,1032879
100000,Random,2,StdSort,5,1916890
100000,Random,2,StdSort,6,3236237
100000,Random,2,StdSort,7,5078929
100000,Random,2,StdSort,8,7526545
100000,Random,2,StdSort,9,10672064
100000,Random,2,StdSort,10,14602229
100000,Random,3,ParallelSort,0,16807
100000,Random,3,ParallelSort,1,22024
100000,Random,3,ParallelSort,2,55604
100000,Random,3,ParallelSort,3,159300
100000,Random,3,ParallelSort,4,333170
100000,Random,3,ParallelSort,5,619796
100000,Random,3,ParallelSort,6,1047142
100000,Random,3,ParallelSort,7,1644120
100000,Random,3,ParallelSort,8,2438527
100000,Random,3,ParallelSort,9,3459893
100000,Random,3,ParallelSort,10,4735912
100000,Random,3,ParallelBufferedSort,0,11884
100000,Random,3,ParallelBufferedSort,1,15575
100000,Random,3,ParallelBufferedSort,2,39049
100000,Random,3,ParallelBufferedSort,3,111248
100000,Random,3,ParallelBufferedSort,4,231484
100000,Random,3,ParallelBufferedSort,5,429706
100000,Random,3,ParallelBufferedSort,6,725941
100000,Random,3,ParallelBufferedSort,7,1140549
100000,Random,3,ParallelBufferedSort,8,1693707
100000,Random,3,ParallelBufferedSort,9,2393916
100000,Random,3,ParallelBufferedSort,10,3276346
100000,Random,3,ParallelRadixSort,0,29950
100000,Random,3,ParallelRadixSort,1,43960
100000,Random,3,ParallelRadixSort,2,106310
100000,Random,3,ParallelRadixSort,3,297664
100000,Random,3,ParallelRadixSort,4,620007
100000,Random,3,ParallelRadixSort,5,1150303
100000,Random,3,ParallelRadixSort,6,1942849
100000,Random,3,ParallelRadixSort,7,3049235
100000,Random,3,ParallelRadixSort,8,4519690
100000,Random,3,ParallelRadixSort,9,6415396
100000,Random,3,ParallelRadixSort,10,8772856
100000,Random,3,StdSort,0,44618
100000,Random,3,StdSort,1,62694
100000,Random,3,StdSort,2,174421
100000,Random,3,StdSort,3,503732
100000,Random,3,StdSort,4,1054913
100000,Random,3,StdSort,5,1954155
100000,Random,3,StdSort,6,3298827
100000,Random,3,StdSort,7,5177794
100000,Random,3,StdSort,8,7673006
100000,Random,3,StdSort,9,10880097
100000,Random,3,StdSort,10,14886868
100000,Random,4,ParallelSort,0,14309
100000,Random,4,ParallelSort,1,18698
100000,Random,4,ParallelSort,2,45789
100000,Random,4,ParallelSort,3,131642
100000,Random,4,ParallelSort,4,289936
100000,Random,4,ParallelSort,5,530417
100000,Random,4,ParallelSort,6,884084
100000,Random,4,ParallelSort,7,1377552
100000,Random,4,ParallelSort,8,2041058
100000,Random,4,ParallelSort,9,2871468
100000,Random,4,ParallelSort,10,3952106
100000,Random,4,ParallelBufferedSort,0,11740
100000,Random,4,ParallelBufferedSort,1,15373
100000,Random,4,ParallelBufferedSort,2,38600
100000,Random,4,ParallelBufferedSort,3,109225
100000,Random,4,ParallelBufferedSort,4,233511
100000,Random,4,ParallelBufferedSort,5,398546
100000,Random,4,ParallelBufferedSort,6,657803
100000,Random,4,ParallelBufferedSort,7,1029969
100000,Random,4,ParallelBufferedSort,8,1498768
100000,Random,4,ParallelBufferedSort,9,2110735
100000,Random,4,ParallelBufferedSort,10,2873358
100000,Random,4,ParallelRadixSort,0,16125
100000,Random,4,ParallelRadixSort,1,23509
100000,Random,4,ParallelRadixSort,2,55582
100000,Random,4,ParallelRadixSort,3,154766
100000,Random,4,ParallelRadixSort,4,321333
100000,Random,4,ParallelRadixSort,5,597951
100000,Random,4,ParallelRadixSort,6,1009940
100000,Random,4,ParallelRadixSort,7,1581116
100000,Random,4,ParallelRadixSort,8,2350256
100000,Random,4,ParallelRadixSort,9,3334285
100000,Random,4,ParallelRadixSort,10,4560847
100000,Random,4,StdSort,0,44571
100000,Random,4,StdSort,1,62608
100000,Random,4,StdSort,2,174066
100000,Random,4,StdSort,3,502485
100000,Random,4,StdSort,4,1049983
100000,Random,4,StdSort,5,1949577
100000,Random,4,StdSort,6,3288676
100000,Random,4,StdSort,7,5161264
100000,Random,4,StdSort,8,7651928
100000,Random,4,StdSort,9,10850303
100000,Random,4,StdSort,10,14846441
100000,Random,5,ParallelSort,0,12031
100000,Random,5,ParallelSort,1,15500
100000,Random,5,ParallelSort,2,38746
100000,Random,5,ParallelSort,3,110208
100000,Random,5,ParallelSort,4,227831
100000,Random,5,ParallelSort,5,430331
100000,Random,5,ParallelSort,6,707894
100000,Random,5,ParallelSort,7,1101427
100000,Random,5,ParallelSort,8,1631685
100000,Random,5,ParallelSort,9,2317509
100000,Random,5,ParallelSort,10,3171795
100000,Random,5,ParallelBufferedSort,0,10568
100000,Random,5,ParallelBufferedSort,1,13338
100000,Random,5,ParallelBufferedSort,2,31917
100000,Random,5,ParallelBufferedSort,3,94162
100000,Random,5,ParallelBufferedSort,4,194943
100000,Random,5,ParallelBufferedSort,5,343659
100000,Random,5,ParallelBufferedSort,6,584691
100000,Random,5,ParallelBufferedSort,7,912861
100000,Random,5,ParallelBufferedSort,8,1372168
100000,Random,5,ParallelBufferedSort,9,1927510
100000,Random,5,ParallelBufferedSort,10,2618086
100000,Random,5,ParallelRadixSort,0,29777
100000,Random,5,ParallelRadixSort,1,43939
100000,Random,5,ParallelRadixSort,2,103968
100000,Random,5,ParallelRadixSort,3,290470
100000,Random,5,ParallelRadixSort,4,603012
100000,Random,5,ParallelRadixSort,5,1119040
100000,Random,5,ParallelRadixSort,6,1886738
100000,Random,5,ParallelRadixSort,7,2962205
100000,Random,5,ParallelRadixSort,8,4393087
100000,Random,5,ParallelRadixSort,9,6234663
100000,Random,5,ParallelRadixSort,10,8523790
100000,Random,5,StdSort,0,44447
100000,Random,5,StdSort,1,62597
100000,Random,5,StdSort,2,173967
100000,Random,5,StdSort,3,502007
100000,Random,5,StdSort,4,1048897
100000,Random,5,StdSort,5,1945987
100000,Random,5,StdSort,6,3286795
100000,Random,5,StdSort,7,5158114
100000,Random,5,StdSort,8,7643600
100000,Random,5,StdSort,9,10839199
100000,Random,5,StdSort,10,14831262
100000,Random,6,ParallelSort,0,12771
100000,Random,6,ParallelSort,1,16727
100000,Random,6,ParallelSort,2,40410
100000,Random,6,ParallelSort,3,116542
100000,Random,6,ParallelSort,4,244028
100000,Random,6,ParallelSort,5,457568
100000,Random,6,ParallelSort,6,765556
100000,Random,6,ParallelSort,7,1201017
100000,Random,6,ParallelSort,8,1783818
100000,Random,6,ParallelSort,9,2534690
100000,Random,6,ParallelSort,10,3450422
100000,Random,6,ParallelBufferedSort,0,9367
100000,Random,6,ParallelBufferedSort,1,12080
100000,Random,6,ParallelBufferedSort,2,28105
100000,Random,6,ParallelBufferedSort,3,85193
100000,Random,6,ParallelBufferedSort,4,173097
100000,Random,6,ParallelBufferedSort,5,311740
100000,Random,6,ParallelBufferedSort,6,525846
100000,Random,6,ParallelBufferedSort,7,836467
100000,Random,6,ParallelBufferedSort,8,1200369
100000,Random,6,ParallelBufferedSort,9,1697898
100000,Random,6,ParallelBufferedSort,10,2314991
100000,Random,6,ParallelRadixSort,0,29679
100000,Random,6,ParallelRadixSort,1,43445
100000,Random,6,ParallelRadixSort,2,103395
100000,Random,6,ParallelRadixSort,3,288561
100000,Random,6,ParallelRadixSort,4,596998
100000,Random,6,ParallelRadixSort,5,1110402
100000,Random,6,ParallelRadixSort,6,1878660
100000,Random,6,ParallelRadixSort,7,2935154
100000,Random,6,ParallelRadixSort,8,4362075
100000,Random,6,ParallelRadixSort,9,6190437
100000,Random,6,ParallelRadixSort,10,8484022
100000,Random,6,StdSort,0,45253
100000,Random,6,StdSort,1,63571
100000,Random,6,StdSort,2,177032
100000,Random,6,StdSort,3,512395
100000,Random,6,StdSort,4,1071471
100000,Random,6,StdSort,5,1986312
100000,Random,6,StdSort,6,3355358
100000,Random,6,StdSort,7,5265791
100000,Random,6,StdSort,8,7803477
100000,Random,6,StdSort,9,11064793
100000,Random,6,StdSort,10,15140017
100000,Random,7,ParallelSort,0,10017
100000,Random,7,ParallelSort,1,12796
100000,Random,7,ParallelSort,2,30709
100000,Random,7,ParallelSort,3,86358
100000,Random,7,ParallelSort,4,180601
100000,Random,7,ParallelSort,5,339386
100000,Random,7,ParallelSort,6,583263
100000,Random,7,ParallelSort,7,895428
100000,Random,7,ParallelSort,8,1321977
100000,Random,7,ParallelSort,9,1876495
100000,Random,7,ParallelSort,10,2588439
100000,Random,7,ParallelBufferedSort,0,8279
100000,Random,7,ParallelBufferedSort,1,11325
100000,Random,7,ParallelBufferedSort,2,26530
100000,Random,7,ParallelBufferedSort,3,69328
100000,Random,7,ParallelBufferedSort,4,147180
100000,Random,7,ParallelBufferedSort,5,277085
100000,Random,7,ParallelBufferedSort,6,449293
100000,Random,7,ParallelBufferedSort,7,697595
100000,Random,7,ParallelBufferedSort,8,1034386
100000,Random,7,ParallelBufferedSort,9,1470912
100000,Random,7,ParallelBufferedSort,10,2005573
100000,Random,7,ParallelRadixSort,0,29841
100000,Random,7,ParallelRadixSort,1,43791
100000,Random,7,ParallelRadixSort,2,103131
100000,Random,7,ParallelRadixSort,3,287240
100000,Random,7,ParallelRadixSort,4,595967
100000,Random,7,ParallelRadixSort,5,1105936
100000,Random,7,ParallelRadixSort,6,1867407
100000,Random,7,ParallelRadixSort,7,2927650
100000,Random,7,ParallelRadixSort,8,4335684
100000,Random,7,ParallelRadixSort,9,6158763
100000,Random,7,ParallelRadixSort,10,8429623
100000,Random,7,StdSort,0,44104
100000,Random,7,StdSort,1,62104
100000,Random,7,StdSort,2,172459
100000,Random,7,StdSort,3,496759
100000,Random,7,StdSort,4,1038064
100000,Random,7,StdSort,5,1925388
100000,Random,7,StdSort,6,3249847
100000,Random,7,StdSort,7,5104650
100000,Random,7,StdSort,8,7564456
100000,Random,7,StdSort,9,10724101
100000,Random,7,StdSort,10,14676233
100000,Random,8,ParallelSort,0,10386
100000,Random,8,ParallelSort,1,13229
100000,Random,8,ParallelSort,2,34550
100000,Random,8,ParallelSort,3,92594
100000,Random,8,ParallelSort,4,192990
100000,Random,8,ParallelSort,5,360155
100000,Random,8,ParallelSort,6,608986
100000,Random,8,ParallelSort,7,964262
100000,Random,8,ParallelSort,8,1420281
100000,Random,8,ParallelSort,9,2026824
100000,Random,8,ParallelSort,10,2751053
100000,Random,8,ParallelBufferedSort,0,8484
100000,Random,8,ParallelBufferedSort,1,12713
100000,Random,8,ParallelBufferedSort,2,26474
100000,Random,8,ParallelBufferedSort,3,65376
100000,Random,8,ParallelBufferedSort,4,127200
100000,Random,8,ParallelBufferedSort,5,226719
100000,Random,8,ParallelBufferedSort,6,384918
100000,Random,8,ParallelBufferedSort,7,593042
100000,Random,8,ParallelBufferedSort,8,892767
100000,Random,8,ParallelBufferedSort,9,1233389
100000,Random,8,ParallelBufferedSort,10,1730197
100000,Random,8,ParallelRadixSort,0,16268
100000,Random,8,ParallelRadixSort,1,23758
100000,Random,8,ParallelRadixSort,2,55386
100000,Random,8,ParallelRadixSort,3,150391
100000,Random,8,ParallelRadixSort,4,309997
100000,Random,8,ParallelRadixSort,5,576475
100000,Random,8,ParallelRadixSort,6,974580
100000,Random,8,ParallelRadixSort,7,1517860
100000,Random,8,ParallelRadixSort,8,2259471
100000,Random,8,ParallelRadixSort,9,3175395
100000,Random,8,ParallelRadixSort,10,4382942
100000,Random,8,StdSort,0,44662
100000,Random,8,StdSort,1,63010
100000,Random,8,StdSort,2,174962
100000,Random,8,StdSort,3,504435
100000,Random,8,StdSort,4,1054369
100000,Random,8,StdSort,5,1955522
100000,Random,8,StdSort,6,3303624
100000,Random,8,StdSort,7,5184916
100000,Random,8,StdSort,8,7683310
100000,Random,8,StdSort,9,10891707
100000,Random,8,StdSort,10,14906919
100000,PreSorted,1,ParallelSort,0,19490
100000,PreSorted,1,ParallelSort,1,28064
100000,PreSorted,1,ParallelSort,2,86156
100000,PreSorted,1,ParallelSort,3,268719
100000,PreSorted,1,ParallelSort,4,565865
100000,PreSorted,1,ParallelSort,5,1053142
100000,PreSorted,1,ParallelSort,6,1781367
100000,PreSorted,1,ParallelSort,7,2800258
100000,PreSorted,1,ParallelSort,8,4151753
100000,PreSorted,1,ParallelSort,9,5887864
100000,PreSorted,1,ParallelSort,10,8059119
100000,PreSorted,1,ParallelBufferedSort,0,19498
100000,PreSorted,1,ParallelBufferedSort,1,28080
100000,PreSorted,1,ParallelBufferedSort,2,86128
100000,PreSorted,1,ParallelBufferedSort,3,268723
100000,PreSorted,1,ParallelBufferedSort,4,565825
100000,PreSorted,1,ParallelBufferedSort,5,1053618
100000,PreSorted,1,ParallelBufferedSort,6,1781226
100000,PreSorted,1,ParallelBufferedSort,7,2800292
100000,PreSorted,1,ParallelBufferedSort,8,4152036
100000,PreSorted,1,ParallelBufferedSort,9,5888872
100000,PreSorted,1,ParallelBufferedSort,10,8058660
100000,PreSorted,1,ParallelRadixSort,0,30811
100000,PreSorted,1,ParallelRadixSort,1,47095
100000,PreSorted,1,ParallelRadixSort,2,116871
100000,PreSorted,1,ParallelRadixSort,3,335628
100000,PreSorted,1,ParallelRadixSort,4,704782
100000,PreSorted,1,ParallelRadixSort,5,1313441
100000,PreSorted,1,ParallelRadixSort,6,2221417
100000,PreSorted,1,ParallelRadixSort,7,3489790
100000,PreSorted,1,ParallelRadixSort,8,5175270
100000,PreSorted,1,ParallelRadixSort,9,7347118
100000,PreSorted,1,ParallelRadixSort,10,10052782
100000,PreSorted,1,StdSort,0,19481
100000,PreSorted,1,StdSort,1,28032
100000,PreSorted,1,StdSort,2,85912
100000,PreSorted,1,StdSort,3,268717
100000,PreSorted,1,StdSort,4,566167
100000,PreSorted,1,StdSort,5,1053831
100000,PreSorted,1,StdSort,6,1782383
100000,PreSorted,1,StdSort,7,2800375
100000,PreSorted,1,StdSort,8,4151789
100000,PreSorted,1,StdSort,9,5887247
100000,PreSorted,1,StdSort,10,8057649
100000,PreSorted,2,ParallelSort,0,9405
100000,PreSorted,2,ParallelSort,1,13379
100000,PreSorted,2,ParallelSort,2,38577
100000,PreSorted,2,ParallelSort,3,118995
100000,PreSorted,2,ParallelSort,4,248426
100000,PreSorted,2,ParallelSort,5,461541
100000,PreSorted,2,ParallelSort,6,779193
100000,PreSorted,2,ParallelSort,7,1223141
100000,PreSorted,2,ParallelSort,8,1814281
100000,PreSorted,2,ParallelSort,9,2571253
100000,PreSorted,2,ParallelSort,10,3519002
100000,PreSorted,2,ParallelBufferedSort,0,8634
100000,PreSorted,2,ParallelBufferedSort,1,11251
100000,PreSorted,2,ParallelBufferedSort,2,30846
100000,PreSorted,2,ParallelBufferedSort,3,91627
100000,PreSorted,2,ParallelBufferedSort,4,190119
100000,PreSorted,2,ParallelBufferedSort,5,352209
100000,PreSorted,2,ParallelBufferedSort,6,593815
100000,PreSorted,2,ParallelBufferedSort,7,931320
100000,PreSorted,2,ParallelBufferedSort,8,1380327
100000,PreSorted,2,ParallelBufferedSort,9,1957429
100000,PreSorted,2,ParallelBufferedSort,10,2677741
100000,PreSorted,2,ParallelRadixSort,0,16657
100000,PreSorted,2,ParallelRadixSort,1,24654
100000,PreSorted,2,ParallelRadixSort,2,59407
100000,PreSorted,2,ParallelRadixSort,3,168893
100000,PreSorted,2,ParallelRadixSort,4,353909
100000,PreSorted,2,ParallelRadixSort,5,659127
100000,PreSorted,2,ParallelRadixSort,6,1115528
100000,PreSorted,2,ParallelRadixSort,7,1751195
100000,PreSorted,2,ParallelRadixSort,8,2597721
100000,PreSorted,2,ParallelRadixSort,9,3685642
100000,PreSorted,2,ParallelRadixSort,10,5041899
100000,PreSorted,2,StdSort,0,19489
100000,PreSorted,2,StdSort,1,28025
100000,PreSorted,2,StdSort,2,86142
100000,PreSorted,2,StdSort,3,268711
100000,PreSorted,2,StdSort,4,565860
100000,PreSorted,2,StdSort,5,1053518
100000,PreSorted,2,StdSort,6,1781991
100000,PreSorted,2,StdSort,7,2799193
100000,PreSorted,2,StdSort,8,4150592
100000,PreSorted,2,StdSort,9,5888197
100000,PreSorted,2,StdSort,10,8057524
100000,PreSorted,3,ParallelSort,0,6897
100000,PreSorted,3,ParallelSort,1,9797
100000,PreSorted,3,ParallelSort,2,28245
100000,PreSorted,3,ParallelSort,3,87279
100000,PreSorted,3,ParallelSort,4,182241
100000,PreSorted,3,ParallelSort,5,338592
100000,PreSorted,3,ParallelSort,6,571733
100000,PreSorted,3,ParallelSort,7,897414
100000,PreSorted,3,ParallelSort,8,1332157
100000,PreSorted,3,ParallelSort,9,1887216
100000,PreSorted,3,ParallelSort,10,2583077
100000,PreSorted,3,ParallelBufferedSort,0,6265
100000,PreSorted,3,ParallelBufferedSort,1,8076
100000,PreSorted,3,ParallelBufferedSort,2,20790
100000,PreSorted,3,ParallelBufferedSort,3,60133
100000,PreSorted,3,ParallelBufferedSort,4,124047
100000,PreSorted,3,ParallelBufferedSort,5,229217
100000,PreSorted,3,ParallelBufferedSort,6,386085
100000,PreSorted,3,ParallelBufferedSort,7,605309
100000,PreSorted,3,ParallelBufferedSort,8,896602
100000,PreSorted,3,ParallelBufferedSort,9,1271555
100000,PreSorted,3,ParallelBufferedSort,10,1739811
100000,PreSorted,3,ParallelRadixSort,0,29866
100000,PreSorted,3,ParallelRadixSort,1,44272
100000,PreSorted,3,ParallelRadixSort,2,106412
100000,PreSorted,3,ParallelRadixSort,3,298311
100000,PreSorted,3,ParallelRadixSort,4,621375
100000,PreSorted,3,ParallelRadixSort,5,1154604
100000,PreSorted,3,ParallelRadixSort,6,1947950
100000,PreSorted,3,ParallelRadixSort,7,3056783
100000,PreSorted,3,ParallelRadixSort,8,4532363
100000,PreSorted,3,ParallelRadixSort,9,6425328
100000,PreSorted,3,ParallelRadixSort,10,8791452
100000,PreSorted,3,StdSort,0,19489
100000,PreSorted,3,StdSort,1,28036
100000,PreSorted,3,StdSort,2,86166
100000,PreSorted,3,StdSort,3,268751
100000,PreSorted,3,StdSort,4,565960
100000,PreSorted,3,StdSort,5,1054828
100000,PreSorted,3,StdSort,6,1784262
100000,PreSorted,3,StdSort,7,2802525
100000,PreSorted,3,StdSort,8,4150957
100000,PreSorted,3,StdSort,9,5887730
100000,PreSorted,3,StdSort,10,8057945
100000,PreSorted,4,ParallelSort,0,6982
100000,PreSorted,4,ParallelSort,1,9831
100000,PreSorted,4,ParallelSort,2,28186
100000,PreSorted,4,ParallelSort,3,87413
100000,PreSorted,4,ParallelSort,4,182177
100000,PreSorted,4,ParallelSort,5,342154
100000,PreSorted,4,ParallelSort,6,591732
100000,PreSorted,4,ParallelSort,7,902859
100000,PreSorted,4,ParallelSort,8,1336752
100000,PreSorted,4,ParallelSort,9,1778703
100000,PreSorted,4,ParallelSort,10,2594833
100000,PreSorted,4,ParallelBufferedSort,0,5933
100000,PreSorted,4,ParallelBufferedSort,1,7609
100000,PreSorted,4,ParallelBufferedSort,2,20369
100000,PreSorted,4,ParallelBufferedSort,3,54971
100000,PreSorted,4,ParallelBufferedSort,4,123884
100000,PreSorted,4,ParallelBufferedSort,5,208207
100000,PreSorted,4,ParallelBufferedSort,6,354610
100000,PreSorted,4,ParallelBufferedSort,7,548883
100000,PreSorted,4,ParallelBufferedSort,8,826559
100000,PreSorted,4,ParallelBufferedSort,9,1151005
100000,PreSorted,4,ParallelBufferedSort,10,1574767
100000,PreSorted,4,ParallelRadixSort,0,15889
100000,PreSorted,4,ParallelRadixSort,1,23305
100000,PreSorted,4,ParallelRadixSort,2,55670
100000,PreSorted,4,ParallelRadixSort,3,154865
100000,PreSorted,4,ParallelRadixSort,4,322978
100000,PreSorted,4,ParallelRadixSort,5,599599
100000,PreSorted,4,ParallelRadixSort,6,1012662
100000,PreSorted,4,ParallelRadixSort,7,1585461
100000,PreSorted,4,ParallelRadixSort,8,2356104
100000,PreSorted,4,ParallelRadixSort,9,3341527
100000,PreSorted,4,ParallelRadixSort,10,4571327
100000,PreSorted,4,StdSort,0,19497
100000,PreSorted,4,StdSort,1,28032
100000,PreSorted,4,StdSort,2,86144
100000,PreSorted,4,StdSort,3,268741
100000,PreSorted,4,StdSort,4,565863
100000,PreSorted,4,StdSort,5,1054513
100000,PreSorted,4,StdSort,6,1781625
100000,PreSorted,4,StdSort,7,2798871
100000,PreSorted,4,StdSort,8,4150781
100000,PreSorted,4,StdSort,9,5887164
100000,PreSorted,4,StdSort,10,8058214
100000,PreSorted,5,ParallelSort,0,6270
100000,PreSorted,5,ParallelSort,1,8854
100000,PreSorted,5,ParallelSort,2,25282
100000,PreSorted,5,ParallelSort,3,79031
100000,PreSorted,5,ParallelSort,4,165330
100000,PreSorted,5,ParallelSort,5,302220
100000,PreSorted,5,ParallelSort,6,514148
100000,PreSorted,5,ParallelSort,7,799289
100000,PreSorted,5,ParallelSort,8,1181944
100000,PreSorted,5,ParallelSort,9,1676542
100000,PreSorted,5,ParallelSort,10,2217883
100000,PreSorted,5,ParallelBufferedSort,0,5451
100000,PreSorted,5,ParallelBufferedSort,1,6657
100000,PreSorted,5,ParallelBufferedSort,2,17272
100000,PreSorted,5,ParallelBufferedSort,3,48024
100000,PreSorted,5,ParallelBufferedSort,4,100102
100000,PreSorted,5,ParallelBufferedSort,5,181499
100000,PreSorted,5,ParallelBufferedSort,6,305498
100000,PreSorted,5,ParallelBufferedSort,7,478989
100000,PreSorted,5,ParallelBufferedSort,8,709611
100000,PreSorted,5,ParallelBufferedSort,9,1005205
100000,PreSorted,5,ParallelBufferedSort,10,1375023
100000,PreSorted,5,ParallelRadixSort,0,29669
100000,PreSorted,5,ParallelRadixSort,1,43599
100000,PreSorted,5,ParallelRadixSort,2,104044
100000,PreSorted,5,ParallelRadixSort,3,290714
100000,PreSorted,5,ParallelRadixSort,4,604320
100000,PreSorted,5,ParallelRadixSort,5,1121586
100000,PreSorted,5,ParallelRadixSort,6,1892732
100000,PreSorted,5,ParallelRadixSort,7,2968642
100000,PreSorted,5,ParallelRadixSort,8,4405085
100000,PreSorted,5,ParallelRadixSort,9,6243152
100000,PreSorted,5,ParallelRadixSort,10,8546445
100000,PreSorted,5,StdSort,0,19482
100000,PreSorted,5,StdSort,1,28031
100000,PreSorted,5,StdSort,2,86158
100000,PreSorted,5,StdSort,3,268717
100000,PreSorted,5,StdSort,4,566093
100000,PreSorted,5,StdSort,5,1053260
100000,PreSorted,5,StdSort,6,1781075
100000,PreSorted,5,StdSort,7,2798940
100000,PreSorted,5,StdSort,8,4151724
100000,PreSorted,5,StdSort,9,5887159
100000,PreSorted,5,StdSort,10,8058094
100000,PreSorted,6,ParallelSort,0,5725
100000,PreSorted,6,ParallelSort,1,8101
100000,PreSorted,6,ParallelSort,2,23083
100000,PreSorted,6,ParallelSort,3,72357
100000,PreSorted,6,ParallelSort,4,150990
100000,PreSorted,6,ParallelSort,5,274956
100000,PreSorted,6,ParallelSort,6,460382
100000,PreSorted,6,ParallelSort,7,720923
100000,PreSorted,6,ParallelSort,8,1069522
100000,PreSorted,6,ParallelSort,9,1516096
100000,PreSorted,6,ParallelSort,10,2074606
100000,PreSorted,6,ParallelBufferedSort,0,5243
100000,PreSorted,6,ParallelBufferedSort,1,6117
100000,PreSorted,6,ParallelBufferedSort,2,15281
100000,PreSorted,6,ParallelBufferedSort,3,44826
100000,PreSorted,6,ParallelBufferedSort,4,89348
100000,PreSorted,6,ParallelBufferedSort,5,164430
100000,PreSorted,6,ParallelBufferedSort,6,273451
100000,PreSorted,6,ParallelBufferedSort,7,429227
100000,PreSorted,6,ParallelBufferedSort,8,624478
100000,PreSorted,6,ParallelBufferedSort,9,885457
100000,PreSorted,6,ParallelBufferedSort,10,1210258
100000,PreSorted,6,ParallelRadixSort,0,29381
100000,PreSorted,6,ParallelRadixSort,1,43381
100000,PreSorted,6,ParallelRadixSort,2,103137
100000,PreSorted,6,ParallelRadixSort,3,288799
100000,PreSorted,6,ParallelRadixSort,4,600801
100000,PreSorted,6,ParallelRadixSort,5,1115046
100000,PreSorted,6,ParallelRadixSort,6,1883091
100000,PreSorted,6,ParallelRadixSort,7,2953000
100000,PreSorted,6,ParallelRadixSort,8,4364268
100000,PreSorted,6,ParallelRadixSort,9,6189053
100000,PreSorted,6,ParallelRadixSort,10,8494099
100000,PreSorted,6,StdSort,0,19493
100000,PreSorted,6,StdSort,1,28033
100000,PreSorted,6,StdSort,2,86534
100000,PreSorted,6,StdSort,3,269298
100000,PreSorted,6,StdSort,4,568123
100000,PreSorted,6,StdSort,5,1055939
100000,PreSorted,6,StdSort,6,1781531
100000,PreSorted,6,StdSort,7,2798508
100000,PreSorted,6,StdSort,8,4150463
100000,PreSorted,6,StdSort,9,5887247
100000,PreSorted,6,StdSort,10,8056683
100000,PreSorted,7,ParallelSort,0,5094
100000,PreSorted,7,ParallelSort,1,7320
100000,PreSorted,7,ParallelSort,2,19430
100000,PreSorted,7,ParallelSort,3,60233
100000,PreSorted,7,ParallelSort,4,133538
100000,PreSorted,7,ParallelSort,5,259412
100000,PreSorted,7,ParallelSort,6,394836
100000,PreSorted,7,ParallelSort,7,644048
100000,PreSorted,7,ParallelSort,8,955310
100000,PreSorted,7,ParallelSort,9,1408906
100000,PreSorted,7,ParallelSort,10,1830004
100000,PreSorted,7,ParallelBufferedSort,0,4845
100000,PreSorted,7,ParallelBufferedSort,1,5448
100000,PreSorted,7,ParallelBufferedSort,2,12012
100000,PreSorted,7,ParallelBufferedSort,3,41072
100000,PreSorted,7,ParallelBufferedSort,4,86018
100000,PreSorted,7,ParallelBufferedSort,5,136230
100000,PreSorted,7,ParallelBufferedSort,6,209233
100000,PreSorted,7,ParallelBufferedSort,7,352661
100000,PreSorted,7,ParallelBufferedSort,8,513845
100000,PreSorted,7,ParallelBufferedSort,9,779440
100000,PreSorted,7,ParallelBufferedSort,10,966469
100000,PreSorted,7,ParallelRadixSort,0,29614
100000,PreSorted,7,ParallelRadixSort,1,43460
100000,PreSorted,7,ParallelRadixSort,2,103083
100000,PreSorted,7,ParallelRadixSort,3,287573
100000,PreSorted,7,ParallelRadixSort,4,598007
100000,PreSorted,7,ParallelRadixSort,5,1107328
100000,PreSorted,7,ParallelRadixSort,6,1869830
100000,PreSorted,7,ParallelRadixSort,7,2934061
100000,PreSorted,7,ParallelRadixSort,8,4348038
100000,PreSorted,7,ParallelRadixSort,9,6174811
100000,PreSorted,7,ParallelRadixSort,10,8437836
100000,PreSorted,7,StdSort,0,19491
100000,PreSorted,7,StdSort,1,28039
100000,PreSorted,7,StdSort,2,86141
100000,PreSorted,7,StdSort,3,268817
100000,PreSorted,7,StdSort,4,566315
100000,PreSorted,7,StdSort,5,1053253
100000,PreSorted,7,StdSort,6,1782042
100000,PreSorted,7,StdSort,7,2799099
100000,PreSorted,7,StdSort,8,4151228
100000,PreSorted,7,StdSort,9,5886841
100000,PreSorted,7,StdSort,10,8054997
100000,PreSorted,8,ParallelSort,0,5063
100000,PreSorted,8,ParallelSort,1,7056
100000,PreSorted,8,ParallelSort,2,19410
100000,PreSorted,8,ParallelSort,3,60338
100000,PreSorted,8,ParallelSort,4,125735
100000,PreSorted,8,ParallelSort,5,236846
100000,PreSorted,8,ParallelSort,6,400252
100000,PreSorted,8,ParallelSort,7,631791
100000,PreSorted,8,ParallelSort,8,919199
100000,PreSorted,8,ParallelSort,9,1396290
100000,PreSorted,8,ParallelSort,10,1817391
100000,PreSorted,8,ParallelBufferedSort,0,4905
100000,PreSorted,8,ParallelBufferedSort,1,6025
100000,PreSorted,8,ParallelBufferedSort,2,13551
100000,PreSorted,8,ParallelBufferedSort,3,32715
100000,PreSorted,8,ParallelBufferedSort,4,63979
100000,PreSorted,8,ParallelBufferedSort,5,109121
100000,PreSorted,8,ParallelBufferedSort,6,170735
100000,PreSorted,8,ParallelBufferedSort,7,275991
100000,PreSorted,8,ParallelBufferedSort,8,403136
100000,PreSorted,8,ParallelBufferedSort,9,562399
100000,PreSorted,8,ParallelBufferedSort,10,780022
100000,PreSorted,8,ParallelRadixSort,0,16158
100000,PreSorted,8,ParallelRadixSort,1,23588
100000,PreSorted,8,ParallelRadixSort,2,55230
100000,PreSorted,8,ParallelRadixSort,3,149793
100000,PreSorted,8,ParallelRadixSort,4,311559
100000,PreSorted,8,ParallelRadixSort,5,570010
100000,PreSorted,8,ParallelRadixSort,6,974115
100000,PreSorted,8,ParallelRadixSort,7,1510653
100000,PreSorted,8,ParallelRadixSort,8,2236350
100000,PreSorted,8,ParallelRadixSort,9,3203608
100000,PreSorted,8,ParallelRadixSort,10,4394132
100000,PreSorted,8,StdSort,0,19481
100000,PreSorted,8,StdSort,1,28033
100000,PreSorted,8,StdSort,2,86141
100000,PreSorted,8,StdSort,3,268711
100000,PreSorted,8,StdSort,4,565933
100000,PreSorted,8,StdSort,5,1053264
100000,PreSorted,8,StdSort,6,1781661
100000,PreSorted,8,StdSort,7,2799399
100000,PreSorted,8,StdSort,8,4152041
100000,PreSorted,8,StdSort,9,5887811
100000,PreSorted,8,StdSort,10,8056481
100000,NearlySorted,1,ParallelSort,0,19486
100000,NearlySorted,1,ParallelSort,1,28067
100000,NearlySorted,1,ParallelSort,2,84511
100000,NearlySorted,1,ParallelSort,3,268743
100000,NearlySorted,1,ParallelSort,4,565868
100000,NearlySorted,1,ParallelSort,5,1053989
100000,NearlySorted,1,ParallelSort,6,1782101
100000,NearlySorted,1,ParallelSort,7,2801114
100000,NearlySorted,1,ParallelSort,8,4155522
100000,NearlySorted,1,ParallelSort,9,5889077
100000,NearlySorted,1,ParallelSort,10,8058964
100000,NearlySorted,1,ParallelBufferedSort,0,19491
100000,NearlySorted,1,ParallelBufferedSort,1,28074
100000,NearlySorted,1,ParallelBufferedSort,2,84509
100000,NearlySorted,1,ParallelBufferedSort,3,268728
100000,NearlySorted,1,ParallelBufferedSort,4,565804
100000,NearlySorted,1,ParallelBufferedSort,5,1053004
100000,NearlySorted,1,ParallelBufferedSort,6,1782156
100000,NearlySorted,1,ParallelBufferedSort,7,2799571
100000,NearlySorted,1,ParallelBufferedSort,8,4151293
100000,NearlySorted,1,ParallelBufferedSort,9,5888254
100000,NearlySorted,1,ParallelBufferedSort,10,8057456
100000,NearlySorted,1,ParallelRadixSort,0,30828
100000,NearlySorted,1,ParallelRadixSort,1,47088
100000,NearlySorted,1,ParallelRadixSort,2,116848
100000,NearlySorted,1,ParallelRadixSort,3,335614
100000,NearlySorted,1,ParallelRadixSort,4,704739
100000,NearlySorted,1,ParallelRadixSort,5,1313517
100000,NearlySorted,1,ParallelRadixSort,6,2221573
100000,NearlySorted,1,ParallelRadixSort,7,3488993
100000,NearlySorted,1,ParallelRadixSort,8,5178039
100000,NearlySorted,1,ParallelRadixSort,9,7347380
100000,NearlySorted,1,ParallelRadixSort,10,10050997
100000,NearlySorted,1,StdSort,0,19515
100000,NearlySorted,1,StdSort,1,28075
100000,NearlySorted,1,StdSort,2,84495
100000,NearlySorted,1,StdSort,3,268745
100000,NearlySorted,1,StdSort,4,565899
100000,NearlySorted,1,StdSort,5,1054802
100000,NearlySorted,1,StdSort,6,1781513
100000,NearlySorted,1,StdSort,7,2799302
100000,NearlySorted,1,StdSort,8,4149682
100000,NearlySorted,1,StdSort,9,5885960
100000,NearlySorted,1,StdSort,10,8056848
100000,NearlySorted,2,ParallelSort,0,9275
100000,NearlySorted,2,ParallelSort,1,13224
100000,NearlySorted,2,ParallelSort,2,38463
100000,NearlySorted,2,ParallelSort,3,118841
100000,NearlySorted,2,ParallelSort,4,248412
100000,NearlySorted,2,ParallelSort,5,461424
100000,NearlySorted,2,ParallelSort,6,779113
100000,NearlySorted,2,ParallelSort,7,1222546
100000,NearlySorted,2,ParallelSort,8,1813980
100000,NearlySorted,2,ParallelSort,9,2571163
100000,NearlySorted,2,ParallelSort,10,3520271
100000,NearlySorted,2,ParallelBufferedSort,0,8279
100000,NearlySorted,2,ParallelBufferedSort,1,10880
100000,NearlySorted,2,ParallelBufferedSort,2,30327
100000,NearlySorted,2,ParallelBufferedSort,3,91151
100000,NearlySorted,2,ParallelBufferedSort,4,189644
100000,NearlySorted,2,ParallelBufferedSort,5,351768
100000,NearlySorted,2,ParallelBufferedSort,6,593174
100000,NearlySorted,2,ParallelBufferedSort,7,931092
100000,NearlySorted,2,ParallelBufferedSort,8,1379903
100000,NearlySorted,2,ParallelBufferedSort,9,1956063
100000,NearlySorted,2,ParallelBufferedSort,10,2678175
100000,NearlySorted,2,ParallelRadixSort,0,16392
100000,NearlySorted,2,ParallelRadixSort,1,24362
100000,NearlySorted,2,ParallelRadixSort,2,59212
100000,NearlySorted,2,ParallelRadixSort,3,168790
100000,NearlySorted,2,ParallelRadixSort,4,353745
100000,NearlySorted,2,ParallelRadixSort,5,659356
100000,NearlySorted,2,ParallelRadixSort,6,1114713
100000,NearlySorted,2,ParallelRadixSort,7,1749797
100000,NearlySorted,2,ParallelRadixSort,8,2598572
100000,NearlySorted,2,ParallelRadixSort,9,3685079
100000,NearlySorted,2,ParallelRadixSort,10,5042019
100000,NearlySorted,2,StdSort,0,19501
100000,NearlySorted,2,StdSort,1,28048
100000,NearlySorted,2,StdSort,2,84434
100000,NearlySorted,2,StdSort,3,268850
100000,NearlySorted,2,StdSort,4,566157
100000,NearlySorted,2,StdSort,5,1054298
100000,NearlySorted,2,StdSort,6,1781583
100000,NearlySorted,2,StdSort,7,2800661
100000,NearlySorted,2,StdSort,8,4152048
100000,NearlySorted,2,StdSort,9,5888052
100000,NearlySorted,2,StdSort,10,8057873
100000,NearlySorted,3,ParallelSort,0,6859
100000,NearlySorted,3,ParallelSort,1,9777
100000,NearlySorted,3,ParallelSort,2,28210
100000,NearlySorted,3,ParallelSort,3,87228
100000,NearlySorted,3,ParallelSort,4,182218
100000,NearlySorted,3,ParallelSort,5,338635
100000,NearlySorted,3,ParallelSort,6,571809
100000,NearlySorted,3,ParallelSort,7,898083
100000,NearlySorted,3,ParallelSort,8,1333594
100000,NearlySorted,3,ParallelSort,9,1915074
100000,NearlySorted,3,ParallelSort,10,2614076
100000,NearlySorted,3,ParallelBufferedSort,0,6008
100000,NearlySorted,3,ParallelBufferedSort,1,7997
100000,NearlySorted,3,ParallelBufferedSort,2,20611
100000,NearlySorted,3,ParallelBufferedSort,3,60083
100000,NearlySorted,3,ParallelBufferedSort,4,123878
100000,NearlySorted,3,ParallelBufferedSort,5,229170
100000,NearlySorted,3,ParallelBufferedSort,6,385858
100000,NearlySorted,3,ParallelBufferedSort,7,606899
100000,NearlySorted,3,ParallelBufferedSort,8,897868
100000,NearlySorted,3,ParallelBufferedSort,9,1293488
100000,NearlySorted,3,ParallelBufferedSort,10,1739890
100000,NearlySorted,3,ParallelRadixSort,0,29769
100000,NearlySorted,3,ParallelRadixSort,1,43774
100000,NearlySorted,3,ParallelRadixSort,2,106247
100000,NearlySorted,3,ParallelRadixSort,3,298007
100000,NearlySorted,3,ParallelRadixSort,4,620959
100000,NearlySorted,3,ParallelRadixSort,5,1153409
100000,NearlySorted,3,ParallelRadixSort,6,1948149
100000,NearlySorted,3,ParallelRadixSort,7,3055972
100000,NearlySorted,3,ParallelRadixSort,8,4536661
100000,NearlySorted,3,ParallelRadixSort,9,6431053
100000,NearlySorted,3,ParallelRadixSort,10,8789670
100000,NearlySorted,3,StdSort,0,19481
100000,NearlySorted,3,StdSort,1,28110
100000,NearlySorted,3,StdSort,2,84507
100000,NearlySorted,3,StdSort,3,268713
100000,NearlySorted,3,StdSort,4,566754
100000,NearlySorted,3,StdSort,5,1054726
100000,NearlySorted,3,StdSort,6,1782220
100000,NearlySorted,3,StdSort,7,2798600
100000,NearlySorted,3,StdSort,8,4151311
100000,NearlySorted,3,StdSort,9,5887309
100000,NearlySorted,3,StdSort,10,8057400
100000,NearlySorted,4,ParallelSort,0,6925
100000,NearlySorted,4,ParallelSort,1,9832
100000,NearlySorted,4,ParallelSort,2,28231
100000,NearlySorted,4,ParallelSort,3,87335
100000,NearlySorted,4,ParallelSort,4,175849
100000,NearlySorted,4,ParallelSort,5,342430
100000,NearlySorted,4,ParallelSort,6,572219
100000,NearlySorted,4,ParallelSort,7,911175
100000,NearlySorted,4,ParallelSort,8,1292727
100000,NearlySorted,4,ParallelSort,9,1838428
100000,NearlySorted,4,ParallelSort,10,2580911
100000,NearlySorted,4,ParallelBufferedSort,0,6025
100000,NearlySorted,4,ParallelBufferedSort,1,7764
100000,NearlySorted,4,ParallelBufferedSort,2,20502
100000,NearlySorted,4,ParallelBufferedSort,3,59823
100000,NearlySorted,4,ParallelBufferedSort,4,124073
100000,NearlySorted,4,ParallelBufferedSort,5,217427
100000,NearlySorted,4,ParallelBufferedSort,6,365509
100000,NearlySorted,4,ParallelBufferedSort,7,575160
100000,NearlySorted,4,ParallelBufferedSort,8,812362
100000,NearlySorted,4,ParallelBufferedSort,9,1204023
100000,NearlySorted,4,ParallelBufferedSort,10,1647865
100000,NearlySorted,4,ParallelRadixSort,0,15855
100000,NearlySorted,4,ParallelRadixSort,1,23131
100000,NearlySorted,4,ParallelRadixSort,2,55485
100000,NearlySorted,4,ParallelRadixSort,3,154633
100000,NearlySorted,4,ParallelRadixSort,4,322032
100000,NearlySorted,4,ParallelRadixSort,5,597990
100000,NearlySorted,4,ParallelRadixSort,6,1009327
100000,NearlySorted,4,ParallelRadixSort,7,1584268
100000,NearlySorted,4,ParallelRadixSort,8,2355603
100000,NearlySorted,4,ParallelRadixSort,9,3328448
100000,NearlySorted,4,ParallelRadixSort,10,4569441
100000,NearlySorted,4,StdSort,0,19481
100000,NearlySorted,4,StdSort,1,28094
100000,NearlySorted,4,StdSort,2,84505
100000,NearlySorted,4,StdSort,3,268735
100000,NearlySorted,4,StdSort,4,566380
100000,NearlySorted,4,StdSort,5,1053596
100000,NearlySorted,4,StdSort,6,1781811
100000,NearlySorted,4,StdSort,7,2799515
100000,NearlySorted,4,StdSort,8,4151791
100000,NearlySorted,4,StdSort,9,5888250
100000,NearlySorted,4,StdSort,10,8060672
100000,NearlySorted,5,ParallelSort,0,6250
100000,NearlySorted,5,ParallelSort,1,8878
100000,NearlySorted,5,ParallelSort,2,25298
100000,NearlySorted,5,ParallelSort,3,78975
100000,NearlySorted,5,ParallelSort,4,165302
100000,NearlySorted,5,ParallelSort,5,300921
100000,NearlySorted,5,ParallelSort,6,512319
100000,NearlySorted,5,ParallelSort,7,802328
100000,NearlySorted,5,ParallelSort,8,1144574
100000,NearlySorted,5,ParallelSort,9,1676844
100000,NearlySorted,5,ParallelSort,10,2219496
100000,NearlySorted,5,ParallelBufferedSort,0,5448
100000,NearlySorted,5,ParallelBufferedSort,1,6681
100000,NearlySorted,5,ParallelBufferedSort,2,17358
100000,NearlySorted,5,ParallelBufferedSort,3,51482
100000,NearlySorted,5,ParallelBufferedSort,4,103320
100000,NearlySorted,5,ParallelBufferedSort,5,192678
100000,NearlySorted,5,ParallelBufferedSort,6,316469
100000,NearlySorted,5,ParallelBufferedSort,7,479094
100000,NearlySorted,5,ParallelBufferedSort,8,709522
100000,NearlySorted,5,ParallelBufferedSort,9,1005361
100000,NearlySorted,5,ParallelBufferedSort,10,1375129
100000,NearlySorted,5,ParallelRadixSort,0,29674
100000,NearlySorted,5,ParallelRadixSort,1,43584
100000,NearlySorted,5,ParallelRadixSort,2,103840
100000,NearlySorted,5,ParallelRadixSort,3,290461
100000,NearlySorted,5,ParallelRadixSort,4,604696
100000,NearlySorted,5,ParallelRadixSort,5,1121653
100000,NearlySorted,5,ParallelRadixSort,6,1892913
100000,NearlySorted,5,ParallelRadixSort,7,2968352
100000,NearlySorted,5,ParallelRadixSort,8,4402506
100000,NearlySorted,5,ParallelRadixSort,9,6253452
100000,NearlySorted,5,ParallelRadixSort,10,8557324
100000,NearlySorted,5,StdSort,0,19480
100000,NearlySorted,5,StdSort,1,28130
100000,NearlySorted,5,StdSort,2,84493
100000,NearlySorted,5,StdSort,3,268719
100000,NearlySorted,5,StdSort,4,565857
100000,NearlySorted,5,StdSort,5,1054161
100000,NearlySorted,5,StdSort,6,1781560
100000,NearlySorted,5,StdSort,7,2800572
100000,NearlySorted,5,StdSort,8,4150459
100000,NearlySorted,5,StdSort,9,5887890
100000,NearlySorted,5,StdSort,10,8056718
100000,NearlySorted,6,ParallelSort,0,5681
100000,NearlySorted,6,ParallelSort,1,8078
100000,NearlySorted,6,ParallelSort,2,23054
100000,NearlySorted,6,ParallelSort,3,72071
100000,NearlySorted,6,ParallelSort,4,151217
100000,NearlySorted,6,ParallelSort,5,274512
100000,NearlySorted,6,ParallelSort,6,454780
100000,NearlySorted,6,ParallelSort,7,713625
100000,NearlySorted,6,ParallelSort,8,1059380
100000,NearlySorted,6,ParallelSort,9,1499898
100000,NearlySorted,6,ParallelSort,10,2054094
100000,NearlySorted,6,ParallelBufferedSort,0,4869
100000,NearlySorted,6,ParallelBufferedSort,1,5767
100000,NearlySorted,6,ParallelBufferedSort,2,15479
100000,NearlySorted,6,ParallelBufferedSort,3,44813
100000,NearlySorted,6,ParallelBufferedSort,4,89417
100000,NearlySorted,6,ParallelBufferedSort,5,163966
100000,NearlySorted,6,ParallelBufferedSort,6,278484
100000,NearlySorted,6,ParallelBufferedSort,7,429255
100000,NearlySorted,6,ParallelBufferedSort,8,643955
100000,NearlySorted,6,ParallelBufferedSort,9,906538
100000,NearlySorted,6,ParallelBufferedSort,10,1210582
100000,NearlySorted,6,ParallelRadixSort,0,29614
100000,NearlySorted,6,ParallelRadixSort,1,43264
100000,NearlySorted,6,ParallelRadixSort,2,103155
100000,NearlySorted,6,ParallelRadixSort,3,288643
100000,NearlySorted,6,ParallelRadixSort,4,600389
100000,NearlySorted,6,ParallelRadixSort,5,1112049
100000,NearlySorted,6,ParallelRadixSort,6,1878279
100000,NearlySorted,6,ParallelRadixSort,7,2952237
100000,NearlySorted,6,ParallelRadixSort,8,4364531
100000,NearlySorted,6,ParallelRadixSort,9,6209794
100000,NearlySorted,6,ParallelRadixSort,10,8494680
100000,NearlySorted,6,StdSort,0,19480
100000,NearlySorted,6,StdSort,1,28106
100000,NearlySorted,6,StdSort,2,84495
100000,NearlySorted,6,StdSort,3,268714
100000,NearlySorted,6,StdSort,4,565896
100000,NearlySorted,6,StdSort,5,1053731
100000,NearlySorted,6,StdSort,6,1782433
100000,NearlySorted,6,StdSort,7,2798237
100000,NearlySorted,6,StdSort,8,4149889
100000,NearlySorted,6,StdSort,9,5887840
100000,NearlySorted,6,StdSort,10,8056907
100000,NearlySorted,7,ParallelSort,0,5126
100000,NearlySorted,7,ParallelSort,1,7201
100000,NearlySorted,7,ParallelSort,2,19396
100000,NearlySorted,7,ParallelSort,3,60263
100000,NearlySorted,7,ParallelSort,4,126730
100000,NearlySorted,7,ParallelSort,5,259867
100000,NearlySorted,7,ParallelSort,6,438561
100000,NearlySorted,7,ParallelSort,7,651247
100000,NearlySorted,7,ParallelSort,8,956124
100000,NearlySorted,7,ParallelSort,9,1407811
100000,NearlySorted,7,ParallelSort,10,1854965
100000,NearlySorted,7,ParallelBufferedSort,0,4374
100000,NearlySorted,7,ParallelBufferedSort,1,5321
100000,NearlySorted,7,ParallelBufferedSort,2,11992
100000,NearlySorted,7,ParallelBufferedSort,3,41781
100000,NearlySorted,7,ParallelBufferedSort,4,67990
100000,NearlySorted,7,ParallelBufferedSort,5,144365
100000,NearlySorted,7,ParallelBufferedSort,6,209332
100000,NearlySorted,7,ParallelBufferedSort,7,328505
100000,NearlySorted,7,ParallelBufferedSort,8,566805
100000,NearlySorted,7,ParallelBufferedSort,9,772919
100000,NearlySorted,7,ParallelBufferedSort,10,962288
100000,NearlySorted,7,ParallelRadixSort,0,29634
100000,NearlySorted,7,ParallelRadixSort,1,43552
100000,NearlySorted,7,ParallelRadixSort,2,102937
100000,NearlySorted,7,ParallelRadixSort,3,287488
100000,NearlySorted,7,ParallelRadixSort,4,596926
100000,NearlySorted,7,ParallelRadixSort,5,1111086
100000,NearlySorted,7,ParallelRadixSort,6,1869938
100000,NearlySorted,7,ParallelRadixSort,7,2933337
100000,NearlySorted,7,ParallelRadixSort,8,4347017
100000,NearlySorted,7,ParallelRadixSort,9,6167098
100000,NearlySorted,7,ParallelRadixSort,10,8447897
100000,NearlySorted,7,StdSort,0,19482
100000,NearlySorted,7,StdSort,1,28130
100000,NearlySorted,7,StdSort,2,84495
100000,NearlySorted,7,StdSort,3,268735
100000,NearlySorted,7,StdSort,4,565890
100000,NearlySorted,7,StdSort,5,1053805
100000,NearlySorted,7,StdSort,6,1780772
100000,NearlySorted,7,StdSort,7,2798607
100000,NearlySorted,7,StdSort,8,4150743
100000,NearlySorted,7,StdSort,9,5887378
100000,NearlySorted,7,StdSort,10,8057347
100000,NearlySorted,8,ParallelSort,0,5117
100000,NearlySorted,8,ParallelSort,1,6859
100000,NearlySorted,8,ParallelSort,2,19388
100000,NearlySorted,8,ParallelSort,3,60276
100000,NearlySorted,8,ParallelSort,4,125854
100000,NearlySorted,8,ParallelSort,5,236295
100000,NearlySorted,8,ParallelSort,6,399801
100000,NearlySorted,8,ParallelSort,7,631745
100000,NearlySorted,8,ParallelSort,8,919985
100000,NearlySorted,8,ParallelSort,9,1320805
100000,NearlySorted,8,ParallelSort,10,1809757
100000,NearlySorted,8,ParallelBufferedSort,0,5071
100000,NearlySorted,8,ParallelBufferedSort,1,6572
100000,NearlySorted,8,ParallelBufferedSort,2,11548
100000,NearlySorted,8,ParallelBufferedSort,3,31847
100000,NearlySorted,8,ParallelBufferedSort,4,70962
100000,NearlySorted,8,ParallelBufferedSort,5,108560
100000,NearlySorted,8,ParallelBufferedSort,6,181597
100000,NearlySorted,8,ParallelBufferedSort,7,280334
100000,NearlySorted,8,ParallelBufferedSort,8,403367
100000,NearlySorted,8,ParallelBufferedSort,9,570695
100000,NearlySorted,8,ParallelBufferedSort,10,773267
100000,NearlySorted,8,ParallelRadixSort,0,16071
100000,NearlySorted,8,ParallelRadixSort,1,23303
100000,NearlySorted,8,ParallelRadixSort,2,54215
100000,NearlySorted,8,ParallelRadixSort,3,152451
100000,NearlySorted,8,ParallelRadixSort,4,311946
100000,NearlySorted,8,ParallelRadixSort,5,579425
100000,NearlySorted,8,ParallelRadixSort,6,994572
100000,NearlySorted,8,ParallelRadixSort,7,1525192
100000,NearlySorted,8,ParallelRadixSort,8,2286855
100000,NearlySorted,8,ParallelRadixSort,9,3190844
100000,NearlySorted,8,ParallelRadixSort,10,4357220
100000,NearlySorted,8,StdSort,0,19479
100000,NearlySorted,8,StdSort,1,28104
100000,NearlySorted,8,StdSort,2,84497
100000,NearlySorted,8,StdSort,3,268717
100000,NearlySorted,8,StdSort,4,565892
100000,NearlySorted,8,StdSort,5,1054515
100000,NearlySorted,8,StdSort,6,1782932
100000,NearlySorted,8,StdSort,7,2800272
100000,NearlySorted,8,StdSort,8,4151244
100000,NearlySorted,8,StdSort,9,5887950
100000,NearlySorted,8,StdSort,10,8057220
100000,NormalDistributionWithDups,1,ParallelSort,0,39979
100000,NormalDistributionWithDups,1,ParallelSort,1,54566
100000,NormalDistributionWithDups,1,ParallelSort,2,148056
100000,NormalDistributionWithDups,1,ParallelSort,3,439308
100000,NormalDistributionWithDups,1,ParallelSort,4,914241
100000,NormalDistributionWithDups,1,ParallelSort,5,1692769
100000,NormalDistributionWithDups,1,ParallelSort,6,2856597
100000,NormalDistributionWithDups,1,ParallelSort,7,4482716
100000,NormalDistributionWithDups,1,ParallelSort,8,6642534
100000,NormalDistributionWithDups,1,ParallelSort,9,9417812
100000,NormalDistributionWithDups,1,ParallelSort,10,12885547
100000,NormalDistributionWithDups,1,ParallelBufferedSort,0,39985
100000,NormalDistributionWithDups,1,ParallelBufferedSort,1,54572
100000,NormalDistributionWithDups,1,ParallelBufferedSort,2,148056
100000,NormalDistributionWithDups,1,ParallelBufferedSort,3,439403
100000,NormalDistributionWithDups,1,ParallelBufferedSort,4,914484
100000,NormalDistributionWithDups,1,ParallelBufferedSort,5,1693171
100000,NormalDistributionWithDups,1,ParallelBufferedSort,6,2857262
100000,NormalDistributionWithDups,1,ParallelBufferedSort,7,4483979
100000,NormalDistributionWithDups,1,ParallelBufferedSort,8,6644528
100000,NormalDistributionWithDups,1,ParallelBufferedSort,9,9421488
100000,NormalDistributionWithDups,1,ParallelBufferedSort,10,12891523
100000,NormalDistributionWithDups,1,ParallelRadixSort,0,38029
100000,NormalDistributionWithDups,1,ParallelRadixSort,1,58296
100000,NormalDistributionWithDups,1,ParallelRadixSort,2,144394
100000,NormalDistributionWithDups,1,ParallelRadixSort,3,414459
100000,NormalDistributionWithDups,1,ParallelRadixSort,4,868473
100000,NormalDistributionWithDups,1,ParallelRadixSort,5,1617525
100000,NormalDistributionWithDups,1,ParallelRadixSort,6,2735762
100000,NormalDistributionWithDups,1,ParallelRadixSort,7,4293837
100000,NormalDistributionWithDups,1,ParallelRadixSort,8,6370378
100000,NormalDistributionWithDups,1,ParallelRadixSort,9,9038553
100000,NormalDistributionWithDups,1,ParallelRadixSort,10,12361122
100000,NormalDistributionWithDups,1,StdSort,0,39968
100000,NormalDistributionWithDups,1,StdSort,1,54561
100000,NormalDistributionWithDups,1,StdSort,2,148186
100000,NormalDistributionWithDups,1,StdSort,3,439761
100000,NormalDistributionWithDups,1,StdSort,4,915283
100000,NormalDistributionWithDups,1,StdSort,5,1693743
100000,NormalDistributionWithDups,1,StdSort,6,2857677
100000,NormalDistributionWithDups,1,StdSort,7,4483872
100000,NormalDistributionWithDups,1,StdSort,8,6643791
100000,NormalDistributionWithDups,1,StdSort,9,9420193
100000,NormalDistributionWithDups,1,StdSort,10,12888816
100000,NormalDistributionWithDups,2,ParallelSort,0,19010
100000,NormalDistributionWithDups,2,ParallelSort,1,24340
100000,NormalDistributionWithDups,2,ParallelSort,2,58664
100000,NormalDistributionWithDups,2,ParallelSort,3,169790
100000,NormalDistributionWithDups,2,ParallelSort,4,356032
100000,NormalDistributionWithDups,2,ParallelSort,5,664296
100000,NormalDistributionWithDups,2,ParallelSort,6,1122191
100000,NormalDistributionWithDups,2,ParallelSort,7,1763438
100000,NormalDistributionWithDups,2,ParallelSort,8,2632858
100000,NormalDistributionWithDups,2,ParallelSort,9,3720723
100000,NormalDistributionWithDups,2,ParallelSort,10,5093293
100000,NormalDistributionWithDups,2,ParallelBufferedSort,0,18814
100000,NormalDistributionWithDups,2,ParallelBufferedSort,1,24496
100000,NormalDistributionWithDups,2,ParallelBufferedSort,2,61177
100000,NormalDistributionWithDups,2,ParallelBufferedSort,3,176222
100000,NormalDistributionWithDups,2,ParallelBufferedSort,4,367396
100000,NormalDistributionWithDups,2,ParallelBufferedSort,5,682264
100000,NormalDistributionWithDups,2,ParallelBufferedSort,6,1151665
100000,NormalDistributionWithDups,2,ParallelBufferedSort,7,1812275
100000,NormalDistributionWithDups,2,ParallelBufferedSort,8,2681894
100000,NormalDistributionWithDups,2,ParallelBufferedSort,9,3800138
100000,NormalDistributionWithDups,2,ParallelBufferedSort,10,5205205
100000,NormalDistributionWithDups,2,ParallelRadixSort,0,20638
100000,NormalDistributionWithDups,2,ParallelRadixSort,1,30603
100000,NormalDistributionWithDups,2,ParallelRadixSort,2,73593
100000,NormalDistributionWithDups,2,ParallelRadixSort,3,208906
100000,NormalDistributionWithDups,2,ParallelRadixSort,4,436245
100000,NormalDistributionWithDups,2,ParallelRadixSort,5,810805
100000,NormalDistributionWithDups,2,ParallelRadixSort,6,1369507
100000,NormalDistributionWithDups,2,ParallelRadixSort,7,2149500
100000,NormalDistributionWithDups,2,ParallelRadixSort,8,3187619
100000,NormalDistributionWithDups,2,ParallelRadixSort,9,4520709
100000,NormalDistributionWithDups,2,ParallelRadixSort,10,6185359
100000,NormalDistributionWithDups,2,StdSort,0,39717
100000,NormalDistributionWithDups,2,StdSort,1,54287
100000,NormalDistributionWithDups,2,StdSort,2,147675
100000,NormalDistributionWithDups,2,StdSort,3,437275
100000,NormalDistributionWithDups,2,StdSort,4,909508
100000,NormalDistributionWithDups,2,StdSort,5,1683642
100000,NormalDistributionWithDups,2,StdSort,6,2841422
100000,NormalDistributionWithDups,2,StdSort,7,4458425
100000,NormalDistributionWithDups,2,StdSort,8,6606686
100000,NormalDistributionWithDups,2,StdSort,9,9366899
100000,NormalDistributionWithDups,2,StdSort,10,12817619
100000,NormalDistributionWithDups,3,ParallelSort,0,13070
100000,NormalDistributionWithDups,3,ParallelSort,1,16649
100000,NormalDistributionWithDups,3,ParallelSort,2,39519
100000,NormalDistributionWithDups,3,ParallelSort,3,114750
100000,NormalDistributionWithDups,3,ParallelSort,4,241426
100000,NormalDistributionWithDups,3,ParallelSort,5,448563
100000,NormalDistributionWithDups,3,ParallelSort,6,758224
100000,NormalDistributionWithDups,3,ParallelSort,7,1183849
100000,NormalDistributionWithDups,3,ParallelSort,8,1762337
100000,NormalDistributionWithDups,3,ParallelSort,9,2503544
100000,NormalDistributionWithDups,3,ParallelSort,10,3413959
100000,NormalDistributionWithDups,3,ParallelBufferedSort,0,11943
100000,NormalDistributionWithDups,3,ParallelBufferedSort,1,15491
100000,NormalDistributionWithDups,3,ParallelBufferedSort,2,38541
100000,NormalDistributionWithDups,3,ParallelBufferedSort,3,109349
100000,NormalDistributionWithDups,3,ParallelBufferedSort,4,227594
100000,NormalDistributionWithDups,3,ParallelBufferedSort,5,422298
100000,NormalDistributionWithDups,3,ParallelBufferedSort,6,712931
100000,NormalDistributionWithDups,3,ParallelBufferedSort,7,1118982
100000,NormalDistributionWithDups,3,ParallelBufferedSort,8,1664393
100000,NormalDistributionWithDups,3,ParallelBufferedSort,9,2351930
100000,NormalDistributionWithDups,3,ParallelBufferedSort,10,3218819
100000,NormalDistributionWithDups,3,ParallelRadixSort,0,34251
100000,NormalDistributionWithDups,3,ParallelRadixSort,1,51684
100000,NormalDistributionWithDups,3,ParallelRadixSort,2,123206
100000,NormalDistributionWithDups,3,ParallelRadixSort,3,343546
100000,NormalDistributionWithDups,3,ParallelRadixSort,4,714248
100000,NormalDistributionWithDups,3,ParallelRadixSort,5,1325635
100000,NormalDistributionWithDups,3,ParallelRadixSort,6,2239486
100000,NormalDistributionWithDups,3,ParallelRadixSort,7,3508382
100000,NormalDistributionWithDups,3,ParallelRadixSort,8,5193757
100000,NormalDistributionWithDups,3,ParallelRadixSort,9,7373889
100000,NormalDistributionWithDups,3,ParallelRadixSort,10,10101973
100000,NormalDistributionWithDups,3,StdSort,0,38001
100000,NormalDistributionWithDups,3,StdSort,1,51975
100000,NormalDistributionWithDups,3,StdSort,2,141592
100000,NormalDistributionWithDups,3,StdSort,3,420227
100000,NormalDistributionWithDups,3,StdSort,4,874160
100000,NormalDistributionWithDups,3,StdSort,5,1618428
100000,NormalDistributionWithDups,3,StdSort,6,2731769
100000,NormalDistributionWithDups,3,StdSort,7,4286418
100000,NormalDistributionWithDups,3,StdSort,8,6351406
100000,NormalDistributionWithDups,3,StdSort,9,9005624
100000,NormalDistributionWithDups,3,StdSort,10,12320990
100000,NormalDistributionWithDups,4,ParallelSort,0,11619
100000,NormalDistributionWithDups,4,ParallelSort,1,14759
100000,NormalDistributionWithDups,4,ParallelSort,2,34996
100000,NormalDistributionWithDups,4,ParallelSort,3,100784
100000,NormalDistributionWithDups,4,ParallelSort,4,211915
100000,NormalDistributionWithDups,4,ParallelSort,5,394041
100000,NormalDistributionWithDups,4,ParallelSort,6,654138
100000,NormalDistributionWithDups,4,ParallelSort,7,1044793
100000,NormalDistributionWithDups,4,ParallelSort,8,1490168
100000,NormalDistributionWithDups,4,ParallelSort,9,2173622
100000,NormalDistributionWithDups,4,ParallelSort,10,2823830
100000,NormalDistributionWithDups,4,ParallelBufferedSort,0,10829
100000,NormalDistributionWithDups,4,ParallelBufferedSort,1,14066
100000,NormalDistributionWithDups,4,ParallelBufferedSort,2,33824
100000,NormalDistributionWithDups,4,ParallelBufferedSort,3,97567
100000,NormalDistributionWithDups,4,ParallelBufferedSort,4,193985
100000,NormalDistributionWithDups,4,ParallelBufferedSort,5,370751
100000,NormalDistributionWithDups,4,ParallelBufferedSort,6,601833
100000,NormalDistributionWithDups,4,ParallelBufferedSort,7,926995
100000,NormalDistributionWithDups,4,ParallelBufferedSort,8,1404018
100000,NormalDistributionWithDups,4,ParallelBufferedSort,9,1946759
100000,NormalDistributionWithDups,4,ParallelBufferedSort,10,2653293
100000,NormalDistributionWithDups,4,ParallelRadixSort,0,16985
100000,NormalDistributionWithDups,4,ParallelRadixSort,1,24933
100000,NormalDistributionWithDups,4,ParallelRadixSort,2,58583
100000,NormalDistributionWithDups,4,ParallelRadixSort,3,163729
100000,NormalDistributionWithDups,4,ParallelRadixSort,4,339975
100000,NormalDistributionWithDups,4,ParallelRadixSort,5,630922
100000,NormalDistributionWithDups,4,ParallelRadixSort,6,1064179
100000,NormalDistributionWithDups,4,ParallelRadixSort,7,1669762
100000,NormalDistributionWithDups,4,ParallelRadixSort,8,2475312
100000,NormalDistributionWithDups,4,ParallelRadixSort,9,3507715
100000,NormalDistributionWithDups,4,ParallelRadixSort,10,4803259
100000,NormalDistributionWithDups,4,StdSort,0,35048
100000,NormalDistributionWithDups,4,StdSort,1,47570
100000,NormalDistributionWithDups,4,StdSort,2,129493
100000,NormalDistributionWithDups,4,StdSort,3,384487
100000,NormalDistributionWithDups,4,StdSort,4,799162
100000,NormalDistributionWithDups,4,StdSort,5,1479661
100000,NormalDistributionWithDups,4,StdSort,6,2496667
100000,NormalDistributionWithDups,4,StdSort,7,3917446
100000,NormalDistributionWithDups,4,StdSort,8,5804626
100000,NormalDistributionWithDups,4,StdSort,9,8230440
100000,NormalDistributionWithDups,4,StdSort,10,11260647
100000,NormalDistributionWithDups,5,ParallelSort,0,12439
100000,NormalDistributionWithDups,5,ParallelSort,1,15597
100000,NormalDistributionWithDups,5,ParallelSort,2,36613
100000,NormalDistributionWithDups,5,ParallelSort,3,105397
100000,NormalDistributionWithDups,5,ParallelSort,4,219618
100000,NormalDistributionWithDups,5,ParallelSort,5,411211
100000,NormalDistributionWithDups,5,ParallelSort,6,695616
100000,NormalDistributionWithDups,5,ParallelSort,7,1065460
100000,NormalDistributionWithDups,5,ParallelSort,8,1623680
100000,NormalDistributionWithDups,5,ParallelSort,9,2295949
100000,NormalDistributionWithDups,5,ParallelSort,10,2959316
100000,NormalDistributionWithDups,5,ParallelBufferedSort,0,11223
100000,NormalDistributionWithDups,5,ParallelBufferedSort,1,14498
100000,NormalDistributionWithDups,5,ParallelBufferedSort,2,35231
100000,NormalDistributionWithDups,5,ParallelBufferedSort,3,100078
100000,NormalDistributionWithDups,5,ParallelBufferedSort,4,213489
100000,NormalDistributionWithDups,5,ParallelBufferedSort,5,385678
100000,NormalDistributionWithDups,5,ParallelBufferedSort,6,656374
100000,NormalDistributionWithDups,5,ParallelBufferedSort,7,957208
100000,NormalDistributionWithDups,5,ParallelBufferedSort,8,1430736
100000,NormalDistributionWithDups,5,ParallelBufferedSort,9,2012637
100000,NormalDistributionWithDups,5,ParallelBufferedSort,10,2729649
100000,NormalDistributionWithDups,5,ParallelRadixSort,0,36821
100000,NormalDistributionWithDups,5,ParallelRadixSort,1,54415
100000,NormalDistributionWithDups,5,ParallelRadixSort,2,129648
100000,NormalDistributionWithDups,5,ParallelRadixSort,3,362279
100000,NormalDistributionWithDups,5,ParallelRadixSort,4,753094
100000,NormalDistributionWithDups,5,ParallelRadixSort,5,1395736
100000,NormalDistributionWithDups,5,ParallelRadixSort,6,2355580
100000,NormalDistributionWithDups,5,ParallelRadixSort,7,3694596
100000,NormalDistributionWithDups,5,ParallelRadixSort,8,5468564
100000,NormalDistributionWithDups,5,ParallelRadixSort,9,7753182
100000,NormalDistributionWithDups,5,ParallelRadixSort,10,10609826
100000,NormalDistributionWithDups,5,StdSort,0,40348
100000,NormalDistributionWithDups,5,StdSort,1,55078
100000,NormalDistributionWithDups,5,StdSort,2,149612
100000,NormalDistributionWithDups,5,StdSort,3,444818
100000,NormalDistributionWithDups,5,StdSort,4,923884
100000,NormalDistributionWithDups,5,StdSort,5,1710025
100000,NormalDistributionWithDups,5,StdSort,6,2885108
100000,NormalDistributionWithDups,5,StdSort,7,4527061
100000,NormalDistributionWithDups,5,StdSort,8,6707359
100000,NormalDistributionWithDups,5,StdSort,9,9511401
100000,NormalDistributionWithDups,5,StdSort,10,13012315
100000,NormalDistributionWithDups,6,ParallelSort,0,9234
100000,NormalDistributionWithDups,6,ParallelSort,1,11520
100000,NormalDistributionWithDups,6,ParallelSort,2,26412
100000,NormalDistributionWithDups,6,ParallelSort,3,75889
100000,NormalDistributionWithDups,6,ParallelSort,4,156575
100000,NormalDistributionWithDups,6,ParallelSort,5,295075
100000,NormalDistributionWithDups,6,ParallelSort,6,499907
100000,NormalDistributionWithDups,6,ParallelSort,7,776310
100000,NormalDistributionWithDups,6,ParallelSort,8,1157830
100000,NormalDistributionWithDups,6,ParallelSort,9,1648205
100000,NormalDistributionWithDups,6,ParallelSort,10,2219938
100000,NormalDistributionWithDups,6,ParallelBufferedSort,0,8333
100000,NormalDistributionWithDups,6,ParallelBufferedSort,1,10743
100000,NormalDistributionWithDups,6,ParallelBufferedSort,2,24023
100000,NormalDistributionWithDups,6,ParallelBufferedSort,3,67453
100000,NormalDistributionWithDups,6,ParallelBufferedSort,4,139309
100000,NormalDistributionWithDups,6,ParallelBufferedSort,5,263973
100000,NormalDistributionWithDups,6,ParallelBufferedSort,6,439841
100000,NormalDistributionWithDups,6,ParallelBufferedSort,7,697864
100000,NormalDistributionWithDups,6,ParallelBufferedSort,8,1038932
100000,NormalDistributionWithDups,6,ParallelBufferedSort,9,1427345
100000,NormalDistributionWithDups,6,ParallelBufferedSort,10,1970811
100000,NormalDistributionWithDups,6,ParallelRadixSort,0,29531
100000,NormalDistributionWithDups,6,ParallelRadixSort,1,43584
100000,NormalDistributionWithDups,6,ParallelRadixSort,2,103405
100000,NormalDistributionWithDups,6,ParallelRadixSort,3,287723
100000,NormalDistributionWithDups,6,ParallelRadixSort,4,596817
100000,NormalDistributionWithDups,6,ParallelRadixSort,5,1103699
100000,NormalDistributionWithDups,6,ParallelRadixSort,6,1866900
100000,NormalDistributionWithDups,6,ParallelRadixSort,7,2920118
100000,NormalDistributionWithDups,6,ParallelRadixSort,8,4328016
100000,NormalDistributionWithDups,6,ParallelRadixSort,9,6138108
100000,NormalDistributionWithDups,6,ParallelRadixSort,10,8378641
100000,NormalDistributionWithDups,6,StdSort,0,33041
100000,NormalDistributionWithDups,6,StdSort,1,45164
100000,NormalDistributionWithDups,6,StdSort,2,123175
100000,NormalDistributionWithDups,6,StdSort,3,365520
100000,NormalDistributionWithDups,6,StdSort,4,759319
100000,NormalDistributionWithDups,6,StdSort,5,1406173
100000,NormalDistributionWithDups,6,StdSort,6,2372740
100000,NormalDistributionWithDups,6,StdSort,7,3722990
100000,NormalDistributionWithDups,6,StdSort,8,5516460
100000,NormalDistributionWithDups,6,StdSort,9,7822725
100000,NormalDistributionWithDups,6,StdSort,10,10702074
100000,NormalDistributionWithDups,7,ParallelSort,0,9942
100000,NormalDistributionWithDups,7,ParallelSort,1,12459
100000,NormalDistributionWithDups,7,ParallelSort,2,28668
100000,NormalDistributionWithDups,7,ParallelSort,3,81521
100000,NormalDistributionWithDups,7,ParallelSort,4,169626
100000,NormalDistributionWithDups,7,ParallelSort,5,316192
100000,NormalDistributionWithDups,7,ParallelSort,6,539627
100000,NormalDistributionWithDups,7,ParallelSort,7,847703
100000,NormalDistributionWithDups,7,ParallelSort,8,1249463
100000,NormalDistributionWithDups,7,ParallelSort,9,1779422
100000,NormalDistributionWithDups,7,ParallelSort,10,2437939
100000,NormalDistributionWithDups,7,ParallelBufferedSort,0,8260
100000,NormalDistributionWithDups,7,ParallelBufferedSort,1,10512
100000,NormalDistributionWithDups,7,ParallelBufferedSort,2,24723
100000,NormalDistributionWithDups,7,ParallelBufferedSort,3,68621
100000,NormalDistributionWithDups,7,ParallelBufferedSort,4,145353
100000,NormalDistributionWithDups,7,ParallelBufferedSort,5,268037
100000,NormalDistributionWithDups,7,ParallelBufferedSort,6,449811
100000,NormalDistributionWithDups,7,ParallelBufferedSort,7,702822
100000,NormalDistributionWithDups,7,ParallelBufferedSort,8,1038073
100000,NormalDistributionWithDups,7,ParallelBufferedSort,9,1472819
100000,NormalDistributionWithDups,7,ParallelBufferedSort,10,2027563
100000,NormalDistributionWithDups,7,ParallelRadixSort,0,34786
100000,NormalDistributionWithDups,7,ParallelRadixSort,1,51153
100000,NormalDistributionWithDups,7,ParallelRadixSort,2,121471
100000,NormalDistributionWithDups,7,ParallelRadixSort,3,339749
100000,NormalDistributionWithDups,7,ParallelRadixSort,4,701814
100000,NormalDistributionWithDups,7,ParallelRadixSort,5,1299720
100000,NormalDistributionWithDups,7,ParallelRadixSort,6,2192813
100000,NormalDistributionWithDups,7,ParallelRadixSort,7,3439239
100000,NormalDistributionWithDups,7,ParallelRadixSort,8,5122644
100000,NormalDistributionWithDups,7,ParallelRadixSort,9,7227886
100000,NormalDistributionWithDups,7,ParallelRadixSort,10,9895214
100000,NormalDistributionWithDups,7,StdSort,0,38377
100000,NormalDistributionWithDups,7,StdSort,1,52407
100000,NormalDistributionWithDups,7,StdSort,2,142472
100000,NormalDistributionWithDups,7,StdSort,3,423123
100000,NormalDistributionWithDups,7,StdSort,4,880439
100000,NormalDistributionWithDups,7,StdSort,5,1629333
100000,NormalDistributionWithDups,7,StdSort,6,2749078
100000,NormalDistributionWithDups,7,StdSort,7,4313630
100000,NormalDistributionWithDups,7,StdSort,8,6391274
100000,NormalDistributionWithDups,7,StdSort,9,9061832
100000,NormalDistributionWithDups,7,StdSort,10,12398143
100000,NormalDistributionWithDups,8,ParallelSort,0,9212
100000,NormalDistributionWithDups,8,ParallelSort,1,11482
100000,NormalDistributionWithDups,8,ParallelSort,2,26147
100000,NormalDistributionWithDups,8,ParallelSort,3,73521
100000,NormalDistributionWithDups,8,ParallelSort,4,154139
100000,NormalDistributionWithDups,8,ParallelSort,5,283334
100000,NormalDistributionWithDups,8,ParallelSort,6,484658
100000,NormalDistributionWithDups,8,ParallelSort,7,756301
100000,NormalDistributionWithDups,8,ParallelSort,8,1129224
100000,NormalDistributionWithDups,8,ParallelSort,9,1599711
100000,NormalDistributionWithDups,8,ParallelSort,10,2191435
100000,NormalDistributionWithDups,8,ParallelBufferedSort,0,9984
100000,NormalDistributionWithDups,8,ParallelBufferedSort,1,11936
100000,NormalDistributionWithDups,8,ParallelBufferedSort,2,28395
100000,NormalDistributionWithDups,8,ParallelBufferedSort,3,72393
100000,NormalDistributionWithDups,8,ParallelBufferedSort,4,133165
100000,NormalDistributionWithDups,8,ParallelBufferedSort,5,251279
100000,NormalDistributionWithDups,8,ParallelBufferedSort,6,395875
100000,NormalDistributionWithDups,8,ParallelBufferedSort,7,633394
100000,NormalDistributionWithDups,8,ParallelBufferedSort,8,958886
100000,NormalDistributionWithDups,8,ParallelBufferedSort,9,1335006
100000,NormalDistributionWithDups,8,ParallelBufferedSort,10,1817192
100000,NormalDistributionWithDups,8,ParallelRadixSort,0,17446
100000,NormalDistributionWithDups,8,ParallelRadixSort,1,25687
100000,NormalDistributionWithDups,8,ParallelRadixSort,2,59624
100000,NormalDistributionWithDups,8,ParallelRadixSort,3,162215
100000,NormalDistributionWithDups,8,ParallelRadixSort,4,335379
100000,NormalDistributionWithDups,8,ParallelRadixSort,5,622751
100000,NormalDistributionWithDups,8,ParallelRadixSort,6,1067930
100000,NormalDistributionWithDups,8,ParallelRadixSort,7,1666297
100000,NormalDistributionWithDups,8,ParallelRadixSort,8,2454792
100000,NormalDistributionWithDups,8,ParallelRadixSort,9,3489748
100000,NormalDistributionWithDups,8,ParallelRadixSort,10,4778315
100000,NormalDistributionWithDups,8,StdSort,0,35792
100000,NormalDistributionWithDups,8,StdSort,1,48865
100000,NormalDistributionWithDups,8,StdSort,2,133053
100000,NormalDistributionWithDups,8,StdSort,3,393769
100000,NormalDistributionWithDups,8,StdSort,4,819262
100000,NormalDistributionWithDups,8,StdSort,5,1516964
100000,NormalDistributionWithDups,8,StdSort,6,2559385
100000,NormalDistributionWithDups,8,StdSort,7,4015873
100000,NormalDistributionWithDups,8,StdSort,8,5950713
100000,NormalDistributionWithDups,8,StdSort,9,8436360
100000,NormalDistributionWithDups,8,StdSort,10,11542511
100000,SawTooth,1,ParallelSort,0,43095
100000,SawTooth,1,ParallelSort,1,61882
100000,SawTooth,1,ParallelSort,2,178114
100000,SawTooth,1,ParallelSort,3,551842
100000,SawTooth,1,ParallelSort,4,1157959
100000,SawTooth,1,ParallelSort,5,2153543
100000,SawTooth,1,ParallelSort,6,3639518
100000,SawTooth,1,ParallelSort,7,5713794
100000,SawTooth,1,ParallelSort,8,8469666
100000,SawTooth,1,ParallelSort,9,12011661
100000,SawTooth,1,ParallelSort,10,16437668
100000,SawTooth,1,ParallelBufferedSort,0,43100
100000,SawTooth,1,ParallelBufferedSort,1,61916
100000,SawTooth,1,ParallelBufferedSort,2,178102
100000,SawTooth,1,ParallelBufferedSort,3,551873
100000,SawTooth,1,ParallelBufferedSort,4,1157889
100000,SawTooth,1,ParallelBufferedSort,5,2153069
100000,SawTooth,1,ParallelBufferedSort,6,3637322
100000,SawTooth,1,ParallelBufferedSort,7,5713213
100000,SawTooth,1,ParallelBufferedSort,8,8469983
100000,SawTooth,1,ParallelBufferedSort,9,12014276
100000,SawTooth,1,ParallelBufferedSort,10,16443264
100000,SawTooth,1,ParallelRadixSort,0,30660
100000,SawTooth,1,ParallelRadixSort,1,47025
100000,SawTooth,1,ParallelRadixSort,2,116663
100000,SawTooth,1,ParallelRadixSort,3,334774
100000,SawTooth,1,ParallelRadixSort,4,701779
100000,SawTooth,1,ParallelRadixSort,5,1306782
100000,SawTooth,1,ParallelRadixSort,6,2209959
100000,SawTooth,1,ParallelRadixSort,7,3469430
100000,SawTooth,1,ParallelRadixSort,8,5147584
100000,SawTooth,1,ParallelRadixSort,9,7302837
100000,SawTooth,1,ParallelRadixSort,10,9989510
100000,SawTooth,1,StdSort,0,43082
100000,SawTooth,1,StdSort,1,61874
100000,SawTooth,1,StdSort,2,178111
100000,SawTooth,1,StdSort,3,552529
100000,SawTooth,1,StdSort,4,1157972
100000,SawTooth,1,StdSort,5,2151645
100000,SawTooth,1,StdSort,6,3637321
100000,SawTooth,1,StdSort,7,5713078
100000,SawTooth,1,StdSort,8,8467187
100000,SawTooth,1,StdSort,9,12011489
100000,SawTooth,1,StdSort,10,16437346
100000,SawTooth,2,ParallelSort,0,21206
100000,SawTooth,2,ParallelSort,1,30231
100000,SawTooth,2,ParallelSort,2,85192
100000,SawTooth,2,ParallelSort,3,260390
100000,SawTooth,2,ParallelSort,4,547286
100000,SawTooth,2,ParallelSort,5,1019325
100000,SawTooth,2,ParallelSort,6,1723726
100000,SawTooth,2,ParallelSort,7,2709105
100000,SawTooth,2,ParallelSort,8,4016616
100000,SawTooth,2,ParallelSort,9,5696705
100000,SawTooth,2,ParallelSort,10,7794180
100000,SawTooth,2,ParallelBufferedSort,0,14946
100000,SawTooth,2,ParallelBufferedSort,1,20757
100000,SawTooth,2,ParallelBufferedSort,2,56714
100000,SawTooth,2,ParallelBufferedSort,3,168461
100000,SawTooth,2,ParallelBufferedSort,4,352890
100000,SawTooth,2,ParallelBufferedSort,5,656215
100000,SawTooth,2,ParallelBufferedSort,6,1108937
100000,SawTooth,2,ParallelBufferedSort,7,1740971
100000,SawTooth,2,ParallelBufferedSort,8,2582353
100000,SawTooth,2,ParallelBufferedSort,9,3661807
100000,SawTooth,2,ParallelBufferedSort,10,5013784
100000,SawTooth,2,ParallelRadixSort,0,16476
100000,SawTooth,2,ParallelRadixSort,1,24783
100000,SawTooth,2,ParallelRadixSort,2,60354
100000,SawTooth,2,ParallelRadixSort,3,170759
100000,SawTooth,2,ParallelRadixSort,4,356791
100000,SawTooth,2,ParallelRadixSort,5,663116
100000,SawTooth,2,ParallelRadixSort,6,1121909
100000,SawTooth,2,ParallelRadixSort,7,1760099
100000,SawTooth,2,ParallelRadixSort,8,2611317
100000,SawTooth,2,ParallelRadixSort,9,3702271
100000,SawTooth,2,ParallelRadixSort,10,5063393
100000,SawTooth,2,StdSort,0,43148
100000,SawTooth,2,StdSort,1,61863
100000,SawTooth,2,StdSort,2,178107
100000,SawTooth,2,StdSort,3,552981
100000,SawTooth,2,StdSort,4,1157934
100000,SawTooth,2,StdSort,5,2152162
100000,SawTooth,2,StdSort,6,3638125
100000,SawTooth,2,StdSort,7,5712937
100000,SawTooth,2,StdSort,8,8469387
100000,SawTooth,2,StdSort,9,12011686
100000,SawTooth,2,StdSort,10,16437480
100000,SawTooth,3,ParallelSort,0,16899
100000,SawTooth,3,ParallelSort,1,24244
100000,SawTooth,3,ParallelSort,2,68190
100000,SawTooth,3,ParallelSort,3,208576
100000,SawTooth,3,ParallelSort,4,438129
100000,SawTooth,3,ParallelSort,5,815281
100000,SawTooth,3,ParallelSort,6,1378548
100000,SawTooth,3,ParallelSort,7,2168016
100000,SawTooth,3,ParallelSort,8,3216957
100000,SawTooth,3,ParallelSort,9,4556886
100000,SawTooth,3,ParallelSort,10,6233963
100000,SawTooth,3,ParallelBufferedSort,0,9833
100000,SawTooth,3,ParallelBufferedSort,1,13617
100000,SawTooth,3,ParallelBufferedSort,2,37208
100000,SawTooth,3,ParallelBufferedSort,3,110602
100000,SawTooth,3,ParallelBufferedSort,4,231790
100000,SawTooth,3,ParallelBufferedSort,5,430958
100000,SawTooth,3,ParallelBufferedSort,6,727996
100000,SawTooth,3,ParallelBufferedSort,7,1143321
100000,SawTooth,3,ParallelBufferedSort,8,1707965
100000,SawTooth,3,ParallelBufferedSort,9,2415585
100000,SawTooth,3,ParallelBufferedSort,10,3291503
100000,SawTooth,3,ParallelRadixSort,0,29434
100000,SawTooth,3,ParallelRadixSort,1,44046
100000,SawTooth,3,ParallelRadixSort,2,106076
100000,SawTooth,3,ParallelRadixSort,3,297851
100000,SawTooth,3,ParallelRadixSort,4,618794
100000,SawTooth,3,ParallelRadixSort,5,1147998
100000,SawTooth,3,ParallelRadixSort,6,1939662
100000,SawTooth,3,ParallelRadixSort,7,3040227
100000,SawTooth,3,ParallelRadixSort,8,4506854
100000,SawTooth,3,ParallelRadixSort,9,6393318
100000,SawTooth,3,ParallelRadixSort,10,8744461
100000,SawTooth,3,StdSort,0,43080
100000,SawTooth,3,StdSort,1,61874
100000,SawTooth,3,StdSort,2,178105
100000,SawTooth,3,StdSort,3,551840
100000,SawTooth,3,StdSort,4,1158547
100000,SawTooth,3,StdSort,5,2152285
100000,SawTooth,3,StdSort,6,3637932
100000,SawTooth,3,StdSort,7,5712561
100000,SawTooth,3,StdSort,8,8468845
100000,SawTooth,3,StdSort,9,12010763
100000,SawTooth,3,StdSort,10,16432688
100000,SawTooth,4,ParallelSort,0,14330
100000,SawTooth,4,ParallelSort,1,20260
100000,SawTooth,4,ParallelSort,2,56699
100000,SawTooth,4,ParallelSort,3,173914
100000,SawTooth,4,ParallelSort,4,367804
100000,SawTooth,4,ParallelSort,5,693394
100000,SawTooth,4,ParallelSort,6,1171521
100000,SawTooth,4,ParallelSort,7,1834625
100000,SawTooth,4,ParallelSort,8,2708014
100000,SawTooth,4,ParallelSort,9,3858343
100000,SawTooth,4,ParallelSort,10,5271394
100000,SawTooth,4,ParallelBufferedSort,0,9596
100000,SawTooth,4,ParallelBufferedSort,1,13348
100000,SawTooth,4,ParallelBufferedSort,2,35772
100000,SawTooth,4,ParallelBufferedSort,3,111801
100000,SawTooth,4,ParallelBufferedSort,4,216416
100000,SawTooth,4,ParallelBufferedSort,5,398529
100000,SawTooth,4,ParallelBufferedSort,6,681530
100000,SawTooth,4,ParallelBufferedSort,7,1067157
100000,SawTooth,4,ParallelBufferedSort,8,1565460
100000,SawTooth,4,ParallelBufferedSort,9,2190695
100000,SawTooth,4,ParallelBufferedSort,10,3035070
100000,SawTooth,4,ParallelRadixSort,0,16583
100000,SawTooth,4,ParallelRadixSort,1,23580
100000,SawTooth,4,ParallelRadixSort,2,55796
100000,SawTooth,4,ParallelRadixSort,3,156608
100000,SawTooth,4,ParallelRadixSort,4,325132
100000,SawTooth,4,ParallelRadixSort,5,603831
100000,SawTooth,4,ParallelRadixSort,6,1019450
100000,SawTooth,4,ParallelRadixSort,7,1597184
100000,SawTooth,4,ParallelRadixSort,8,2370156
100000,SawTooth,4,ParallelRadixSort,9,3351969
100000,SawTooth,4,ParallelRadixSort,10,4597995
100000,SawTooth,4,StdSort,0,43113
100000,SawTooth,4,StdSort,1,61876
100000,SawTooth,4,StdSort,2,178170
100000,SawTooth,4,StdSort,3,551875
100000,SawTooth,4,StdSort,4,1159206
100000,SawTooth,4,StdSort,5,2152241
100000,SawTooth,4,StdSort,6,3636530
100000,SawTooth,4,StdSort,7,5712653
100000,SawTooth,4,StdSort,8,8468982
100000,SawTooth,4,StdSort,9,12010599
100000,SawTooth,4,StdSort,10,16436846
100000,SawTooth,5,ParallelSort,0,13407
100000,SawTooth,5,ParallelSort,1,18992
100000,SawTooth,5,ParallelSort,2,52303
100000,SawTooth,5,ParallelSort,3,164281
100000,SawTooth,5,ParallelSort,4,346661
100000,SawTooth,5,ParallelSort,5,645827
100000,SawTooth,5,ParallelSort,6,1097825
100000,SawTooth,5,ParallelSort,7,1722528
100000,SawTooth,5,ParallelSort,8,2534872
100000,SawTooth,5,ParallelSort,9,3589374
100000,SawTooth,5,ParallelSort,10,4923770
100000,SawTooth,5,ParallelBufferedSort,0,8660
100000,SawTooth,5,ParallelBufferedSort,1,11763
100000,SawTooth,5,ParallelBufferedSort,2,31362
100000,SawTooth,5,ParallelBufferedSort,3,95110
100000,SawTooth,5,ParallelBufferedSort,4,198555
100000,SawTooth,5,ParallelBufferedSort,5,351413
100000,SawTooth,5,ParallelBufferedSort,6,563322
100000,SawTooth,5,ParallelBufferedSort,7,885229
100000,SawTooth,5,ParallelBufferedSort,8,1313603
100000,SawTooth,5,ParallelBufferedSort,9,1856122
100000,SawTooth,5,ParallelBufferedSort,10,2562403
100000,SawTooth,5,ParallelRadixSort,0,29451
100000,SawTooth,5,ParallelRadixSort,1,43312
100000,SawTooth,5,ParallelRadixSort,2,103529
100000,SawTooth,5,ParallelRadixSort,3,289967
100000,SawTooth,5,ParallelRadixSort,4,601831
100000,SawTooth,5,ParallelRadixSort,5,1115965
100000,SawTooth,5,ParallelRadixSort,6,1886135
100000,SawTooth,5,ParallelRadixSort,7,2955901
100000,SawTooth,5,ParallelRadixSort,8,4378134
100000,SawTooth,5,ParallelRadixSort,9,6211087
100000,SawTooth,5,ParallelRadixSort,10,8512054
100000,SawTooth,5,StdSort,0,43082
100000,SawTooth,5,StdSort,1,61872
100000,SawTooth,5,StdSort,2,178430
100000,SawTooth,5,StdSort,3,552479
100000,SawTooth,5,StdSort,4,1158754
100000,SawTooth,5,StdSort,5,2152281
100000,SawTooth,5,StdSort,6,3637623
100000,SawTooth,5,StdSort,7,5712631
100000,SawTooth,5,StdSort,8,8468594
100000,SawTooth,5,StdSort,9,12011725
100000,SawTooth,5,StdSort,10,16437923
100000,SawTooth,6,ParallelSort,0,12642
100000,SawTooth,6,ParallelSort,1,17938
100000,SawTooth,6,ParallelSort,2,48986
100000,SawTooth,6,ParallelSort,3,152453
100000,SawTooth,6,ParallelSort,4,322630
100000,SawTooth,6,ParallelSort,5,601464
100000,SawTooth,6,ParallelSort,6,1012123
100000,SawTooth,6,ParallelSort,7,1599167
100000,SawTooth,6,ParallelSort,8,2375782
100000,SawTooth,6,ParallelSort,9,3344104
100000,SawTooth,6,ParallelSort,10,4572533
100000,SawTooth,6,ParallelBufferedSort,0,7938
100000,SawTooth,6,ParallelBufferedSort,1,10554
100000,SawTooth,6,ParallelBufferedSort,2,26167
100000,SawTooth,6,ParallelBufferedSort,3,81782
100000,SawTooth,6,ParallelBufferedSort,4,158814
100000,SawTooth,6,ParallelBufferedSort,5,299942
100000,SawTooth,6,ParallelBufferedSort,6,498191
100000,SawTooth,6,ParallelBufferedSort,7,796721
100000,SawTooth,6,ParallelBufferedSort,8,1156835
100000,SawTooth,6,ParallelBufferedSort,9,1663659
100000,SawTooth,6,ParallelBufferedSort,10,2240411
100000,SawTooth,6,ParallelRadixSort,0,29261
100000,SawTooth,6,ParallelRadixSort,1,43110
100000,SawTooth,6,ParallelRadixSort,2,102981
100000,SawTooth,6,ParallelRadixSort,3,287828
100000,SawTooth,6,ParallelRadixSort,4,597824
100000,SawTooth,6,ParallelRadixSort,5,1106756
100000,SawTooth,6,ParallelRadixSort,6,1868313
100000,SawTooth,6,ParallelRadixSort,7,2938383
100000,SawTooth,6,ParallelRadixSort,8,4352933
100000,SawTooth,6,ParallelRadixSort,9,6174769
100000,SawTooth,6,ParallelRadixSort,10,8441680
100000,SawTooth,6,StdSort,0,43081
100000,SawTooth,6,StdSort,1,61872
100000,SawTooth,6,StdSort,2,178112
100000,SawTooth,6,StdSort,3,552470
100000,SawTooth,6,StdSort,4,1157959
100000,SawTooth,6,StdSort,5,2151540
100000,SawTooth,6,StdSort,6,3636488
100000,SawTooth,6,StdSort,7,5712640
100000,SawTooth,6,StdSort,8,8467370
100000,SawTooth,6,StdSort,9,12010735
100000,SawTooth,6,StdSort,10,16437376
100000,SawTooth,7,ParallelSort,0,12412
100000,SawTooth,7,ParallelSort,1,17436
100000,SawTooth,7,ParallelSort,2,48113
100000,SawTooth,7,ParallelSort,3,146943
100000,SawTooth,7,ParallelSort,4,308295
100000,SawTooth,7,ParallelSort,5,576500
100000,SawTooth,7,ParallelSort,6,985597
100000,SawTooth,7,ParallelSort,7,1539537
100000,SawTooth,7,ParallelSort,8,2277849
100000,SawTooth,7,ParallelSort,9,3226376
100000,SawTooth,7,ParallelSort,10,4467157
100000,SawTooth,7,ParallelBufferedSort,0,7263
100000,SawTooth,7,ParallelBufferedSort,1,8491
100000,SawTooth,7,ParallelBufferedSort,2,21655
100000,SawTooth,7,ParallelBufferedSort,3,63311
100000,SawTooth,7,ParallelBufferedSort,4,132528
100000,SawTooth,7,ParallelBufferedSort,5,245531
100000,SawTooth,7,ParallelBufferedSort,6,414972
100000,SawTooth,7,ParallelBufferedSort,7,650541
100000,SawTooth,7,ParallelBufferedSort,8,964787
100000,SawTooth,7,ParallelBufferedSort,9,1367716
100000,SawTooth,7,ParallelBufferedSort,10,1871811
100000,SawTooth,7,ParallelRadixSort,0,29325
100000,SawTooth,7,ParallelRadixSort,1,43281
100000,SawTooth,7,ParallelRadixSort,2,102629
100000,SawTooth,7,ParallelRadixSort,3,286483
100000,SawTooth,7,ParallelRadixSort,4,594463
100000,SawTooth,7,ParallelRadixSort,5,1104292
100000,SawTooth,7,ParallelRadixSort,6,1860643
100000,SawTooth,7,ParallelRadixSort,7,2921989
100000,SawTooth,7,ParallelRadixSort,8,4323106
100000,SawTooth,7,ParallelRadixSort,9,6129923
100000,SawTooth,7,ParallelRadixSort,10,8388183
100000,SawTooth,7,StdSort,0,43081
100000,SawTooth,7,StdSort,1,61860
100000,SawTooth,7,StdSort,2,178116
100000,SawTooth,7,StdSort,3,552731
100000,SawTooth,7,StdSort,4,1159036
100000,SawTooth,7,StdSort,5,2152525
100000,SawTooth,7,StdSort,6,3638093
100000,SawTooth,7,StdSort,7,5712600
100000,SawTooth,7,StdSort,8,8469173
100000,SawTooth,7,StdSort,9,12014358
100000,SawTooth,7,StdSort,10,16437279
100000,SawTooth,8,ParallelSort,0,11918
100000,SawTooth,8,ParallelSort,1,16933
100000,SawTooth,8,ParallelSort,2,46212
100000,SawTooth,8,ParallelSort,3,142382
100000,SawTooth,8,ParallelSort,4,299246
100000,SawTooth,8,ParallelSort,5,561905
100000,SawTooth,8,ParallelSort,6,944003
100000,SawTooth,8,ParallelSort,7,1490789
100000,SawTooth,8,ParallelSort,8,2200857
100000,SawTooth,8,ParallelSort,9,3120941
100000,SawTooth,8,ParallelSort,10,4257584
100000,SawTooth,8,ParallelBufferedSort,0,5831
100000,SawTooth,8,ParallelBufferedSort,1,7294
100000,SawTooth,8,ParallelBufferedSort,2,15016
100000,SawTooth,8,ParallelBufferedSort,3,38788
100000,SawTooth,8,ParallelBufferedSort,4,81154
100000,SawTooth,8,ParallelBufferedSort,5,144422
100000,SawTooth,8,ParallelBufferedSort,6,260940
100000,SawTooth,8,ParallelBufferedSort,7,378308
100000,SawTooth,8,ParallelBufferedSort,8,564996
100000,SawTooth,8,ParallelBufferedSort,9,786102
100000,SawTooth,8,ParallelBufferedSort,10,1084308
100000,SawTooth,8,ParallelRadixSort,0,16020
100000,SawTooth,8,ParallelRadixSort,1,23635
100000,SawTooth,8,ParallelRadixSort,2,55161
100000,SawTooth,8,ParallelRadixSort,3,149123
100000,SawTooth,8,ParallelRadixSort,4,308028
100000,SawTooth,8,ParallelRadixSort,5,575997
100000,SawTooth,8,ParallelRadixSort,6,979294
100000,SawTooth,8,ParallelRadixSort,7,1518329
100000,SawTooth,8,ParallelRadixSort,8,2257301
100000,SawTooth,8,ParallelRadixSort,9,3167691
100000,SawTooth,8,ParallelRadixSort,10,4334495
100000,SawTooth,8,StdSort,0,43178
100000,SawTooth,8,StdSort,1,61885
100000,SawTooth,8,StdSort,2,178130
100000,SawTooth,8,StdSort,3,552813
100000,SawTooth,8,StdSort,4,1157938
100000,SawTooth,8,StdSort,5,2152709
100000,SawTooth,8,StdSort,6,3637383
100000,SawTooth,8,StdSort,7,5712602
100000,SawTooth,8,StdSort,8,8468732
100000,SawTooth,8,StdSort,9,12013267
100000,SawTooth,8,StdSort,10,16437372
1000000,Random,1,ParallelSort,0,536328
1000000,Random,1,ParallelSort,1,753930
1000000,Random,1,ParallelSort,2,2098223
1000000,Random,1,ParallelSort,3,6027815
1000000,Random,1,ParallelSort,4,12596197
1000000,Random,1,ParallelSort,5,23372856
1000000,Random,1,ParallelSort,6,39435582
1000000,Random,1,ParallelSort,7,61915661
1000000,Random,1,ParallelSort,8,91762556
1000000,Random,1,ParallelSort,9,130106314
1000000,Random,1,ParallelSort,10,178020789
1000000,Random,1,ParallelBufferedSort,0,536237
1000000,Random,1,ParallelBufferedSort,1,753867
1000000,Random,1,ParallelBufferedSort,2,2097997
1000000,Random,1,ParallelBufferedSort,3,6036255
1000000,Random,1,ParallelBufferedSort,4,12605671
1000000,Random,1,ParallelBufferedSort,5,23367870
1000000,Random,1,ParallelBufferedSort,6,39455577
1000000,Random,1,ParallelBufferedSort,7,61927852
1000000,Random,1,ParallelBufferedSort,8,91774512
1000000,Random,1,ParallelBufferedSort,9,130129484
1000000,Random,1,ParallelBufferedSort,10,178049113
1000000,Random,1,ParallelRadixSort,0,228004
1000000,Random,1,ParallelRadixSort,1,358629
1000000,Random,1,ParallelRadixSort,2,886691
1000000,Random,1,ParallelRadixSort,3,2587266
1000000,Random,1,ParallelRadixSort,4,5425452
1000000,Random,1,ParallelRadixSort,5,10138359
1000000,Random,1,ParallelRadixSort,6,17132062
1000000,Random,1,ParallelRadixSort,7,26896776
1000000,Random,1,ParallelRadixSort,8,39946836
1000000,Random,1,ParallelRadixSort,9,56631561
1000000,Random,1,ParallelRadixSort,10,77482819
1000000,Random,1,StdSort,0,536429
1000000,Random,1,StdSort,1,753721
1000000,Random,1,StdSort,2,2084014
1000000,Random,1,StdSort,3,6045461
1000000,Random,1,StdSort,4,12611568
1000000,Random,1,StdSort,5,23364907
1000000,Random,1,StdSort,6,39444351
1000000,Random,1,StdSort,7,61911023
1000000,Random,1,StdSort,8,91756176
1000000,Random,1,StdSort,9,130101300
1000000,Random,1,StdSort,10,178024441
1000000,Random,2,ParallelSort,0,227295
1000000,Random,2,ParallelSort,1,277276
1000000,Random,2,ParallelSort,2,705856
1000000,Random,2,ParallelSort,3,2082032
1000000,Random,2,ParallelSort,4,4781939
1000000,Random,2,ParallelSort,5,8914901
1000000,Random,2,ParallelSort,6,15056653
1000000,Random,2,ParallelSort,7,23638732
1000000,Random,2,ParallelSort,8,35107461
1000000,Random,2,ParallelSort,9,49651144
1000000,Random,2,ParallelSort,10,67972022
1000000,Random,2,ParallelBufferedSort,0,206707
1000000,Random,2,ParallelBufferedSort,1,274827
1000000,Random,2,ParallelBufferedSort,2,693170
1000000,Random,2,ParallelBufferedSort,3,1981944
1000000,Random,2,ParallelBufferedSort,4,4150454
1000000,Random,2,ParallelBufferedSort,5,7712114
1000000,Random,2,ParallelBufferedSort,6,13016475
1000000,Random,2,ParallelBufferedSort,7,20432947
1000000,Random,2,ParallelBufferedSort,8,30278509
1000000,Random,2,ParallelBufferedSort,9,42961918
1000000,Random,2,ParallelBufferedSort,10,58747512
1000000,Random,2,ParallelRadixSort,0,125711
1000000,Random,2,ParallelRadixSort,1,189880
1000000,Random,2,ParallelRadixSort,2,453828
1000000,Random,2,ParallelRadixSort,3,1306364
1000000,Random,2,ParallelRadixSort,4,2725790
1000000,Random,2,ParallelRadixSort,5,5076605
1000000,Random,2,ParallelRadixSort,6,8583551
1000000,Random,2,ParallelRadixSort,7,13468570
1000000,Random,2,ParallelRadixSort,8,19989603
1000000,Random,2,ParallelRadixSort,9,28350680
1000000,Random,2,ParallelRadixSort,10,38772794
1000000,Random,2,StdSort,0,535009
1000000,Random,2,StdSort,1,754052
1000000,Random,2,StdSort,2,2092268
1000000,Random,2,StdSort,3,6032647
1000000,Random,2,StdSort,4,12575614
1000000,Random,2,StdSort,5,23295842
1000000,Random,2,StdSort,6,39327320
1000000,Random,2,StdSort,7,61725864
1000000,Random,2,StdSort,8,91483483
1000000,Random,2,StdSort,9,129711377
1000000,Random,2,StdSort,10,177488438
1000000,Random,3,ParallelSort,0,195817
1000000,Random,3,ParallelSort,1,258056
1000000,Random,3,ParallelSort,2,660227
1000000,Random,3,ParallelSort,3,1920093
1000000,Random,3,ParallelSort,4,4010420
1000000,Random,3,ParallelSort,5,7467142
1000000,Random,3,ParallelSort,6,12631957
1000000,Random,3,ParallelSort,7,19750698
1000000,Random,3,ParallelSort,8,29439958
1000000,Random,3,ParallelSort,9,41574506
1000000,Random,3,ParallelSort,10,57080563
1000000,Random,3,ParallelBufferedSort,0,140673
1000000,Random,3,ParallelBufferedSort,1,183195
1000000,Random,3,ParallelBufferedSort,2,458961
1000000,Random,3,ParallelBufferedSort,3,1313073
1000000,Random,3,ParallelBufferedSort,4,2743091
1000000,Random,3,ParallelBufferedSort,5,5095471
1000000,Random,3,ParallelBufferedSort,6,8605230
1000000,Random,3,ParallelBufferedSort,7,13508126
1000000,Random,3,ParallelBufferedSort,8,20036697
1000000,Random,3,ParallelBufferedSort,9,28390688
1000000,Random,3,ParallelBufferedSort,10,38852315
1000000,Random,3,ParallelRadixSort,0,123177
1000000,Random,3,ParallelRadixSort,1,185795
1000000,Random,3,ParallelRadixSort,2,437103
1000000,Random,3,ParallelRadixSort,3,1234409
1000000,Random,3,ParallelRadixSort,4,2571038
1000000,Random,3,ParallelRadixSort,5,4788657
1000000,Random,3,ParallelRadixSort,6,6415861
1000000,Random,3,ParallelRadixSort,7,9993899
1000000,Random,3,ParallelRadixSort,8,14905390
1000000,Random,3,ParallelRadixSort,9,26684791
1000000,Random,3,ParallelRadixSort,10,28921915
1000000,Random,3,StdSort,0,538771
1000000,Random,3,StdSort,1,759452
1000000,Random,3,StdSort,2,2099789
1000000,Random,3,StdSort,3,6079849
1000000,Random,3,StdSort,4,12674763
1000000,Random,3,StdSort,5,23486122
1000000,Random,3,StdSort,6,39640541
1000000,Random,3,StdSort,7,62230067
1000000,Random,3,StdSort,8,92225172
1000000,Random,3,StdSort,9,130762712
1000000,Random,3,StdSort,10,178925307
1000000,Random,4,ParallelSort,0,153960
1000000,Random,4,ParallelSort,1,207435
1000000,Random,4,ParallelSort,2,522601
1000000,Random,4,ParallelSort,3,1514751
1000000,Random,4,ParallelSort,4,3109700
1000000,Random,4,ParallelSort,5,5801342
1000000,Random,4,ParallelSort,6,9681974
1000000,Random,4,ParallelSort,7,15177015
1000000,Random,4,ParallelSort,8,22646297
1000000,Random,4,ParallelSort,9,32073655
1000000,Random,4,ParallelSort,10,43762990
1000000,Random,4,ParallelBufferedSort,0,138412
1000000,Random,4,ParallelBufferedSort,1,183024
1000000,Random,4,ParallelBufferedSort,2,465582
1000000,Random,4,ParallelBufferedSort,3,1260416
1000000,Random,4,ParallelBufferedSort,4,2536384
1000000,Random,4,ParallelBufferedSort,5,4563996
1000000,Random,4,ParallelBufferedSort,6,7747334
1000000,Random,4,ParallelBufferedSort,7,11978970
1000000,Random,4,ParallelBufferedSort,8,17881197
1000000,Random,4,ParallelBufferedSort,9,24903847
1000000,Random,4,ParallelBufferedSort,10,34127870
1000000,Random,4,ParallelRadixSort,0,114739
1000000,Random,4,ParallelRadixSort,1,131920
1000000,Random,4,ParallelRadixSort,2,256177
1000000,Random,4,ParallelRadixSort,3,721149
1000000,Random,4,ParallelRadixSort,4,1545743
1000000,Random,4,ParallelRadixSort,5,2605000
1000000,Random,4,ParallelRadixSort,6,4361256
1000000,Random,4,ParallelRadixSort,7,6794498
1000000,Random,4,ParallelRadixSort,8,10478217
1000000,Random,4,ParallelRadixSort,9,24537979
1000000,Random,4,ParallelRadixSort,10,25871446
1000000,Random,4,StdSort,0,548371
1000000,Random,4,StdSort,1,766590
1000000,Random,4,StdSort,2,2124088
1000000,Random,4,StdSort,3,6145885
1000000,Random,4,StdSort,4,12809737
1000000,Random,4,StdSort,5,23733269
1000000,Random,4,StdSort,6,40067228
1000000,Random,4,StdSort,7,62887411
1000000,Random,4,StdSort,8,93200054
1000000,Random,4,StdSort,9,132147223
1000000,Random,4,StdSort,10,180824275
1000000,Random,5,ParallelSort,0,136055
1000000,Random,5,ParallelSort,1,171869
1000000,Random,5,ParallelSort,2,424521
1000000,Random,5,ParallelSort,3,1269892
1000000,Random,5,ParallelSort,4,2439303
1000000,Random,5,ParallelSort,5,4727291
1000000,Random,5,ParallelSort,6,7887662
1000000,Random,5,ParallelSort,7,12259540
1000000,Random,5,ParallelSort,8,18665870
1000000,Random,5,ParallelSort,9,25298831
1000000,Random,5,ParallelSort,10,34863990
1000000,Random,5,ParallelBufferedSort,0,110635
1000000,Random,5,ParallelBufferedSort,1,144638
1000000,Random,5,ParallelBufferedSort,2,357832
1000000,Random,5,ParallelBufferedSort,3,1010801
1000000,Random,5,ParallelBufferedSort,4,2092568
1000000,Random,5,ParallelBufferedSort,5,3924206
1000000,Random,5,ParallelBufferedSort,6,6535194
1000000,Random,5,ParallelBufferedSort,7,10266283
1000000,Random,5,ParallelBufferedSort,8,15140477
1000000,Random,5,ParallelBufferedSort,9,21479145
1000000,Random,5,ParallelBufferedSort,10,29415782
1000000,Random,5,ParallelRadixSort,0,72413
1000000,Random,5,ParallelRadixSort,1,98634
1000000,Random,5,ParallelRadixSort,2,224643
1000000,Random,5,ParallelRadixSort,3,624469
1000000,Random,5,ParallelRadixSort,4,1293977
1000000,Random,5,ParallelRadixSort,5,2402279
1000000,Random,5,ParallelRadixSort,6,4172540
1000000,Random,5,ParallelRadixSort,7,6386486
1000000,Random,5,ParallelRadixSort,8,9470704
1000000,Random,5,ParallelRadixSort,9,13643085
1000000,Random,5,ParallelRadixSort,10,18378059
1000000,Random,5,StdSort,0,535896
1000000,Random,5,StdSort,1,755222
1000000,Random,5,StdSort,2,2087005
1000000,Random,5,StdSort,3,6020544
1000000,Random,5,StdSort,4,12583370
1000000,Random,5,StdSort,5,23339984
1000000,Random,5,StdSort,6,39396242
1000000,Random,5,StdSort,7,61838001
1000000,Random,5,StdSort,8,91646586
1000000,Random,5,StdSort,9,129947000
1000000,Random,5,StdSort,10,177819155
1000000,Random,6,ParallelSort,0,117251
1000000,Random,6,ParallelSort,1,153463
1000000,Random,6,ParallelSort,2,381949
1000000,Random,6,ParallelSort,3,1115138
1000000,Random,6,ParallelSort,4,2269548
1000000,Random,6,ParallelSort,5,4290253
1000000,Random,6,ParallelSort,6,7101784
1000000,Random,6,ParallelSort,7,11162794
1000000,Random,6,ParallelSort,8,16655591
1000000,Random,6,ParallelSort,9,23637925
1000000,Random,6,ParallelSort,10,32030685
1000000,Random,6,ParallelBufferedSort,0,102668
1000000,Random,6,ParallelBufferedSort,1,134918
1000000,Random,6,ParallelBufferedSort,2,331728
1000000,Random,6,ParallelBufferedSort,3,885413
1000000,Random,6,ParallelBufferedSort,4,1909938
1000000,Random,6,ParallelBufferedSort,5,3494476
1000000,Random,6,ParallelBufferedSort,6,5903477
1000000,Random,6,ParallelBufferedSort,7,9469453
1000000,Random,6,ParallelBufferedSort,8,13229268
1000000,Random,6,ParallelBufferedSort,9,18668783
1000000,Random,6,ParallelBufferedSort,10,26086853
1000000,Random,6,ParallelRadixSort,0,63112
1000000,Random,6,ParallelRadixSort,1,86138
1000000,Random,6,ParallelRadixSort,2,183654
1000000,Random,6,ParallelRadixSort,3,509331
1000000,Random,6,ParallelRadixSort,4,1070083
1000000,Random,6,ParallelRadixSort,5,1948137
1000000,Random,6,ParallelRadixSort,6,3355655
1000000,Random,6,ParallelRadixSort,7,5264081
1000000,Random,6,ParallelRadixSort,8,7663124
1000000,Random,6,ParallelRadixSort,9,10845397
1000000,Random,6,ParallelRadixSort,10,14839258
1000000,Random,6,StdSort,0,541856
1000000,Random,6,StdSort,1,761768
1000000,Random,6,StdSort,2,2109551
1000000,Random,6,StdSort,3,6123999
1000000,Random,6,StdSort,4,12767445
1000000,Random,6,StdSort,5,23658328
1000000,Random,6,StdSort,6,39940723
1000000,Random,6,StdSort,7,62689071
1000000,Random,6,StdSort,8,92910614
1000000,Random,6,StdSort,9,131737902
1000000,Random,6,StdSort,10,180263068
1000000,Random,7,ParallelSort,0,109340
1000000,Random,7,ParallelSort,1,140505
1000000,Random,7,ParallelSort,2,349296
1000000,Random,7,ParallelSort,3,1006069
1000000,Random,7,ParallelSort,4,2095099
1000000,Random,7,ParallelSort,5,3913690
1000000,Random,7,ParallelSort,6,6642344
1000000,Random,7,ParallelSort,7,10295212
1000000,Random,7,ParallelSort,8,15191229
1000000,Random,7,ParallelSort,9,21454279
1000000,Random,7,ParallelSort,10,29014640
1000000,Random,7,ParallelBufferedSort,0,91756
1000000,Random,7,ParallelBufferedSort,1,118535
1000000,Random,7,ParallelBufferedSort,2,287905
1000000,Random,7,ParallelBufferedSort,3,827566
1000000,Random,7,ParallelBufferedSort,4,1711791
1000000,Random,7,ParallelBufferedSort,5,3101519
1000000,Random,7,ParallelBufferedSort,6,5317144
1000000,Random,7,ParallelBufferedSort,7,8162526
1000000,Random,7,ParallelBufferedSort,8,11809021
1000000,Random,7,ParallelBufferedSort,9,16659939
1000000,Random,7,ParallelBufferedSort,10,22842397
1000000,Random,7,ParallelRadixSort,0,59850
1000000,Random,7,ParallelRadixSort,1,81176
1000000,Random,7,ParallelRadixSort,2,173726
1000000,Random,7,ParallelRadixSort,3,468129
1000000,Random,7,ParallelRadixSort,4,993286
1000000,Random,7,ParallelRadixSort,5,1785085
1000000,Random,7,ParallelRadixSort,6,3005562
1000000,Random,7,ParallelRadixSort,7,4741456
1000000,Random,7,ParallelRadixSort,8,7023701
1000000,Random,7,ParallelRadixSort,9,10312095
1000000,Random,7,ParallelRadixSort,10,13475001
1000000,Random,7,StdSort,0,540619
1000000,Random,7,StdSort,1,756482
1000000,Random,7,StdSort,2,2095843
1000000,Random,7,StdSort,3,6036299
1000000,Random,7,StdSort,4,12618958
1000000,Random,7,StdSort,5,23381475
1000000,Random,7,StdSort,6,39476089
1000000,Random,7,StdSort,7,61959637
1000000,Random,7,StdSort,8,91822947
1000000,Random,7,StdSort,9,130197873
1000000,Random,7,StdSort,10,178150540
1000000,Random,8,ParallelSort,0,103002
1000000,Random,8,ParallelSort,1,132466
1000000,Random,8,ParallelSort,2,328951
1000000,Random,8,ParallelSort,3,940565
1000000,Random,8,ParallelSort,4,1972536
1000000,Random,8,ParallelSort,5,3675294
1000000,Random,8,ParallelSort,6,6168854
1000000,Random,8,ParallelSort,7,9710750
1000000,Random,8,ParallelSort,8,14411628
1000000,Random,8,ParallelSort,9,20360934
1000000,Random,8,ParallelSort,10,27923460
1000000,Random,8,ParallelBufferedSort,0,74165
1000000,Random,8,ParallelBufferedSort,1,97950
1000000,Random,8,ParallelBufferedSort,2,229595
1000000,Random,8,ParallelBufferedSort,3,650705
1000000,Random,8,ParallelBufferedSort,4,1372507
1000000,Random,8,ParallelBufferedSort,5,2534892
1000000,Random,8,ParallelBufferedSort,6,4281402
1000000,Random,8,ParallelBufferedSort,7,6691317
1000000,Random,8,ParallelBufferedSort,8,9916121
1000000,Random,8,ParallelBufferedSort,9,14032118
1000000,Random,8,ParallelBufferedSort,10,19153217
1000000,Random,8,ParallelRadixSort,0,56008
1000000,Random,8,ParallelRadixSort,1,72611
1000000,Random,8,ParallelRadixSort,2,151265
1000000,Random,8,ParallelRadixSort,3,425688
1000000,Random,8,ParallelRadixSort,4,831439
1000000,Random,8,ParallelRadixSort,5,1623654
1000000,Random,8,ParallelRadixSort,6,2588838
1000000,Random,8,ParallelRadixSort,7,4228727
1000000,Random,8,ParallelRadixSort,8,6259707
1000000,Random,8,ParallelRadixSort,9,8554675
1000000,Random,8,ParallelRadixSort,10,11707431
1000000,Random,8,StdSort,0,539126
1000000,Random,8,StdSort,1,753117
1000000,Random,8,StdSort,2,2081970
1000000,Random,8,StdSort,3,6010709
1000000,Random,8,StdSort,4,12535577
1000000,Random,8,StdSort,5,23235537
1000000,Random,8,StdSort,6,39225135
1000000,Random,8,StdSort,7,61564623
1000000,Random,8,StdSort,8,91240316
1000000,Random,8,StdSort,9,129369022
1000000,Random,8,StdSort,10,177024767
1000000,PreSorted,1,ParallelSort,0,234709
1000000,PreSorted,1,ParallelSort,1,336578
1000000,PreSorted,1,ParallelSort,2,1033703
1000000,PreSorted,1,ParallelSort,3,3248508
1000000,PreSorted,1,ParallelSort,4,6825930
1000000,PreSorted,1,ParallelSort,5,12700822
1000000,PreSorted,1,ParallelSort,6,21466037
1000000,PreSorted,1,ParallelSort,7,33715346
1000000,PreSorted,1,ParallelSort,8,49981544
1000000,PreSorted,1,ParallelSort,9,70883209
1000000,PreSorted,1,ParallelSort,10,96992174
1000000,PreSorted,1,ParallelBufferedSort,0,234441
1000000,PreSorted,1,ParallelBufferedSort,1,336805
1000000,PreSorted,1,ParallelBufferedSort,2,1031930
1000000,PreSorted,1,ParallelBufferedSort,3,3247848
1000000,PreSorted,1,ParallelBufferedSort,4,6833132
1000000,PreSorted,1,ParallelBufferedSort,5,12697592
1000000,PreSorted,1,ParallelBufferedSort,6,21464460
1000000,PreSorted,1,ParallelBufferedSort,7,33714568
1000000,PreSorted,1,ParallelBufferedSort,8,49983417
1000000,PreSorted,1,ParallelBufferedSort,9,70877371
1000000,PreSorted,1,ParallelBufferedSort,10,96999998
1000000,PreSorted,1,ParallelRadixSort,0,229473
1000000,PreSorted,1,ParallelRadixSort,1,360855
1000000,PreSorted,1,ParallelRadixSort,2,888815
1000000,PreSorted,1,ParallelRadixSort,3,2583147
1000000,PreSorted,1,ParallelRadixSort,4,5440040
1000000,PreSorted,1,ParallelRadixSort,5,10174269
1000000,PreSorted,1,ParallelRadixSort,6,17199794
1000000,PreSorted,1,ParallelRadixSort,7,27015950
1000000,PreSorted,1,ParallelRadixSort,8,40119018
1000000,PreSorted,1,ParallelRadixSort,9,56953791
1000000,PreSorted,1,ParallelRadixSort,10,77961983
1000000,PreSorted,1,StdSort,0,234310
1000000,PreSorted,1,StdSort,1,336415
1000000,PreSorted,1,StdSort,2,1033006
1000000,PreSorted,1,StdSort,3,3240385
1000000,PreSorted,1,StdSort,4,6820016
1000000,PreSorted,1,StdSort,5,12686343
1000000,PreSorted,1,StdSort,6,21449565
1000000,PreSorted,1,StdSort,7,33699678
1000000,PreSorted,1,StdSort,8,49970113
1000000,PreSorted,1,StdSort,9,70867624
1000000,PreSorted,1,StdSort,10,96988564
1000000,PreSorted,2,ParallelSort,0,107704
1000000,PreSorted,2,ParallelSort,1,152984
1000000,PreSorted,2,ParallelSort,2,447732
1000000,PreSorted,2,ParallelSort,3,1398062
1000000,PreSorted,2,ParallelSort,4,2920751
1000000,PreSorted,2,ParallelSort,5,5426349
1000000,PreSorted,2,ParallelSort,6,9163417
1000000,PreSorted,2,ParallelSort,7,14413078
1000000,PreSorted,2,ParallelSort,8,21365996
1000000,PreSorted,2,ParallelSort,9,30278144
1000000,PreSorted,2,ParallelSort,10,41419220
1000000,PreSorted,2,ParallelBufferedSort,0,95296
1000000,PreSorted,2,ParallelBufferedSort,1,131504
1000000,PreSorted,2,ParallelBufferedSort,2,367963
1000000,PreSorted,2,ParallelBufferedSort,3,1121149
1000000,PreSorted,2,ParallelBufferedSort,4,2333406
1000000,PreSorted,2,ParallelBufferedSort,5,4333088
1000000,PreSorted,2,ParallelBufferedSort,6,7295368
1000000,PreSorted,2,ParallelBufferedSort,7,11448082
1000000,PreSorted,2,ParallelBufferedSort,8,16973127
1000000,PreSorted,2,ParallelBufferedSort,9,24055317
1000000,PreSorted,2,ParallelBufferedSort,10,32920437
1000000,PreSorted,2,ParallelRadixSort,0,119904
1000000,PreSorted,2,ParallelRadixSort,1,185722
1000000,PreSorted,2,ParallelRadixSort,2,450495
1000000,PreSorted,2,ParallelRadixSort,3,1298087
1000000,PreSorted,2,ParallelRadixSort,4,2725049
1000000,PreSorted,2,ParallelRadixSort,5,5097544
1000000,PreSorted,2,ParallelRadixSort,6,8616908
1000000,PreSorted,2,ParallelRadixSort,7,13544322
1000000,PreSorted,2,ParallelRadixSort,8,20143071
1000000,PreSorted,2,ParallelRadixSort,9,28555953
1000000,PreSorted,2,ParallelRadixSort,10,39064732
1000000,PreSorted,2,StdSort,0,234345
1000000,PreSorted,2,StdSort,1,336491
1000000,PreSorted,2,StdSort,2,1032437
1000000,PreSorted,2,StdSort,3,3240138
1000000,PreSorted,2,StdSort,4,6818641
1000000,PreSorted,2,StdSort,5,12691363
1000000,PreSorted,2,StdSort,6,21446960
1000000,PreSorted,2,StdSort,7,33697726
1000000,PreSorted,2,StdSort,8,49966293
1000000,PreSorted,2,StdSort,9,70868241
1000000,PreSorted,2,StdSort,10,96988826
1000000,PreSorted,3,ParallelSort,0,78026
1000000,PreSorted,3,ParallelSort,1,110589
1000000,PreSorted,3,ParallelSort,2,323423
1000000,PreSorted,3,ParallelSort,3,1017128
1000000,PreSorted,3,ParallelSort,4,2143295
1000000,PreSorted,3,ParallelSort,5,3948547
1000000,PreSorted,3,ParallelSort,6,6650379
1000000,PreSorted,3,ParallelSort,7,10414656
1000000,PreSorted,3,ParallelSort,8,15442563
1000000,PreSorted,3,ParallelSort,9,21896478
1000000,PreSorted,3,ParallelSort,10,29940563
1000000,PreSorted,3,ParallelBufferedSort,0,71832
1000000,PreSorted,3,ParallelBufferedSort,1,96038
1000000,PreSorted,3,ParallelBufferedSort,2,250640
1000000,PreSorted,3,ParallelBufferedSort,3,740390
1000000,PreSorted,3,ParallelBufferedSort,4,1530461
1000000,PreSorted,3,ParallelBufferedSort,5,2829415
1000000,PreSorted,3,ParallelBufferedSort,6,4768982
1000000,PreSorted,3,ParallelBufferedSort,7,7479186
1000000,PreSorted,3,ParallelBufferedSort,8,11098796
1000000,PreSorted,3,ParallelBufferedSort,9,15707260
1000000,PreSorted,3,ParallelBufferedSort,10,21483345
1000000,PreSorted,3,ParallelRadixSort,0,125610
1000000,PreSorted,3,ParallelRadixSort,1,182281
1000000,PreSorted,3,ParallelRadixSort,2,452643
1000000,PreSorted,3,ParallelRadixSort,3,1272901
1000000,PreSorted,3,ParallelRadixSort,4,2694084
1000000,PreSorted,3,ParallelRadixSort,5,3806367
1000000,PreSorted,3,ParallelRadixSort,6,6552765
1000000,PreSorted,3,ParallelRadixSort,7,10117510
1000000,PreSorted,3,ParallelRadixSort,8,14991885
1000000,PreSorted,3,ParallelRadixSort,9,21309356
1000000,PreSorted,3,ParallelRadixSort,10,29020230
1000000,PreSorted,3,StdSort,0,234413
1000000,PreSorted,3,StdSort,1,336854
1000000,PreSorted,3,StdSort,2,1032226
1000000,PreSorted,3,StdSort,3,3238685
1000000,PreSorted,3,StdSort,4,6817248
1000000,PreSorted,3,StdSort,5,12687255
1000000,PreSorted,3,StdSort,6,21442130
1000000,PreSorted,3,StdSort,7,33697509
1000000,PreSorted,3,StdSort,8,49960448
1000000,PreSorted,3,StdSort,9,70871315
1000000,PreSorted,3,StdSort,10,96990580
1000000,PreSorted,4,ParallelSort,0,77026
1000000,PreSorted,4,ParallelSort,1,108307
1000000,PreSorted,4,ParallelSort,2,312965
1000000,PreSorted,4,ParallelSort,3,939926
1000000,PreSorted,4,ParallelSort,4,1890687
1000000,PreSorted,4,ParallelSort,5,3512150
1000000,PreSorted,4,ParallelSort,6,6151882
1000000,PreSorted,4,ParallelSort,7,9655550
1000000,PreSorted,4,ParallelSort,8,14335559
1000000,PreSorted,4,ParallelSort,9,20331281
1000000,PreSorted,4,ParallelSort,10,27823923
1000000,PreSorted,4,ParallelBufferedSort,0,65599
1000000,PreSorted,4,ParallelBufferedSort,1,85991
1000000,PreSorted,4,ParallelBufferedSort,2,225387
1000000,PreSorted,4,ParallelBufferedSort,3,666003
1000000,PreSorted,4,ParallelBufferedSort,4,1424046
1000000,PreSorted,4,ParallelBufferedSort,5,2546420
1000000,PreSorted,4,ParallelBufferedSort,6,4289733
1000000,PreSorted,4,ParallelBufferedSort,7,6727142
1000000,PreSorted,4,ParallelBufferedSort,8,9966993
1000000,PreSorted,4,ParallelBufferedSort,9,14130302
1000000,PreSorted,4,ParallelBufferedSort,10,19325671
1000000,PreSorted,4,ParallelRadixSort,0,114021
1000000,PreSorted,4,ParallelRadixSort,1,169440
1000000,PreSorted,4,ParallelRadixSort,2,403457
1000000,PreSorted,4,ParallelRadixSort,3,1147983
1000000,PreSorted,4,ParallelRadixSort,4,1385083
1000000,PreSorted,4,ParallelRadixSort,5,2714447
1000000,PreSorted,4,ParallelRadixSort,6,4398787
1000000,PreSorted,4,ParallelRadixSort,7,6750721
1000000,PreSorted,4,ParallelRadixSort,8,9949873
1000000,PreSorted,4,ParallelRadixSort,9,14915273
1000000,PreSorted,4,ParallelRadixSort,10,19754846
1000000,PreSorted,4,StdSort,0,234286
1000000,PreSorted,4,StdSort,1,336541
1000000,PreSorted,4,StdSort,2,1032212
1000000,PreSorted,4,StdSort,3,3240371
1000000,PreSorted,4,StdSort,4,6816341
1000000,PreSorted,4,StdSort,5,12685555
1000000,PreSorted,4,StdSort,6,21445511
1000000,PreSorted,4,StdSort,7,33695844
1000000,PreSorted,4,StdSort,8,49966825
1000000,PreSorted,4,StdSort,9,70867759
1000000,PreSorted,4,StdSort,10,96995078
1000000,PreSorted,5,ParallelSort,0,67786
1000000,PreSorted,5,ParallelSort,1,95844
1000000,PreSorted,5,ParallelSort,2,271973
1000000,PreSorted,5,ParallelSort,3,879819
1000000,PreSorted,5,ParallelSort,4,1745210
1000000,PreSorted,5,ParallelSort,5,3231268
1000000,PreSorted,5,ParallelSort,6,5452203
1000000,PreSorted,5,ParallelSort,7,8557854
1000000,PreSorted,5,ParallelSort,8,12715389
1000000,PreSorted,5,ParallelSort,9,17985423
1000000,PreSorted,5,ParallelSort,10,25262295
1000000,PreSorted,5,ParallelBufferedSort,0,53740
1000000,PreSorted,5,ParallelBufferedSort,1,75431
1000000,PreSorted,5,ParallelBufferedSort,2,187540
1000000,PreSorted,5,ParallelBufferedSort,3,555159
1000000,PreSorted,5,ParallelBufferedSort,4,1149357
1000000,PreSorted,5,ParallelBufferedSort,5,2129218
1000000,PreSorted,5,ParallelBufferedSort,6,3585257
1000000,PreSorted,5,ParallelBufferedSort,7,5620333
1000000,PreSorted,5,ParallelBufferedSort,8,8331825
1000000,PreSorted,5,ParallelBufferedSort,9,11810504
1000000,PreSorted,5,ParallelBufferedSort,10,16156459
1000000,PreSorted,5,ParallelRadixSort,0,74639
1000000,PreSorted,5,ParallelRadixSort,1,102019
1000000,PreSorted,5,ParallelRadixSort,2,230161
1000000,PreSorted,5,ParallelRadixSort,3,632485
1000000,PreSorted,5,ParallelRadixSort,4,1303654
1000000,PreSorted,5,ParallelRadixSort,5,2575124
1000000,PreSorted,5,ParallelRadixSort,6,4354768
1000000,PreSorted,5,ParallelRadixSort,7,6395174
1000000,PreSorted,5,ParallelRadixSort,8,9470714
1000000,PreSorted,5,ParallelRadixSort,9,14250392
1000000,PreSorted,5,ParallelRadixSort,10,18465572
1000000,PreSorted,5,StdSort,0,234414
1000000,PreSorted,5,StdSort,1,336499
1000000,PreSorted,5,StdSort,2,1032060
1000000,PreSorted,5,StdSort,3,3236268
1000000,PreSorted,5,StdSort,4,6815534
1000000,PreSorted,5,StdSort,5,12684800
1000000,PreSorted,5,StdSort,6,21443308
1000000,PreSorted,5,StdSort,7,33697034
1000000,PreSorted,5,StdSort,8,49964672
1000000,PreSorted,5,StdSort,9,70865962
1000000,PreSorted,5,StdSort,10,96995315
1000000,PreSorted,6,ParallelSort,0,60904
1000000,PreSorted,6,ParallelSort,1,84774
1000000,PreSorted,6,ParallelSort,2,242191
1000000,PreSorted,6,ParallelSort,3,763535
1000000,PreSorted,6,ParallelSort,4,1593990
1000000,PreSorted,6,ParallelSort,5,2960043
1000000,PreSorted,6,ParallelSort,6,4999308
1000000,PreSorted,6,ParallelSort,7,7848051
1000000,PreSorted,6,ParallelSort,8,11648766
1000000,PreSorted,6,ParallelSort,9,16502357
1000000,PreSorted,6,ParallelSort,10,22672457
1000000,PreSorted,6,ParallelBufferedSort,0,49159
1000000,PreSorted,6,ParallelBufferedSort,1,64697
1000000,PreSorted,6,ParallelBufferedSort,2,164211
1000000,PreSorted,6,ParallelBufferedSort,3,487560
1000000,PreSorted,6,ParallelBufferedSort,4,1006407
1000000,PreSorted,6,ParallelBufferedSort,5,1862582
1000000,PreSorted,6,ParallelBufferedSort,6,3133138
1000000,PreSorted,6,ParallelBufferedSort,7,4912245
1000000,PreSorted,6,ParallelBufferedSort,8,7279542
1000000,PreSorted,6,ParallelBufferedSort,9,10316712
1000000,PreSorted,6,ParallelBufferedSort,10,14114929
1000000,PreSorted,6,ParallelRadixSort,0,69250
1000000,PreSorted,6,ParallelRadixSort,1,88308
1000000,PreSorted,6,ParallelRadixSort,2,192126
1000000,PreSorted,6,ParallelRadixSort,3,531265
1000000,PreSorted,6,ParallelRadixSort,4,1055686
1000000,PreSorted,6,ParallelRadixSort,5,1969680
1000000,PreSorted,6,ParallelRadixSort,6,3319614
1000000,PreSorted,6,ParallelRadixSort,7,5331920
1000000,PreSorted,6,ParallelRadixSort,8,7947671
1000000,PreSorted,6,ParallelRadixSort,9,11234797
1000000,PreSorted,6,ParallelRadixSort,10,14927925
1000000,PreSorted,6,StdSort,0,234386
1000000,PreSorted,6,StdSort,1,336660
1000000,PreSorted,6,StdSort,2,1032079
1000000,PreSorted,6,StdSort,3,3241899
1000000,PreSorted,6,StdSort,4,6820614
1000000,PreSorted,6,StdSort,5,12687882
1000000,PreSorted,6,StdSort,6,21443023
1000000,PreSorted,6,StdSort,7,33694330
1000000,PreSorted,6,StdSort,8,49957831
1000000,PreSorted,6,StdSort,9,70867035
1000000,PreSorted,6,StdSort,10,96989527
1000000,PreSorted,7,ParallelSort,0,52040
1000000,PreSorted,7,ParallelSort,1,73323
1000000,PreSorted,7,ParallelSort,2,213466
1000000,PreSorted,7,ParallelSort,3,675372
1000000,PreSorted,7,ParallelSort,4,1413849
1000000,PreSorted,7,ParallelSort,5,2630077
1000000,PreSorted,7,ParallelSort,6,4437857
1000000,PreSorted,7,ParallelSort,7,6971430
1000000,PreSorted,7,ParallelSort,8,10342515
1000000,PreSorted,7,ParallelSort,9,14751542
1000000,PreSorted,7,ParallelSort,10,20077877
1000000,PreSorted,7,ParallelBufferedSort,0,50236
1000000,PreSorted,7,ParallelBufferedSort,1,63422
1000000,PreSorted,7,ParallelBufferedSort,2,144295
1000000,PreSorted,7,ParallelBufferedSort,3,405398
1000000,PreSorted,7,ParallelBufferedSort,4,852620
1000000,PreSorted,7,ParallelBufferedSort,5,1531600
1000000,PreSorted,7,ParallelBufferedSort,6,2565865
1000000,PreSorted,7,ParallelBufferedSort,7,4026910
1000000,PreSorted,7,ParallelBufferedSort,8,5967918
1000000,PreSorted,7,ParallelBufferedSort,9,8447170
1000000,PreSorted,7,ParallelBufferedSort,10,11550669
1000000,PreSorted,7,ParallelRadixSort,0,59000
1000000,PreSorted,7,ParallelRadixSort,1,79888
1000000,PreSorted,7,ParallelRadixSort,2,166837
1000000,PreSorted,7,ParallelRadixSort,3,505223
1000000,PreSorted,7,ParallelRadixSort,4,960554
1000000,PreSorted,7,ParallelRadixSort,5,1871243
1000000,PreSorted,7,ParallelRadixSort,6,3006068
1000000,PreSorted,7,ParallelRadixSort,7,4936288
1000000,PreSorted,7,ParallelRadixSort,8,7047398
1000000,PreSorted,7,ParallelRadixSort,9,9927596
1000000,PreSorted,7,ParallelRadixSort,10,13599900
1000000,PreSorted,7,StdSort,0,234142
1000000,PreSorted,7,StdSort,1,336509
1000000,PreSorted,7,StdSort,2,1033015
1000000,PreSorted,7,StdSort,3,3236504
1000000,PreSorted,7,StdSort,4,6813757
1000000,PreSorted,7,StdSort,5,12683866
1000000,PreSorted,7,StdSort,6,21448290
1000000,PreSorted,7,StdSort,7,33694751
1000000,PreSorted,7,StdSort,8,49972442
1000000,PreSorted,7,StdSort,9,70875353
1000000,PreSorted,7,StdSort,10,96993152
1000000,PreSorted,8,ParallelSort,0,51707
1000000,PreSorted,8,ParallelSort,1,73106
1000000,PreSorted,8,ParallelSort,2,213564
1000000,PreSorted,8,ParallelSort,3,676829
1000000,PreSorted,8,ParallelSort,4,1415188
1000000,PreSorted,8,ParallelSort,5,2620427
1000000,PreSorted,8,ParallelSort,6,4422783
1000000,PreSorted,8,ParallelSort,7,6939996
1000000,PreSorted,8,ParallelSort,8,10283091
1000000,PreSorted,8,ParallelSort,9,14583965
1000000,PreSorted,8,ParallelSort,10,19948324
1000000,PreSorted,8,ParallelBufferedSort,0,44733
1000000,PreSorted,8,ParallelBufferedSort,1,53132
1000000,PreSorted,8,ParallelBufferedSort,2,123417
1000000,PreSorted,8,ParallelBufferedSort,3,336187
1000000,PreSorted,8,ParallelBufferedSort,4,690459
1000000,PreSorted,8,ParallelBufferedSort,5,1246215
1000000,PreSorted,8,ParallelBufferedSort,6,2100055
1000000,PreSorted,8,ParallelBufferedSort,7,3277148
1000000,PreSorted,8,ParallelBufferedSort,8,4852703
1000000,PreSorted,8,ParallelBufferedSort,9,6870622
1000000,PreSorted,8,ParallelBufferedSort,10,9369731
1000000,PreSorted,8,ParallelRadixSort,0,56197
1000000,PreSorted,8,ParallelRadixSort,1,73945
1000000,PreSorted,8,ParallelRadixSort,2,152848
1000000,PreSorted,8,ParallelRadixSort,3,407537
1000000,PreSorted,8,ParallelRadixSort,4,832101
1000000,PreSorted,8,ParallelRadixSort,5,1580569
1000000,PreSorted,8,ParallelRadixSort,6,2664057
1000000,PreSorted,8,ParallelRadixSort,7,4091916
1000000,PreSorted,8,ParallelRadixSort,8,6273342
1000000,PreSorted,8,ParallelRadixSort,9,8744836
1000000,PreSorted,8,ParallelRadixSort,10,12121472
1000000,PreSorted,8,StdSort,0,234452
1000000,PreSorted,8,StdSort,1,336412
1000000,PreSorted,8,StdSort,2,1032043
1000000,PreSorted,8,StdSort,3,3235157
1000000,PreSorted,8,StdSort,4,6816711
1000000,PreSorted,8,StdSort,5,12682002
1000000,PreSorted,8,StdSort,6,21442357
1000000,PreSorted,8,StdSort,7,33698434
1000000,PreSorted,8,StdSort,8,49968006
1000000,PreSorted,8,StdSort,9,70870866
1000000,PreSorted,8,StdSort,10,96993198
1000000,NearlySorted,1,ParallelSort,0,234466
1000000,NearlySorted,1,ParallelSort,1,336904
1000000,NearlySorted,1,ParallelSort,2,1014906
1000000,NearlySorted,1,ParallelSort,3,3244637
1000000,NearlySorted,1,ParallelSort,4,6822852
1000000,NearlySorted,1,ParallelSort,5,12693662
1000000,NearlySorted,1,ParallelSort,6,21455731
1000000,NearlySorted,1,ParallelSort,7,33705840
1000000,NearlySorted,1,ParallelSort,8,49972401
1000000,NearlySorted,1,ParallelSort,9,70874986
1000000,NearlySorted,1,ParallelSort,10,96993802
1000000,NearlySorted,1,ParallelBufferedSort,0,234255
1000000,NearlySorted,1,ParallelBufferedSort,1,337211
1000000,NearlySorted,1,ParallelBufferedSort,2,1014482
1000000,NearlySorted,1,ParallelBufferedSort,3,3245963
1000000,NearlySorted,1,ParallelBufferedSort,4,6830460
1000000,NearlySorted,1,ParallelBufferedSort,5,12690815
1000000,NearlySorted,1,ParallelBufferedSort,6,21461328
1000000,NearlySorted,1,ParallelBufferedSort,7,33696100
1000000,NearlySorted,1,ParallelBufferedSort,8,49967755
1000000,NearlySorted,1,ParallelBufferedSort,9,70871441
1000000,NearlySorted,1,ParallelBufferedSort,10,96978954
1000000,NearlySorted,1,ParallelRadixSort,0,229388
1000000,NearlySorted,1,ParallelRadixSort,1,360662
1000000,NearlySorted,1,ParallelRadixSort,2,888958
1000000,NearlySorted,1,ParallelRadixSort,3,2582911
1000000,NearlySorted,1,ParallelRadixSort,4,5441174
1000000,NearlySorted,1,ParallelRadixSort,5,10174255
1000000,NearlySorted,1,ParallelRadixSort,6,17203234
1000000,NearlySorted,1,ParallelRadixSort,7,27021449
1000000,NearlySorted,1,ParallelRadixSort,8,40136762
1000000,NearlySorted,1,ParallelRadixSort,9,56945776
1000000,NearlySorted,1,ParallelRadixSort,10,77978504
1000000,NearlySorted,1,StdSort,0,234539
1000000,NearlySorted,1,StdSort,1,337185
1000000,NearlySorted,1,StdSort,2,1015464
1000000,NearlySorted,1,StdSort,3,3241549
1000000,NearlySorted,1,StdSort,4,6816499
1000000,NearlySorted,1,StdSort,5,12689075
1000000,NearlySorted,1,StdSort,6,21448673
1000000,NearlySorted,1,StdSort,7,33699206
1000000,NearlySorted,1,StdSort,8,49970613
1000000,NearlySorted,1,StdSort,9,70861673
1000000,NearlySorted,1,StdSort,10,96990573
1000000,NearlySorted,2,ParallelSort,0,108503
1000000,NearlySorted,2,ParallelSort,1,153842
1000000,NearlySorted,2,ParallelSort,2,448473
1000000,NearlySorted,2,ParallelSort,3,1399318
1000000,NearlySorted,2,ParallelSort,4,2922028
1000000,NearlySorted,2,ParallelSort,5,5425209
1000000,NearlySorted,2,ParallelSort,6,9161883
1000000,NearlySorted,2,ParallelSort,7,14383559
1000000,NearlySorted,2,ParallelSort,8,21329449
1000000,NearlySorted,2,ParallelSort,9,30242630
1000000,NearlySorted,2,ParallelSort,10,41363059
1000000,NearlySorted,2,ParallelBufferedSort,0,97536
1000000,NearlySorted,2,ParallelBufferedSort,1,133299
1000000,NearlySorted,2,ParallelBufferedSort,2,371064
1000000,NearlySorted,2,ParallelBufferedSort,3,1122125
1000000,NearlySorted,2,ParallelBufferedSort,4,2333691
1000000,NearlySorted,2,ParallelBufferedSort,5,4326656
1000000,NearlySorted,2,ParallelBufferedSort,6,7296370
1000000,NearlySorted,2,ParallelBufferedSort,7,11447884
1000000,NearlySorted,2,ParallelBufferedSort,8,16971517
1000000,NearlySorted,2,ParallelBufferedSort,9,24066506
1000000,NearlySorted,2,ParallelBufferedSort,10,32930320
1000000,NearlySorted,2,ParallelRadixSort,0,120114
1000000,NearlySorted,2,ParallelRadixSort,1,184761
1000000,NearlySorted,2,ParallelRadixSort,2,449320
1000000,NearlySorted,2,ParallelRadixSort,3,1299438
1000000,NearlySorted,2,ParallelRadixSort,4,2728639
1000000,NearlySorted,2,ParallelRadixSort,5,5096800
1000000,NearlySorted,2,ParallelRadixSort,6,8618626
1000000,NearlySorted,2,ParallelRadixSort,7,13532967
1000000,NearlySorted,2,ParallelRadixSort,8,20100514
1000000,NearlySorted,2,ParallelRadixSort,9,28521782
1000000,NearlySorted,2,ParallelRadixSort,10,39044273
1000000,NearlySorted,2,StdSort,0,234528
1000000,NearlySorted,2,StdSort,1,337336
1000000,NearlySorted,2,StdSort,2,1015723
1000000,NearlySorted,2,StdSort,3,3240018
1000000,NearlySorted,2,StdSort,4,6821358
1000000,NearlySorted,2,StdSort,5,12684139
1000000,NearlySorted,2,StdSort,6,21452223
1000000,NearlySorted,2,StdSort,7,33696243
1000000,NearlySorted,2,StdSort,8,49969870
1000000,NearlySorted,2,StdSort,9,70865146
1000000,NearlySorted,2,StdSort,10,97001801
1000000,NearlySorted,3,ParallelSort,0,78900
1000000,NearlySorted,3,ParallelSort,1,111086
1000000,NearlySorted,3,ParallelSort,2,323654
1000000,NearlySorted,3,ParallelSort,3,1013282
1000000,NearlySorted,3,ParallelSort,4,2116324
1000000,NearlySorted,3,ParallelSort,5,3927905
1000000,NearlySorted,3,ParallelSort,6,6634642
1000000,NearlySorted,3,ParallelSort,7,10416116
1000000,NearlySorted,3,ParallelSort,8,15444215
1000000,NearlySorted,3,ParallelSort,9,21904961
1000000,NearlySorted,3,ParallelSort,10,29943649
1000000,NearlySorted,3,ParallelBufferedSort,0,68561
1000000,NearlySorted,3,ParallelBufferedSort,1,92015
1000000,NearlySorted,3,ParallelBufferedSort,2,246608
1000000,NearlySorted,3,ParallelBufferedSort,3,736596
1000000,NearlySorted,3,ParallelBufferedSort,4,1527946
1000000,NearlySorted,3,ParallelBufferedSort,5,2828853
1000000,NearlySorted,3,ParallelBufferedSort,6,4766694
1000000,NearlySorted,3,ParallelBufferedSort,7,7475815
1000000,NearlySorted,3,ParallelBufferedSort,8,11078107
1000000,NearlySorted,3,ParallelBufferedSort,9,15709999
1000000,NearlySorted,3,ParallelBufferedSort,10,21491333
1000000,NearlySorted,3,ParallelRadixSort,0,123441
1000000,NearlySorted,3,ParallelRadixSort,1,182114
1000000,NearlySorted,3,ParallelRadixSort,2,453810
1000000,NearlySorted,3,ParallelRadixSort,3,1232482
1000000,NearlySorted,3,ParallelRadixSort,4,2578313
1000000,NearlySorted,3,ParallelRadixSort,5,4802323
1000000,NearlySorted,3,ParallelRadixSort,6,6691712
1000000,NearlySorted,3,ParallelRadixSort,7,10287496
1000000,NearlySorted,3,ParallelRadixSort,8,14951423
1000000,NearlySorted,3,ParallelRadixSort,9,19485574
1000000,NearlySorted,3,ParallelRadixSort,10,29067634
1000000,NearlySorted,3,StdSort,0,234246
1000000,NearlySorted,3,StdSort,1,336765
1000000,NearlySorted,3,StdSort,2,1014813
1000000,NearlySorted,3,StdSort,3,3240703
1000000,NearlySorted,3,StdSort,4,6816524
1000000,NearlySorted,3,StdSort,5,12680975
1000000,NearlySorted,3,StdSort,6,21442637
1000000,NearlySorted,3,StdSort,7,33687875
1000000,NearlySorted,3,StdSort,8,49965937
1000000,NearlySorted,3,StdSort,9,70869301
1000000,NearlySorted,3,StdSort,10,96988153
1000000,NearlySorted,4,ParallelSort,0,76984
1000000,NearlySorted,4,ParallelSort,1,109619
1000000,NearlySorted,4,ParallelSort,2,322761
1000000,NearlySorted,4,ParallelSort,3,1014985
1000000,NearlySorted,4,ParallelSort,4,1960771
1000000,NearlySorted,4,ParallelSort,5,3643689
1000000,NearlySorted,4,ParallelSort,6,6153182
1000000,NearlySorted,4,ParallelSort,7,9668867
1000000,NearlySorted,4,ParallelSort,8,14347608
1000000,NearlySorted,4,ParallelSort,9,20329605
1000000,NearlySorted,4,ParallelSort,10,27794922
1000000,NearlySorted,4,ParallelBufferedSort,0,71216
1000000,NearlySorted,4,ParallelBufferedSort,1,95315
1000000,NearlySorted,4,ParallelBufferedSort,2,248606
1000000,NearlySorted,4,ParallelBufferedSort,3,738464
1000000,NearlySorted,4,ParallelBufferedSort,4,1535359
1000000,NearlySorted,4,ParallelBufferedSort,5,2797249
1000000,NearlySorted,4,ParallelBufferedSort,6,4788865
1000000,NearlySorted,4,ParallelBufferedSort,7,7485290
1000000,NearlySorted,4,ParallelBufferedSort,8,10090149
1000000,NearlySorted,4,ParallelBufferedSort,9,14141559
1000000,NearlySorted,4,ParallelBufferedSort,10,19346646
1000000,NearlySorted,4,ParallelRadixSort,0,89139
1000000,NearlySorted,4,ParallelRadixSort,1,117013
1000000,NearlySorted,4,ParallelRadixSort,2,267108
1000000,NearlySorted,4,ParallelRadixSort,3,1150053
1000000,NearlySorted,4,ParallelRadixSort,4,1550639
1000000,NearlySorted,4,ParallelRadixSort,5,2881730
1000000,NearlySorted,4,ParallelRadixSort,6,4732854
1000000,NearlySorted,4,ParallelRadixSort,7,8078609
1000000,NearlySorted,4,ParallelRadixSort,8,10319472
1000000,NearlySorted,4,ParallelRadixSort,9,16236552
1000000,NearlySorted,4,ParallelRadixSort,10,21357289
1000000,NearlySorted,4,StdSort,0,234356
1000000,NearlySorted,4,StdSort,1,336742
1000000,NearlySorted,4,StdSort,2,1014896
1000000,NearlySorted,4,StdSort,3,3235827
1000000,NearlySorted,4,StdSort,4,6813742
1000000,NearlySorted,4,StdSort,5,12682915
1000000,NearlySorted,4,StdSort,6,21444864
1000000,NearlySorted,4,StdSort,7,33694951
1000000,NearlySorted,4,StdSort,8,49967369
1000000,NearlySorted,4,StdSort,9,70866801
1000000,NearlySorted,4,StdSort,10,96983285
1000000,NearlySorted,5,ParallelSort,0,68082
1000000,NearlySorted,5,ParallelSort,1,96060
1000000,NearlySorted,5,ParallelSort,2,265120
1000000,NearlySorted,5,ParallelSort,3,839696
1000000,NearlySorted,5,ParallelSort,4,1739192
1000000,NearlySorted,5,ParallelSort,5,3256285
1000000,NearlySorted,5,ParallelSort,6,5463976
1000000,NearlySorted,5,ParallelSort,7,8558674
1000000,NearlySorted,5,ParallelSort,8,12691865
1000000,NearlySorted,5,ParallelSort,9,18004211
1000000,NearlySorted,5,ParallelSort,10,24636283
1000000,NearlySorted,5,ParallelBufferedSort,0,62990
1000000,NearlySorted,5,ParallelBufferedSort,1,80148
1000000,NearlySorted,5,ParallelBufferedSort,2,208876
1000000,NearlySorted,5,ParallelBufferedSort,3,611914
1000000,NearlySorted,5,ParallelBufferedSort,4,1255182
1000000,NearlySorted,5,ParallelBufferedSort,5,2319012
1000000,NearlySorted,5,ParallelBufferedSort,6,3693475
1000000,NearlySorted,5,ParallelBufferedSort,7,5623865
1000000,NearlySorted,5,ParallelBufferedSort,8,8336380
1000000,NearlySorted,5,ParallelBufferedSort,9,11815018
1000000,NearlySorted,5,ParallelBufferedSort,10,16165219
1000000,NearlySorted,5,ParallelRadixSort,0,77520
1000000,NearlySorted,5,ParallelRadixSort,1,111899
1000000,NearlySorted,5,ParallelRadixSort,2,259295
1000000,NearlySorted,5,ParallelRadixSort,3,701304
1000000,NearlySorted,5,ParallelRadixSort,4,1415017
1000000,NearlySorted,5,ParallelRadixSort,5,2482907
1000000,NearlySorted,5,ParallelRadixSort,6,4212260
1000000,NearlySorted,5,ParallelRadixSort,7,6526397
1000000,NearlySorted,5,ParallelRadixSort,8,9491556
1000000,NearlySorted,5,ParallelRadixSort,9,13555846
1000000,NearlySorted,5,ParallelRadixSort,10,19295003
1000000,NearlySorted,5,StdSort,0,234759
1000000,NearlySorted,5,StdSort,1,336922
1000000,NearlySorted,5,StdSort,2,1015326
1000000,NearlySorted,5,StdSort,3,3235783
1000000,NearlySorted,5,StdSort,4,6819273
1000000,NearlySorted,5,StdSort,5,12690012
1000000,NearlySorted,5,StdSort,6,21446164
1000000,NearlySorted,5,StdSort,7,33693208
1000000,NearlySorted,5,StdSort,8,49967306
1000000,NearlySorted,5,StdSort,9,70858889
1000000,NearlySorted,5,StdSort,10,96984317
1000000,NearlySorted,6,ParallelSort,0,61037
1000000,NearlySorted,6,ParallelSort,1,82995
1000000,NearlySorted,6,ParallelSort,2,244454
1000000,NearlySorted,6,ParallelSort,3,764059
1000000,NearlySorted,6,ParallelSort,4,1594106
1000000,NearlySorted,6,ParallelSort,5,2961348
1000000,NearlySorted,6,ParallelSort,6,5003200
1000000,NearlySorted,6,ParallelSort,7,7849250
1000000,NearlySorted,6,ParallelSort,8,11650545
1000000,NearlySorted,6,ParallelSort,9,16494649
1000000,NearlySorted,6,ParallelSort,10,22565347
1000000,NearlySorted,6,ParallelBufferedSort,0,46116
1000000,NearlySorted,6,ParallelBufferedSort,1,62703
1000000,NearlySorted,6,ParallelBufferedSort,2,163065
1000000,NearlySorted,6,ParallelBufferedSort,3,486171
1000000,NearlySorted,6,ParallelBufferedSort,4,1004660
1000000,NearlySorted,6,ParallelBufferedSort,5,1860086
1000000,NearlySorted,6,ParallelBufferedSort,6,3134284
1000000,NearlySorted,6,ParallelBufferedSort,7,4915947
1000000,NearlySorted,6,ParallelBufferedSort,8,7284938
1000000,NearlySorted,6,ParallelBufferedSort,9,10320164
1000000,NearlySorted,6,ParallelBufferedSort,10,14117965
1000000,NearlySorted,6,ParallelRadixSort,0,59320
1000000,NearlySorted,6,ParallelRadixSort,1,80391
1000000,NearlySorted,6,ParallelRadixSort,2,188867
1000000,NearlySorted,6,ParallelRadixSort,3,509846
1000000,NearlySorted,6,ParallelRadixSort,4,1064568
1000000,NearlySorted,6,ParallelRadixSort,5,1957031
1000000,NearlySorted,6,ParallelRadixSort,6,3323698
1000000,NearlySorted,6,ParallelRadixSort,7,5282629
1000000,NearlySorted,6,ParallelRadixSort,8,7744523
1000000,NearlySorted,6,ParallelRadixSort,9,11203969
1000000,NearlySorted,6,ParallelRadixSort,10,14914306
1000000,NearlySorted,6,StdSort,0,234220
1000000,NearlySorted,6,StdSort,1,336816
1000000,NearlySorted,6,StdSort,2,1014906
1000000,NearlySorted,6,StdSort,3,3235572
1000000,NearlySorted,6,StdSort,4,6814974
1000000,NearlySorted,6,StdSort,5,12684553
1000000,NearlySorted,6,StdSort,6,21442577
1000000,NearlySorted,6,StdSort,7,33695346
1000000,NearlySorted,6,StdSort,8,49964885
1000000,NearlySorted,6,StdSort,9,70871761
1000000,NearlySorted,6,StdSort,10,96994218
1000000,NearlySorted,7,ParallelSort,0,51975
1000000,NearlySorted,7,ParallelSort,1,73434
1000000,NearlySorted,7,ParallelSort,2,214959
1000000,NearlySorted,7,ParallelSort,3,678270
1000000,NearlySorted,7,ParallelSort,4,1430594
1000000,NearlySorted,7,ParallelSort,5,2630820
1000000,NearlySorted,7,ParallelSort,6,4437766
1000000,NearlySorted,7,ParallelSort,7,6975145
1000000,NearlySorted,7,ParallelSort,8,10337820
1000000,NearlySorted,7,ParallelSort,9,14638790
1000000,NearlySorted,7,ParallelSort,10,19996165
1000000,NearlySorted,7,ParallelBufferedSort,0,45725
1000000,NearlySorted,7,ParallelBufferedSort,1,58143
1000000,NearlySorted,7,ParallelBufferedSort,2,140070
1000000,NearlySorted,7,ParallelBufferedSort,3,406428
1000000,NearlySorted,7,ParallelBufferedSort,4,827478
1000000,NearlySorted,7,ParallelBufferedSort,5,1530438
1000000,NearlySorted,7,ParallelBufferedSort,6,2576770
1000000,NearlySorted,7,ParallelBufferedSort,7,4031481
1000000,NearlySorted,7,ParallelBufferedSort,8,5952455
1000000,NearlySorted,7,ParallelBufferedSort,9,8448146
1000000,NearlySorted,7,ParallelBufferedSort,10,11549629
1000000,NearlySorted,7,ParallelRadixSort,0,57370
1000000,NearlySorted,7,ParallelRadixSort,1,80267
1000000,NearlySorted,7,ParallelRadixSort,2,166451
1000000,NearlySorted,7,ParallelRadixSort,3,474805
1000000,NearlySorted,7,ParallelRadixSort,4,957884
1000000,NearlySorted,7,ParallelRadixSort,5,1782874
1000000,NearlySorted,7,ParallelRadixSort,6,3002762
1000000,NearlySorted,7,ParallelRadixSort,7,4900972
1000000,NearlySorted,7,ParallelRadixSort,8,7039942
1000000,NearlySorted,7,ParallelRadixSort,9,10319589
1000000,NearlySorted,7,ParallelRadixSort,10,14183667
1000000,NearlySorted,7,StdSort,0,234118
1000000,NearlySorted,7,StdSort,1,336992
1000000,NearlySorted,7,StdSort,2,1014841
1000000,NearlySorted,7,StdSort,3,3239366
1000000,NearlySorted,7,StdSort,4,6817415
1000000,NearlySorted,7,StdSort,5,12686465
1000000,NearlySorted,7,StdSort,6,21445349
1000000,NearlySorted,7,StdSort,7,33694352
1000000,NearlySorted,7,StdSort,8,49966140
1000000,NearlySorted,7,StdSort,9,70869322
1000000,NearlySorted,7,StdSort,10,96986230
1000000,NearlySorted,8,ParallelSort,0,51753
1000000,NearlySorted,8,ParallelSort,1,73082
1000000,NearlySorted,8,ParallelSort,2,213888
1000000,NearlySorted,8,ParallelSort,3,676859
1000000,NearlySorted,8,ParallelSort,4,1414486
1000000,NearlySorted,8,ParallelSort,5,2618262
1000000,NearlySorted,8,ParallelSort,6,4421359
1000000,NearlySorted,8,ParallelSort,7,6937993
1000000,NearlySorted,8,ParallelSort,8,10284374
1000000,NearlySorted,8,ParallelSort,9,14610022
1000000,NearlySorted,8,ParallelSort,10,19937922
1000000,NearlySorted,8,ParallelBufferedSort,0,41339
1000000,NearlySorted,8,ParallelBufferedSort,1,51782
1000000,NearlySorted,8,ParallelBufferedSort,2,120033
1000000,NearlySorted,8,ParallelBufferedSort,3,332645
1000000,NearlySorted,8,ParallelBufferedSort,4,678728
1000000,NearlySorted,8,ParallelBufferedSort,5,1245451
1000000,NearlySorted,8,ParallelBufferedSort,6,2100239
1000000,NearlySorted,8,ParallelBufferedSort,7,3281278
1000000,NearlySorted,8,ParallelBufferedSort,8,4846867
1000000,NearlySorted,8,ParallelBufferedSort,9,6897192
1000000,NearlySorted,8,ParallelBufferedSort,10,9388957
1000000,NearlySorted,8,ParallelRadixSort,0,52441
1000000,NearlySorted,8,ParallelRadixSort,1,69356
1000000,NearlySorted,8,ParallelRadixSort,2,149011
1000000,NearlySorted,8,ParallelRadixSort,3,406647
1000000,NearlySorted,8,ParallelRadixSort,4,936135
1000000,NearlySorted,8,ParallelRadixSort,5,1575298
1000000,NearlySorted,8,ParallelRadixSort,6,2635312
1000000,NearlySorted,8,ParallelRadixSort,7,4189455
1000000,NearlySorted,8,ParallelRadixSort,8,6157849
1000000,NearlySorted,8,ParallelRadixSort,9,8513552
1000000,NearlySorted,8,ParallelRadixSort,10,11766980
1000000,NearlySorted,8,StdSort,0,234662
1000000,NearlySorted,8,StdSort,1,337199
1000000,NearlySorted,8,StdSort,2,1015235
1000000,NearlySorted,8,StdSort,3,3238533
1000000,NearlySorted,8,StdSort,4,6817114
1000000,NearlySorted,8,StdSort,5,12683701
1000000,NearlySorted,8,StdSort,6,21448397
1000000,NearlySorted,8,StdSort,7,33692484
1000000,NearlySorted,8,StdSort,8,49968264
1000000,NearlySorted,8,StdSort,9,70870665
1000000,NearlySorted,8,StdSort,10,96989853
1000000,NormalDistributionWithDups,1,ParallelSort,0,320363
1000000,NormalDistributionWithDups,1,ParallelSort,1,437815
1000000,NormalDistributionWithDups,1,ParallelSort,2,1186937
1000000,NormalDistributionWithDups,1,ParallelSort,3,3555686
1000000,NormalDistributionWithDups,1,ParallelSort,4,7380750
1000000,NormalDistributionWithDups,1,ParallelSort,5,13660684
1000000,NormalDistributionWithDups,1,ParallelSort,6,23051663
1000000,NormalDistributionWithDups,1,ParallelSort,7,36172977
1000000,NormalDistributionWithDups,1,ParallelSort,8,53599045
1000000,NormalDistributionWithDups,1,ParallelSort,9,76001940
1000000,NormalDistributionWithDups,1,ParallelSort,10,103988257
1000000,NormalDistributionWithDups,1,ParallelBufferedSort,0,320423
1000000,NormalDistributionWithDups,1,ParallelBufferedSort,1,437772
1000000,NormalDistributionWithDups,1,ParallelBufferedSort,2,1186955
1000000,NormalDistributionWithDups,1,ParallelBufferedSort,3,3548814
1000000,NormalDistributionWithDups,1,ParallelBufferedSort,4,7382955
1000000,NormalDistributionWithDups,1,ParallelBufferedSort,5,13668952
1000000,NormalDistributionWithDups,1,ParallelBufferedSort,6,23065014
1000000,NormalDistributionWithDups,1,ParallelBufferedSort,7,36190116
1000000,NormalDistributionWithDups,1,ParallelBufferedSort,8,53631694
1000000,NormalDistributionWithDups,1,ParallelBufferedSort,9,76053354
1000000,NormalDistributionWithDups,1,ParallelBufferedSort,10,104033151
1000000,NormalDistributionWithDups,1,ParallelRadixSort,0,214804
1000000,NormalDistributionWithDups,1,ParallelRadixSort,1,341078
1000000,NormalDistributionWithDups,1,ParallelRadixSort,2,839559
1000000,NormalDistributionWithDups,1,ParallelRadixSort,3,2456645
1000000,NormalDistributionWithDups,1,ParallelRadixSort,4,5182192
1000000,NormalDistributionWithDups,1,ParallelRadixSort,5,9691895
1000000,NormalDistributionWithDups,1,ParallelRadixSort,6,16394014
1000000,NormalDistributionWithDups,1,ParallelRadixSort,7,25746423
1000000,NormalDistributionWithDups,1,ParallelRadixSort,8,38252082
1000000,NormalDistributionWithDups,1,ParallelRadixSort,9,54233730
1000000,NormalDistributionWithDups,1,ParallelRadixSort,10,74189037
1000000,NormalDistributionWithDups,1,StdSort,0,320756
1000000,NormalDistributionWithDups,1,StdSort,1,438222
1000000,NormalDistributionWithDups,1,StdSort,2,1187821
1000000,NormalDistributionWithDups,1,StdSort,3,3550495
1000000,NormalDistributionWithDups,1,StdSort,4,7383344
1000000,NormalDistributionWithDups,1,StdSort,5,13662695
1000000,NormalDistributionWithDups,1,StdSort,6,23055354
1000000,NormalDistributionWithDups,1,StdSort,7,36175995
1000000,NormalDistributionWithDups,1,StdSort,8,53604945
1000000,NormalDistributionWithDups,1,StdSort,9,76001811
1000000,NormalDistributionWithDups,1,StdSort,10,103990355
1000000,NormalDistributionWithDups,2,ParallelSort,0,149233
1000000,NormalDistributionWithDups,2,ParallelSort,1,192946
1000000,NormalDistributionWithDups,2,ParallelSort,2,459905
1000000,NormalDistributionWithDups,2,ParallelSort,3,1349010
1000000,NormalDistributionWithDups,2,ParallelSort,4,2835538
1000000,NormalDistributionWithDups,2,ParallelSort,5,5293769
1000000,NormalDistributionWithDups,2,ParallelSort,6,8972680
1000000,NormalDistributionWithDups,2,ParallelSort,7,14069210
1000000,NormalDistributionWithDups,2,ParallelSort,8,20913852
1000000,NormalDistributionWithDups,2,ParallelSort,9,29625490
1000000,NormalDistributionWithDups,2,ParallelSort,10,40471384
1000000,NormalDistributionWithDups,2,ParallelBufferedSort,0,142897
1000000,NormalDistributionWithDups,2,ParallelBufferedSort,1,186910
1000000,NormalDistributionWithDups,2,ParallelBufferedSort,2,450639
1000000,NormalDistributionWithDups,2,ParallelBufferedSort,3,1315204
1000000,NormalDistributionWithDups,2,ParallelBufferedSort,4,2744291
1000000,NormalDistributionWithDups,2,ParallelBufferedSort,5,5099298
1000000,NormalDistributionWithDups,2,ParallelBufferedSort,6,8613433
1000000,NormalDistributionWithDups,2,ParallelBufferedSort,7,13537206
1000000,NormalDistributionWithDups,2,ParallelBufferedSort,8,20072020
1000000,NormalDistributionWithDups,2,ParallelBufferedSort,9,28414792
1000000,NormalDistributionWithDups,2,ParallelBufferedSort,10,38869441
1000000,NormalDistributionWithDups,2,ParallelRadixSort,0,114462
1000000,NormalDistributionWithDups,2,ParallelRadixSort,1,178260
1000000,NormalDistributionWithDups,2,ParallelRadixSort,2,422044
1000000,NormalDistributionWithDups,2,ParallelRadixSort,3,1212306
1000000,NormalDistributionWithDups,2,ParallelRadixSort,4,2548452
1000000,NormalDistributionWithDups,2,ParallelRadixSort,5,4762495
1000000,NormalDistributionWithDups,2,ParallelRadixSort,6,8049664
1000000,NormalDistributionWithDups,2,ParallelRadixSort,7,12631037
1000000,NormalDistributionWithDups,2,ParallelRadixSort,8,18776778
1000000,NormalDistributionWithDups,2,ParallelRadixSort,9,26601472
1000000,NormalDistributionWithDups,2,ParallelRadixSort,10,36385407
1000000,NormalDistributionWithDups,2,StdSort,0,318483
1000000,NormalDistributionWithDups,2,StdSort,1,435938
1000000,NormalDistributionWithDups,2,StdSort,2,1184136
1000000,NormalDistributionWithDups,2,StdSort,3,3541006
1000000,NormalDistributionWithDups,2,StdSort,4,7364659
1000000,NormalDistributionWithDups,2,StdSort,5,13633184
1000000,NormalDistributionWithDups,2,StdSort,6,23006117
1000000,NormalDistributionWithDups,2,StdSort,7,36096259
1000000,NormalDistributionWithDups,2,StdSort,8,53488261
1000000,NormalDistributionWithDups,2,StdSort,9,75835407
1000000,NormalDistributionWithDups,2,StdSort,10,103761401
1000000,NormalDistributionWithDups,3,ParallelSort,0,129766
1000000,NormalDistributionWithDups,3,ParallelSort,1,168426
1000000,NormalDistributionWithDups,3,ParallelSort,2,402342
1000000,NormalDistributionWithDups,3,ParallelSort,3,1181222
1000000,NormalDistributionWithDups,3,ParallelSort,4,2477061
1000000,NormalDistributionWithDups,3,ParallelSort,5,4623697
1000000,NormalDistributionWithDups,3,ParallelSort,6,7814750
1000000,NormalDistributionWithDups,3,ParallelSort,7,12277336
1000000,NormalDistributionWithDups,3,ParallelSort,8,18212981
1000000,NormalDistributionWithDups,3,ParallelSort,9,25808791
1000000,NormalDistributionWithDups,3,ParallelSort,10,35323048
1000000,NormalDistributionWithDups,3,ParallelBufferedSort,0,97969
1000000,NormalDistributionWithDups,3,ParallelBufferedSort,1,124413
1000000,NormalDistributionWithDups,3,ParallelBufferedSort,2,296722
1000000,NormalDistributionWithDups,3,ParallelBufferedSort,3,864421
1000000,NormalDistributionWithDups,3,ParallelBufferedSort,4,1807814
1000000,NormalDistributionWithDups,3,ParallelBufferedSort,5,3361705
1000000,NormalDistributionWithDups,3,ParallelBufferedSort,6,5679675
1000000,NormalDistributionWithDups,3,ParallelBufferedSort,7,8913483
1000000,NormalDistributionWithDups,3,ParallelBufferedSort,8,13224740
1000000,NormalDistributionWithDups,3,ParallelBufferedSort,9,18759882
1000000,NormalDistributionWithDups,3,ParallelBufferedSort,10,25685898
1000000,NormalDistributionWithDups,3,ParallelRadixSort,0,110895
1000000,NormalDistributionWithDups,3,ParallelRadixSort,1,170185
1000000,NormalDistributionWithDups,3,ParallelRadixSort,2,403847
1000000,NormalDistributionWithDups,3,ParallelRadixSort,3,1155341
1000000,NormalDistributionWithDups,3,ParallelRadixSort,4,2413094
1000000,NormalDistributionWithDups,3,ParallelRadixSort,5,3881706
1000000,NormalDistributionWithDups,3,ParallelRadixSort,6,7603140
1000000,NormalDistributionWithDups,3,ParallelRadixSort,7,9486696
1000000,NormalDistributionWithDups,3,ParallelRadixSort,8,14991678
1000000,NormalDistributionWithDups,3,ParallelRadixSort,9,20329704
1000000,NormalDistributionWithDups,3,ParallelRadixSort,10,27317285
1000000,NormalDistributionWithDups,3,StdSort,0,322210
1000000,NormalDistributionWithDups,3,StdSort,1,441550
1000000,NormalDistributionWithDups,3,StdSort,2,1200354
1000000,NormalDistributionWithDups,3,StdSort,3,3589537
1000000,NormalDistributionWithDups,3,StdSort,4,7465268
1000000,NormalDistributionWithDups,3,StdSort,5,13820330
1000000,NormalDistributionWithDups,3,StdSort,6,23324492
1000000,NormalDistributionWithDups,3,StdSort,7,36598614
1000000,NormalDistributionWithDups,3,StdSort,8,54233338
1000000,NormalDistributionWithDups,3,StdSort,9,76896140
1000000,NormalDistributionWithDups,3,StdSort,10,105208810
1000000,NormalDistributionWithDups,4,ParallelSort,0,108439
1000000,NormalDistributionWithDups,4,ParallelSort,1,139133
1000000,NormalDistributionWithDups,4,ParallelSort,2,328194
1000000,NormalDistributionWithDups,4,ParallelSort,3,964230
1000000,NormalDistributionWithDups,4,ParallelSort,4,1912306
1000000,NormalDistributionWithDups,4,ParallelSort,5,3582111
1000000,NormalDistributionWithDups,4,ParallelSort,6,6220871
1000000,NormalDistributionWithDups,4,ParallelSort,7,9508658
1000000,NormalDistributionWithDups,4,ParallelSort,8,14258226
1000000,NormalDistributionWithDups,4,ParallelSort,9,19510475
1000000,NormalDistributionWithDups,4,ParallelSort,10,27082666
1000000,NormalDistributionWithDups,4,ParallelBufferedSort,0,101367
1000000,NormalDistributionWithDups,4,ParallelBufferedSort,1,125857
1000000,NormalDistributionWithDups,4,ParallelBufferedSort,2,300820
1000000,NormalDistributionWithDups,4,ParallelBufferedSort,3,855909
1000000,NormalDistributionWithDups,4,ParallelBufferedSort,4,1730252
1000000,NormalDistributionWithDups,4,ParallelBufferedSort,5,3208209
1000000,NormalDistributionWithDups,4,ParallelBufferedSort,6,5393000
1000000,NormalDistributionWithDups,4,ParallelBufferedSort,7,8152807
1000000,NormalDistributionWithDups,4,ParallelBufferedSort,8,12033005
1000000,NormalDistributionWithDups,4,ParallelBufferedSort,9,17050133
1000000,NormalDistributionWithDups,4,ParallelBufferedSort,10,22971172
1000000,NormalDistributionWithDups,4,ParallelRadixSort,0,102777
1000000,NormalDistributionWithDups,4,ParallelRadixSort,1,112597
1000000,NormalDistributionWithDups,4,ParallelRadixSort,2,316896
1000000,NormalDistributionWithDups,4,ParallelRadixSort,3,1076362
1000000,NormalDistributionWithDups,4,ParallelRadixSort,4,1513506
1000000,NormalDistributionWithDups,4,ParallelRadixSort,5,3387122
1000000,NormalDistributionWithDups,4,ParallelRadixSort,6,4469571
1000000,NormalDistributionWithDups,4,ParallelRadixSort,7,7529413
1000000,NormalDistributionWithDups,4,ParallelRadixSort,8,10349859
1000000,NormalDistributionWithDups,4,ParallelRadixSort,9,14753956
1000000,NormalDistributionWithDups,4,ParallelRadixSort,10,20384795
1000000,NormalDistributionWithDups,4,StdSort,0,328695
1000000,NormalDistributionWithDups,4,StdSort,1,450185
1000000,NormalDistributionWithDups,4,StdSort,2,1224125
1000000,NormalDistributionWithDups,4,StdSort,3,3662123
1000000,NormalDistributionWithDups,4,StdSort,4,7615622
1000000,NormalDistributionWithDups,4,StdSort,5,14107535
1000000,NormalDistributionWithDups,4,StdSort,6,23806947
1000000,NormalDistributionWithDups,4,StdSort,7,37370555
1000000,NormalDistributionWithDups,4,StdSort,8,55359990
1000000,NormalDistributionWithDups,4,StdSort,9,78496870
1000000,NormalDistributionWithDups,4,StdSort,10,107398995
1000000,NormalDistributionWithDups,5,ParallelSort,0,97572
1000000,NormalDistributionWithDups,5,ParallelSort,1,125854
1000000,NormalDistributionWithDups,5,ParallelSort,2,274961
1000000,NormalDistributionWithDups,5,ParallelSort,3,776463
1000000,NormalDistributionWithDups,5,ParallelSort,4,1650914
1000000,NormalDistributionWithDups,5,ParallelSort,5,3162664
1000000,NormalDistributionWithDups,5,ParallelSort,6,5332617
1000000,NormalDistributionWithDups,5,ParallelSort,7,8399536
1000000,NormalDistributionWithDups,5,ParallelSort,8,12463184
1000000,NormalDistributionWithDups,5,ParallelSort,9,17314362
1000000,NormalDistributionWithDups,5,ParallelSort,10,24109113
1000000,NormalDistributionWithDups,5,ParallelBufferedSort,0,88728
1000000,NormalDistributionWithDups,5,ParallelBufferedSort,1,109646
1000000,NormalDistributionWithDups,5,ParallelBufferedSort,2,255191
1000000,NormalDistributionWithDups,5,ParallelBufferedSort,3,740215
1000000,NormalDistributionWithDups,5,ParallelBufferedSort,4,1534824
1000000,NormalDistributionWithDups,5,ParallelBufferedSort,5,2847049
1000000,NormalDistributionWithDups,5,ParallelBufferedSort,6,4829730
1000000,NormalDistributionWithDups,5,ParallelBufferedSort,7,7563096
1000000,NormalDistributionWithDups,5,ParallelBufferedSort,8,10613242
1000000,NormalDistributionWithDups,5,ParallelBufferedSort,9,15028898
1000000,NormalDistributionWithDups,5,ParallelBufferedSort,10,20386647
1000000,NormalDistributionWithDups,5,ParallelRadixSort,0,80645
1000000,NormalDistributionWithDups,5,ParallelRadixSort,1,108879
1000000,NormalDistributionWithDups,5,ParallelRadixSort,2,270055
1000000,NormalDistributionWithDups,5,ParallelRadixSort,3,630695
1000000,NormalDistributionWithDups,5,ParallelRadixSort,4,1344062
1000000,NormalDistributionWithDups,5,ParallelRadixSort,5,2503669
1000000,NormalDistributionWithDups,5,ParallelRadixSort,6,4156226
1000000,NormalDistributionWithDups,5,ParallelRadixSort,7,7077769
1000000,NormalDistributionWithDups,5,ParallelRadixSort,8,9589803
1000000,NormalDistributionWithDups,5,ParallelRadixSort,9,13532534
1000000,NormalDistributionWithDups,5,ParallelRadixSort,10,19826180
1000000,NormalDistributionWithDups,5,StdSort,0,326484
1000000,NormalDistributionWithDups,5,StdSort,1,446770
1000000,NormalDistributionWithDups,5,StdSort,2,1214585
1000000,NormalDistributionWithDups,5,StdSort,3,3631005
1000000,NormalDistributionWithDups,5,StdSort,4,7556302
1000000,NormalDistributionWithDups,5,StdSort,5,13989917
1000000,NormalDistributionWithDups,5,StdSort,6,23606066
1000000,NormalDistributionWithDups,5,StdSort,7,37048606
1000000,NormalDistributionWithDups,5,StdSort,8,54891255
1000000,NormalDistributionWithDups,5,StdSort,9,77821296
1000000,NormalDistributionWithDups,5,StdSort,10,106480473
1000000,NormalDistributionWithDups,6,ParallelSort,0,87459
1000000,NormalDistributionWithDups,6,ParallelSort,1,107699
1000000,NormalDistributionWithDups,6,ParallelSort,2,256100
1000000,NormalDistributionWithDups,6,ParallelSort,3,733358
1000000,NormalDistributionWithDups,6,ParallelSort,4,1541202
1000000,NormalDistributionWithDups,6,ParallelSort,5,2881790
1000000,NormalDistributionWithDups,6,ParallelSort,6,4879788
1000000,NormalDistributionWithDups,6,ParallelSort,7,7631413
1000000,NormalDistributionWithDups,6,ParallelSort,8,11322456
1000000,NormalDistributionWithDups,6,ParallelSort,9,15979888
1000000,NormalDistributionWithDups,6,ParallelSort,10,21947366
1000000,NormalDistributionWithDups,6,ParallelBufferedSort,0,79384
1000000,NormalDistributionWithDups,6,ParallelBufferedSort,1,95080
1000000,NormalDistributionWithDups,6,ParallelBufferedSort,2,220647
1000000,NormalDistributionWithDups,6,ParallelBufferedSort,3,636436
1000000,NormalDistributionWithDups,6,ParallelBufferedSort,4,1307714
1000000,NormalDistributionWithDups,6,ParallelBufferedSort,5,2311131
1000000,NormalDistributionWithDups,6,ParallelBufferedSort,6,4086164
1000000,NormalDistributionWithDups,6,ParallelBufferedSort,7,6148145
1000000,NormalDistributionWithDups,6,ParallelBufferedSort,8,9499878
1000000,NormalDistributionWithDups,6,ParallelBufferedSort,9,12622330
1000000,NormalDistributionWithDups,6,ParallelBufferedSort,10,17399981
1000000,NormalDistributionWithDups,6,ParallelRadixSort,0,75249
1000000,NormalDistributionWithDups,6,ParallelRadixSort,1,97045
1000000,NormalDistributionWithDups,6,ParallelRadixSort,2,197271
1000000,NormalDistributionWithDups,6,ParallelRadixSort,3,539812
1000000,NormalDistributionWithDups,6,ParallelRadixSort,4,1119433
1000000,NormalDistributionWithDups,6,ParallelRadixSort,5,2077230
1000000,NormalDistributionWithDups,6,ParallelRadixSort,6,3528828
1000000,NormalDistributionWithDups,6,ParallelRadixSort,7,5488882
1000000,NormalDistributionWithDups,6,ParallelRadixSort,8,8169985
1000000,NormalDistributionWithDups,6,ParallelRadixSort,9,11579006
1000000,NormalDistributionWithDups,6,ParallelRadixSort,10,15830553
1000000,NormalDistributionWithDups,6,StdSort,0,321471
1000000,NormalDistributionWithDups,6,StdSort,1,440183
1000000,NormalDistributionWithDups,6,StdSort,2,1195250
1000000,NormalDistributionWithDups,6,StdSort,3,3572282
1000000,NormalDistributionWithDups,6,StdSort,4,7429340
1000000,NormalDistributionWithDups,6,StdSort,5,13755417
1000000,NormalDistributionWithDups,6,StdSort,6,23214744
1000000,NormalDistributionWithDups,6,StdSort,7,36427973
1000000,NormalDistributionWithDups,6,StdSort,8,53978518
1000000,NormalDistributionWithDups,6,StdSort,9,76533405
1000000,NormalDistributionWithDups,6,StdSort,10,104718586
1000000,NormalDistributionWithDups,7,ParallelSort,0,83262
1000000,NormalDistributionWithDups,7,ParallelSort,1,104306
1000000,NormalDistributionWithDups,7,ParallelSort,2,243426
1000000,NormalDistributionWithDups,7,ParallelSort,3,711038
1000000,NormalDistributionWithDups,7,ParallelSort,4,1477026
1000000,NormalDistributionWithDups,7,ParallelSort,5,2783262
1000000,NormalDistributionWithDups,7,ParallelSort,6,4747153
1000000,NormalDistributionWithDups,7,ParallelSort,7,7491177
1000000,NormalDistributionWithDups,7,ParallelSort,8,10978497
1000000,NormalDistributionWithDups,7,ParallelSort,9,15587885
1000000,NormalDistributionWithDups,7,ParallelSort,10,21356604
1000000,NormalDistributionWithDups,7,ParallelBufferedSort,0,72395
1000000,NormalDistributionWithDups,7,ParallelBufferedSort,1,85430
1000000,NormalDistributionWithDups,7,ParallelBufferedSort,2,197976
1000000,NormalDistributionWithDups,7,ParallelBufferedSort,3,565990
1000000,NormalDistributionWithDups,7,ParallelBufferedSort,4,1175884
1000000,NormalDistributionWithDups,7,ParallelBufferedSort,5,2186166
1000000,NormalDistributionWithDups,7,ParallelBufferedSort,6,3664927
1000000,NormalDistributionWithDups,7,ParallelBufferedSort,7,5800952
1000000,NormalDistributionWithDups,7,ParallelBufferedSort,8,8525145
1000000,NormalDistributionWithDups,7,ParallelBufferedSort,9,11792939
1000000,NormalDistributionWithDups,7,ParallelBufferedSort,10,16149439
1000000,NormalDistributionWithDups,7,ParallelRadixSort,0,72553
1000000,NormalDistributionWithDups,7,ParallelRadixSort,1,93474
1000000,NormalDistributionWithDups,7,ParallelRadixSort,2,190182
1000000,NormalDistributionWithDups,7,ParallelRadixSort,3,485827
1000000,NormalDistributionWithDups,7,ParallelRadixSort,4,1037913
1000000,NormalDistributionWithDups,7,ParallelRadixSort,5,1902783
1000000,NormalDistributionWithDups,7,ParallelRadixSort,6,3196408
1000000,NormalDistributionWithDups,7,ParallelRadixSort,7,5101658
1000000,NormalDistributionWithDups,7,ParallelRadixSort,8,7367981
1000000,NormalDistributionWithDups,7,ParallelRadixSort,9,10337679
1000000,NormalDistributionWithDups,7,ParallelRadixSort,10,14132929
1000000,NormalDistributionWithDups,7,StdSort,0,319415
1000000,NormalDistributionWithDups,7,StdSort,1,436484
1000000,NormalDistributionWithDups,7,StdSort,2,1183924
1000000,NormalDistributionWithDups,7,StdSort,3,3543654
1000000,NormalDistributionWithDups,7,StdSort,4,7368134
1000000,NormalDistributionWithDups,7,StdSort,5,13643804
1000000,NormalDistributionWithDups,7,StdSort,6,23026055
1000000,NormalDistributionWithDups,7,StdSort,7,36129086
1000000,NormalDistributionWithDups,7,StdSort,8,53535150
1000000,NormalDistributionWithDups,7,StdSort,9,75905599
1000000,NormalDistributionWithDups,7,StdSort,10,103859740
1000000,NormalDistributionWithDups,8,ParallelSort,0,78447
1000000,NormalDistributionWithDups,8,ParallelSort,1,98694
1000000,NormalDistributionWithDups,8,ParallelSort,2,226221
1000000,NormalDistributionWithDups,8,ParallelSort,3,652128
1000000,NormalDistributionWithDups,8,ParallelSort,4,1394106
1000000,NormalDistributionWithDups,8,ParallelSort,5,2616105
1000000,NormalDistributionWithDups,8,ParallelSort,6,4404639
1000000,NormalDistributionWithDups,8,ParallelSort,7,6939632
1000000,NormalDistributionWithDups,8,ParallelSort,8,10286157
1000000,NormalDistributionWithDups,8,ParallelSort,9,14553208
1000000,NormalDistributionWithDups,8,ParallelSort,10,19894662
1000000,NormalDistributionWithDups,8,ParallelBufferedSort,0,74469
1000000,NormalDistributionWithDups,8,ParallelBufferedSort,1,90015
1000000,NormalDistributionWithDups,8,ParallelBufferedSort,2,200012
1000000,NormalDistributionWithDups,8,ParallelBufferedSort,3,600490
1000000,NormalDistributionWithDups,8,ParallelBufferedSort,4,1079782
1000000,NormalDistributionWithDups,8,ParallelBufferedSort,5,1992054
1000000,NormalDistributionWithDups,8,ParallelBufferedSort,6,3352102
1000000,NormalDistributionWithDups,8,ParallelBufferedSort,7,5336629
1000000,NormalDistributionWithDups,8,ParallelBufferedSort,8,7781230
1000000,NormalDistributionWithDups,8,ParallelBufferedSort,9,11095073
1000000,NormalDistributionWithDups,8,ParallelBufferedSort,10,15234825
1000000,NormalDistributionWithDups,8,ParallelRadixSort,0,66166
1000000,NormalDistributionWithDups,8,ParallelRadixSort,1,86186
1000000,NormalDistributionWithDups,8,ParallelRadixSort,2,168401
1000000,NormalDistributionWithDups,8,ParallelRadixSort,3,450859
1000000,NormalDistributionWithDups,8,ParallelRadixSort,4,989737
1000000,NormalDistributionWithDups,8,ParallelRadixSort,5,1766841
1000000,NormalDistributionWithDups,8,ParallelRadixSort,6,3013992
1000000,NormalDistributionWithDups,8,ParallelRadixSort,7,4562736
1000000,NormalDistributionWithDups,8,ParallelRadixSort,8,6797869
1000000,NormalDistributionWithDups,8,ParallelRadixSort,9,9520633
1000000,NormalDistributionWithDups,8,ParallelRadixSort,10,13177815
1000000,NormalDistributionWithDups,8,StdSort,0,326368
1000000,NormalDistributionWithDups,8,StdSort,1,446718
1000000,NormalDistributionWithDups,8,StdSort,2,1211634
1000000,NormalDistributionWithDups,8,StdSort,3,3632626
1000000,NormalDistributionWithDups,8,StdSort,4,7558113
1000000,NormalDistributionWithDups,8,StdSort,5,13991968
1000000,NormalDistributionWithDups,8,StdSort,6,23611032
1000000,NormalDistributionWithDups,8,StdSort,7,37049722
1000000,NormalDistributionWithDups,8,StdSort,8,54894985
1000000,NormalDistributionWithDups,8,StdSort,9,77834638
1000000,NormalDistributionWithDups,8,StdSort,10,106487901
1000000,SawTooth,1,ParallelSort,0,530718
1000000,SawTooth,1,ParallelSort,1,764455
1000000,SawTooth,1,ParallelSort,2,2205559
1000000,SawTooth,1,ParallelSort,3,6862564
1000000,SawTooth,1,ParallelSort,4,14400592
1000000,SawTooth,1,ParallelSort,5,26766427
1000000,SawTooth,1,ParallelSort,6,45241527
1000000,SawTooth,1,ParallelSort,7,71055522
1000000,SawTooth,1,ParallelSort,8,105328272
1000000,SawTooth,1,ParallelSort,9,149382267
1000000,SawTooth,1,ParallelSort,10,204429452
1000000,SawTooth,1,ParallelBufferedSort,0,530162
1000000,SawTooth,1,ParallelBufferedSort,1,764668
1000000,SawTooth,1,ParallelBufferedSort,2,2208136
1000000,SawTooth,1,ParallelBufferedSort,3,6864952
1000000,SawTooth,1,ParallelBufferedSort,4,14406942
1000000,SawTooth,1,ParallelBufferedSort,5,26763030
1000000,SawTooth,1,ParallelBufferedSort,6,45234777
1000000,SawTooth,1,ParallelBufferedSort,7,71057322
1000000,SawTooth,1,ParallelBufferedSort,8,105342048
1000000,SawTooth,1,ParallelBufferedSort,9,149395225
1000000,SawTooth,1,ParallelBufferedSort,10,204448368
1000000,SawTooth,1,ParallelRadixSort,0,212221
1000000,SawTooth,1,ParallelRadixSort,1,335275
1000000,SawTooth,1,ParallelRadixSort,2,820588
1000000,SawTooth,1,ParallelRadixSort,3,2385796
1000000,SawTooth,1,ParallelRadixSort,4,5008856
1000000,SawTooth,1,ParallelRadixSort,5,9361883
1000000,SawTooth,1,ParallelRadixSort,6,15825119
1000000,SawTooth,1,ParallelRadixSort,7,24835133
1000000,SawTooth,1,ParallelRadixSort,8,36888572
1000000,SawTooth,1,ParallelRadixSort,9,52318091
1000000,SawTooth,1,ParallelRadixSort,10,71541754
1000000,SawTooth,1,StdSort,0,530013
1000000,SawTooth,1,StdSort,1,764154
1000000,SawTooth,1,StdSort,2,2206696
1000000,SawTooth,1,StdSort,3,6869178
1000000,SawTooth,1,StdSort,4,14409273
1000000,SawTooth,1,StdSort,5,26762250
1000000,SawTooth,1,StdSort,6,45241149
1000000,SawTooth,1,StdSort,7,71047756
1000000,SawTooth,1,StdSort,8,105326896
1000000,SawTooth,1,StdSort,9,149377092
1000000,SawTooth,1,StdSort,10,204427702
1000000,SawTooth,2,ParallelSort,0,249314
1000000,SawTooth,2,ParallelSort,1,364554
1000000,SawTooth,2,ParallelSort,2,1051103
1000000,SawTooth,2,ParallelSort,3,3258690
1000000,SawTooth,2,ParallelSort,4,6860674
1000000,SawTooth,2,ParallelSort,5,12771099
1000000,SawTooth,2,ParallelSort,6,21615629
1000000,SawTooth,2,ParallelSort,7,33967127
1000000,SawTooth,2,ParallelSort,8,50310072
1000000,SawTooth,2,ParallelSort,9,71323013
1000000,SawTooth,2,ParallelSort,10,97608695
1000000,SawTooth,2,ParallelBufferedSort,0,165287
1000000,SawTooth,2,ParallelBufferedSort,1,235291
1000000,SawTooth,2,ParallelBufferedSort,2,664784
1000000,SawTooth,2,ParallelBufferedSort,3,2022055
1000000,SawTooth,2,ParallelBufferedSort,4,4243183
1000000,SawTooth,2,ParallelBufferedSort,5,7881407
1000000,SawTooth,2,ParallelBufferedSort,6,13322036
1000000,SawTooth,2,ParallelBufferedSort,7,20921352
1000000,SawTooth,2,ParallelBufferedSort,8,31029157
1000000,SawTooth,2,ParallelBufferedSort,9,44026736
1000000,SawTooth,2,ParallelBufferedSort,10,60242815
1000000,SawTooth,2,ParallelRadixSort,0,112356
1000000,SawTooth,2,ParallelRadixSort,1,172057
1000000,SawTooth,2,ParallelRadixSort,2,415034
1000000,SawTooth,2,ParallelRadixSort,3,1197762
1000000,SawTooth,2,ParallelRadixSort,4,2506952
1000000,SawTooth,2,ParallelRadixSort,5,4686345
1000000,SawTooth,2,ParallelRadixSort,6,7914479
1000000,SawTooth,2,ParallelRadixSort,7,12449246
1000000,SawTooth,2,ParallelRadixSort,8,18513208
1000000,SawTooth,2,ParallelRadixSort,9,26141053
1000000,SawTooth,2,ParallelRadixSort,10,35777658
1000000,SawTooth,2,StdSort,0,531614
1000000,SawTooth,2,StdSort,1,765090
1000000,SawTooth,2,StdSort,2,2207470
1000000,SawTooth,2,StdSort,3,6866670
1000000,SawTooth,2,StdSort,4,14405120
1000000,SawTooth,2,StdSort,5,26763942
1000000,SawTooth,2,StdSort,6,45236680
1000000,SawTooth,2,StdSort,7,71045327
1000000,SawTooth,2,StdSort,8,105327919
1000000,SawTooth,2,StdSort,9,149373544
1000000,SawTooth,2,StdSort,10,204416932
1000000,SawTooth,3,ParallelSort,0,194064
1000000,SawTooth,3,ParallelSort,1,285061
1000000,SawTooth,3,ParallelSort,2,820743
1000000,SawTooth,3,ParallelSort,3,2558090
1000000,SawTooth,3,ParallelSort,4,5382210
1000000,SawTooth,3,ParallelSort,5,10018016
1000000,SawTooth,3,ParallelSort,6,16981732
1000000,SawTooth,3,ParallelSort,7,26660342
1000000,SawTooth,3,ParallelSort,8,39516490
1000000,SawTooth,3,ParallelSort,9,56052628
1000000,SawTooth,3,ParallelSort,10,76631964
1000000,SawTooth,3,ParallelBufferedSort,0,116523
1000000,SawTooth,3,ParallelBufferedSort,1,154958
1000000,SawTooth,3,ParallelBufferedSort,2,440224
1000000,SawTooth,3,ParallelBufferedSort,3,1331408
1000000,SawTooth,3,ParallelBufferedSort,4,2806186
1000000,SawTooth,3,ParallelBufferedSort,5,5213340
1000000,SawTooth,3,ParallelBufferedSort,6,8804711
1000000,SawTooth,3,ParallelBufferedSort,7,13802344
1000000,SawTooth,3,ParallelBufferedSort,8,20460135
1000000,SawTooth,3,ParallelBufferedSort,9,29090806
1000000,SawTooth,3,ParallelBufferedSort,10,39712058
1000000,SawTooth,3,ParallelRadixSort,0,103636
1000000,SawTooth,3,ParallelRadixSort,1,159886
1000000,SawTooth,3,ParallelRadixSort,2,383052
1000000,SawTooth,3,ParallelRadixSort,3,1097725
1000000,SawTooth,3,ParallelRadixSort,4,2300725
1000000,SawTooth,3,ParallelRadixSort,5,4275464
1000000,SawTooth,3,ParallelRadixSort,6,5469877
1000000,SawTooth,3,ParallelRadixSort,7,8572063
1000000,SawTooth,3,ParallelRadixSort,8,12699942
1000000,SawTooth,3,ParallelRadixSort,9,18483384
1000000,SawTooth,3,ParallelRadixSort,10,24647677
1000000,SawTooth,3,StdSort,0,530048
1000000,SawTooth,3,StdSort,1,764073
1000000,SawTooth,3,StdSort,2,2205707
1000000,SawTooth,3,StdSort,3,6874047
1000000,SawTooth,3,StdSort,4,14407676
1000000,SawTooth,3,StdSort,5,26763001
1000000,SawTooth,3,StdSort,6,45231905
1000000,SawTooth,3,StdSort,7,71041546
1000000,SawTooth,3,StdSort,8,105333684
1000000,SawTooth,3,StdSort,9,149373270
1000000,SawTooth,3,StdSort,10,204410058
1000000,SawTooth,4,ParallelSort,0,169576
1000000,SawTooth,4,ParallelSort,1,250429
1000000,SawTooth,4,ParallelSort,2,717657
1000000,SawTooth,4,ParallelSort,3,2201398
1000000,SawTooth,4,ParallelSort,4,4667751
1000000,SawTooth,4,ParallelSort,5,8680801
1000000,SawTooth,4,ParallelSort,6,14680633
1000000,SawTooth,4,ParallelSort,7,22701642
1000000,SawTooth,4,ParallelSort,8,34047415
1000000,SawTooth,4,ParallelSort,9,47957333
1000000,SawTooth,4,ParallelSort,10,65994493
1000000,SawTooth,4,ParallelBufferedSort,0,108754
1000000,SawTooth,4,ParallelBufferedSort,1,145460
1000000,SawTooth,4,ParallelBufferedSort,2,397945
1000000,SawTooth,4,ParallelBufferedSort,3,1196221
1000000,SawTooth,4,ParallelBufferedSort,4,2511202
1000000,SawTooth,4,ParallelBufferedSort,5,4674393
1000000,SawTooth,4,ParallelBufferedSort,6,7896577
1000000,SawTooth,4,ParallelBufferedSort,7,12402069
1000000,SawTooth,4,ParallelBufferedSort,8,18357384
1000000,SawTooth,4,ParallelBufferedSort,9,26004530
1000000,SawTooth,4,ParallelBufferedSort,10,35574125
1000000,SawTooth,4,ParallelRadixSort,0,103590
1000000,SawTooth,4,ParallelRadixSort,1,154534
1000000,SawTooth,4,ParallelRadixSort,2,365146
1000000,SawTooth,4,ParallelRadixSort,3,1045840
1000000,SawTooth,4,ParallelRadixSort,4,2113654
1000000,SawTooth,4,ParallelRadixSort,5,2923043
1000000,SawTooth,4,ParallelRadixSort,6,4164874
1000000,SawTooth,4,ParallelRadixSort,7,6502428
1000000,SawTooth,4,ParallelRadixSort,8,9535579
1000000,SawTooth,4,ParallelRadixSort,9,13005428
1000000,SawTooth,4,ParallelRadixSort,10,18725645
1000000,SawTooth,4,StdSort,0,530011
1000000,SawTooth,4,StdSort,1,764115
1000000,SawTooth,4,StdSort,2,2206067
1000000,SawTooth,4,StdSort,3,6868035
1000000,SawTooth,4,StdSort,4,14406514
1000000,SawTooth,4,StdSort,5,26763506
1000000,SawTooth,4,StdSort,6,45233948
1000000,SawTooth,4,StdSort,7,71046975
1000000,SawTooth,4,StdSort,8,105327346
1000000,SawTooth,4,StdSort,9,149378508
1000000,SawTooth,4,StdSort,10,204418182
1000000,SawTooth,5,ParallelSort,0,158628
1000000,SawTooth,5,ParallelSort,1,233203
1000000,SawTooth,5,ParallelSort,2,654074
1000000,SawTooth,5,ParallelSort,3,2051671
1000000,SawTooth,5,ParallelSort,4,4321438
1000000,SawTooth,5,ParallelSort,5,8040671
1000000,SawTooth,5,ParallelSort,6,13488260
1000000,SawTooth,5,ParallelSort,7,21218452
1000000,SawTooth,5,ParallelSort,8,31299500
1000000,SawTooth,5,ParallelSort,9,44435226
1000000,SawTooth,5,ParallelSort,10,60669664
1000000,SawTooth,5,ParallelBufferedSort,0,91275
1000000,SawTooth,5,ParallelBufferedSort,1,118912
1000000,SawTooth,5,ParallelBufferedSort,2,327148
1000000,SawTooth,5,ParallelBufferedSort,3,990403
1000000,SawTooth,5,ParallelBufferedSort,4,2082338
1000000,SawTooth,5,ParallelBufferedSort,5,3894910
1000000,SawTooth,5,ParallelBufferedSort,6,6553704
1000000,SawTooth,5,ParallelBufferedSort,7,10281012
1000000,SawTooth,5,ParallelBufferedSort,8,15255824
1000000,SawTooth,5,ParallelBufferedSort,9,21566439
1000000,SawTooth,5,ParallelBufferedSort,10,29577420
1000000,SawTooth,5,ParallelRadixSort,0,56324
1000000,SawTooth,5,ParallelRadixSort,1,77156
1000000,SawTooth,5,ParallelRadixSort,2,176786
1000000,SawTooth,5,ParallelRadixSort,3,507167
1000000,SawTooth,5,ParallelRadixSort,4,1049822
1000000,SawTooth,5,ParallelRadixSort,5,1960335
1000000,SawTooth,5,ParallelRadixSort,6,3284352
1000000,SawTooth,5,ParallelRadixSort,7,5192473
1000000,SawTooth,5,ParallelRadixSort,8,8010648
1000000,SawTooth,5,ParallelRadixSort,9,11236071
1000000,SawTooth,5,ParallelRadixSort,10,14697925
1000000,SawTooth,5,StdSort,0,530086
1000000,SawTooth,5,StdSort,1,764110
1000000,SawTooth,5,StdSort,2,2204258
1000000,SawTooth,5,StdSort,3,6865926
1000000,SawTooth,5,StdSort,4,14406148
1000000,SawTooth,5,StdSort,5,26762303
1000000,SawTooth,5,StdSort,6,45237650
1000000,SawTooth,5,StdSort,7,71045857
1000000,SawTooth,5,StdSort,8,105336794
1000000,SawTooth,5,StdSort,9,149373525
1000000,SawTooth,5,StdSort,10,204414226
1000000,SawTooth,6,ParallelSort,0,149364
1000000,SawTooth,6,ParallelSort,1,213773
1000000,SawTooth,6,ParallelSort,2,604594
1000000,SawTooth,6,ParallelSort,3,1924855
1000000,SawTooth,6,ParallelSort,4,3983488
1000000,SawTooth,6,ParallelSort,5,7385738
1000000,SawTooth,6,ParallelSort,6,12508060
1000000,SawTooth,6,ParallelSort,7,19703102
1000000,SawTooth,6,ParallelSort,8,28736832
1000000,SawTooth,6,ParallelSort,9,41407626
1000000,SawTooth,6,ParallelSort,10,56546604
1000000,SawTooth,6,ParallelBufferedSort,0,88176
1000000,SawTooth,6,ParallelBufferedSort,1,115531
1000000,SawTooth,6,ParallelBufferedSort,2,320634
1000000,SawTooth,6,ParallelBufferedSort,3,987181
1000000,SawTooth,6,ParallelBufferedSort,4,1984506
1000000,SawTooth,6,ParallelBufferedSort,5,3651366
1000000,SawTooth,6,ParallelBufferedSort,6,6164329
1000000,SawTooth,6,ParallelBufferedSort,7,9685356
1000000,SawTooth,6,ParallelBufferedSort,8,14362954
1000000,SawTooth,6,ParallelBufferedSort,9,20357513
1000000,SawTooth,6,ParallelBufferedSort,10,27823164
1000000,SawTooth,6,ParallelRadixSort,0,48782
1000000,SawTooth,6,ParallelRadixSort,1,66335
1000000,SawTooth,6,ParallelRadixSort,2,144674
1000000,SawTooth,6,ParallelRadixSort,3,411725
1000000,SawTooth,6,ParallelRadixSort,4,853182
1000000,SawTooth,6,ParallelRadixSort,5,1583436
1000000,SawTooth,6,ParallelRadixSort,6,2675167
1000000,SawTooth,6,ParallelRadixSort,7,4206772
1000000,SawTooth,6,ParallelRadixSort,8,6258777
1000000,SawTooth,6,ParallelRadixSort,9,8842277
1000000,SawTooth,6,ParallelRadixSort,10,12079692
1000000,SawTooth,6,StdSort,0,530043
1000000,SawTooth,6,StdSort,1,764058
1000000,SawTooth,6,StdSort,2,2204524
1000000,SawTooth,6,StdSort,3,6867468
1000000,SawTooth,6,StdSort,4,14407252
1000000,SawTooth,6,StdSort,5,26764326
1000000,SawTooth,6,StdSort,6,45235062
1000000,SawTooth,6,StdSort,7,71045342
1000000,SawTooth,6,StdSort,8,105326638
1000000,SawTooth,6,StdSort,9,149372723
1000000,SawTooth,6,StdSort,10,204414418
1000000,SawTooth,7,ParallelSort,0,139817
1000000,SawTooth,7,ParallelSort,1,205204
1000000,SawTooth,7,ParallelSort,2,580167
1000000,SawTooth,7,ParallelSort,3,1790314
1000000,SawTooth,7,ParallelSort,4,3860848
1000000,SawTooth,7,ParallelSort,5,7078394
1000000,SawTooth,7,ParallelSort,6,11891472
1000000,SawTooth,7,ParallelSort,7,18835140
1000000,SawTooth,7,ParallelSort,8,27713881
1000000,SawTooth,7,ParallelSort,9,39269119
1000000,SawTooth,7,ParallelSort,10,54249227
1000000,SawTooth,7,ParallelBufferedSort,0,79707
1000000,SawTooth,7,ParallelBufferedSort,1,111609
1000000,SawTooth,7,ParallelBufferedSort,2,302804
1000000,SawTooth,7,ParallelBufferedSort,3,908603
1000000,SawTooth,7,ParallelBufferedSort,4,1882444
1000000,SawTooth,7,ParallelBufferedSort,5,2979856
1000000,SawTooth,7,ParallelBufferedSort,6,5044969
1000000,SawTooth,7,ParallelBufferedSort,7,7915249
1000000,SawTooth,7,ParallelBufferedSort,8,11482267
1000000,SawTooth,7,ParallelBufferedSort,9,16599292
1000000,SawTooth,7,ParallelBufferedSort,10,22143557
1000000,SawTooth,7,ParallelRadixSort,0,45997
1000000,SawTooth,7,ParallelRadixSort,1,68106
1000000,SawTooth,7,ParallelRadixSort,2,130547
1000000,SawTooth,7,ParallelRadixSort,3,361289
1000000,SawTooth,7,ParallelRadixSort,4,755533
1000000,SawTooth,7,ParallelRadixSort,5,1405925
1000000,SawTooth,7,ParallelRadixSort,6,2376970
1000000,SawTooth,7,ParallelRadixSort,7,3717093
1000000,SawTooth,7,ParallelRadixSort,8,5429099
1000000,SawTooth,7,ParallelRadixSort,9,7675760
1000000,SawTooth,7,ParallelRadixSort,10,10491072
1000000,SawTooth,7,StdSort,0,540207
1000000,SawTooth,7,StdSort,1,765118
1000000,SawTooth,7,StdSort,2,2208204
1000000,SawTooth,7,StdSort,3,6866070
1000000,SawTooth,7,StdSort,4,14405304
1000000,SawTooth,7,StdSort,5,26763934
1000000,SawTooth,7,StdSort,6,45235632
1000000,SawTooth,7,StdSort,7,71043205
1000000,SawTooth,7,StdSort,8,105326262
1000000,SawTooth,7,StdSort,9,149374179
1000000,SawTooth,7,StdSort,10,204414370
1000000,SawTooth,8,ParallelSort,0,133438
1000000,SawTooth,8,ParallelSort,1,192994
1000000,SawTooth,8,ParallelSort,2,568143
1000000,SawTooth,8,ParallelSort,3,1785122
1000000,SawTooth,8,ParallelSort,4,3704637
1000000,SawTooth,8,ParallelSort,5,6825157
1000000,SawTooth,8,ParallelSort,6,11713733
1000000,SawTooth,8,ParallelSort,7,18425179
1000000,SawTooth,8,ParallelSort,8,27281263
1000000,SawTooth,8,ParallelSort,9,38738959
1000000,SawTooth,8,ParallelSort,10,53368438
1000000,SawTooth,8,ParallelBufferedSort,0,44932
1000000,SawTooth,8,ParallelBufferedSort,1,56119
1000000,SawTooth,8,ParallelBufferedSort,2,144200
1000000,SawTooth,8,ParallelBufferedSort,3,433194
1000000,SawTooth,8,ParallelBufferedSort,4,891996
1000000,SawTooth,8,ParallelBufferedSort,5,1639046
1000000,SawTooth,8,ParallelBufferedSort,6,2762321
1000000,SawTooth,8,ParallelBufferedSort,7,4327007
1000000,SawTooth,8,ParallelBufferedSort,8,6408442
1000000,SawTooth,8,ParallelBufferedSort,9,9091357
1000000,SawTooth,8,ParallelBufferedSort,10,12503852
1000000,SawTooth,8,ParallelRadixSort,0,41594
1000000,SawTooth,8,ParallelRadixSort,1,55310
1000000,SawTooth,8,ParallelRadixSort,2,128653
1000000,SawTooth,8,ParallelRadixSort,3,332015
1000000,SawTooth,8,ParallelRadixSort,4,720332
1000000,SawTooth,8,ParallelRadixSort,5,1276124
1000000,SawTooth,8,ParallelRadixSort,6,2162478
1000000,SawTooth,8,ParallelRadixSort,7,3333219
1000000,SawTooth,8,ParallelRadixSort,8,4999940
1000000,SawTooth,8,ParallelRadixSort,9,6758506
1000000,SawTooth,8,ParallelRadixSort,10,9323973
1000000,SawTooth,8,StdSort,0,549639
1000000,SawTooth,8,StdSort,1,766770
1000000,SawTooth,8,StdSort,2,2206443
1000000,SawTooth,8,StdSort,3,6867934
1000000,SawTooth,8,StdSort,4,14407441
1000000,SawTooth,8,StdSort,5,26764582
1000000,SawTooth,8,StdSort,6,45234410
1000000,SawTooth,8,StdSort,7,71045761
1000000,SawTooth,8,StdSort,8,105325584
1000000,SawTooth,8,StdSort,9,149372834
1000000,SawTooth,8,StdSort,10,204420450