Esempio n. 1
0
    static void IntSort(int length, int processAmount, int concurrentJobs)
    {
        var array = SortUtilityTest.GenerateIntNativeArray(length, out var inputDeps);

        inputDeps.Complete();
        Sort(array, processAmount, concurrentJobs);
    }
 static void IntSort(int length, int concurrentJobs)
 {
     IntSort(SortUtilityTest.GenerateIntNativeArray(length, out var inputDeps), concurrentJobs, inputDeps);
 }