/*
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* - Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
*
* - Neither the name of Oracle nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* This source code is provided to illustrate the usage of a given feature
* or technique and has been deliberately simplified. Additional steps
* required for a production-quality application, such as security checks,
* input validation and proper error handling, might not be present in
* this sample code.
*/
/**
* MergeExample is a class that runs a demo benchmark of the {@code ForkJoin} framework
* by benchmarking a {@link MergeSort} algorithm that is implemented using
* {@link java.util.concurrent.RecursiveAction}.
* The {@code ForkJoin} framework is setup with different parallelism levels
* and the sort is executed with arrays of different sizes to see the
* trade offs by using multiple threads for different sizes of the array.
*/
public class MergeDemo {
// Use a fixed seed to always get the same random values back
/**
* Represents the formula {@code f(n) = start + (step * n)} for n = 0 & n < iterations
*/
private static class Range {
private final int start;
private final int step;
private final int iterations;
this.iterations = iterations;
}
/**
* Parses start, step and iterations from args
* @param args the string array containing the arguments
* @param start which element to start the start argument from
* @return the constructed range
*/
throw new IllegalArgumentException("Too few elements in array");
}
}
}
public int getIterations() {
return iterations;
}
}
}
/**
* Wraps the different parameters that is used when running the MergeExample.
* {@code sizes} represents the different array sizes
* {@code parallelism} represents the different parallelism levels
*/
private static class Configuration {
this.parallelism = parallelism;
}
/**
* Parses the arguments and attempts to create a configuration containing the
* parameters for creating the array sizes and parallelism sizes
* @param args the input arguments
* @return the configuration
*/
return defaultConfig;
} else {
try {
}
} catch (NumberFormatException e) {
}
System.err.println("MergeExample <size start> <size step> <size steps> <parallel start> <parallel step>" +
" <parallel steps>");
" and parallelism: 1, 2, 3, 4");
return null;
}
}
/**
* Creates an array for reporting the test result time in
* @return an array containing {@code sizes.iterations * parallelism.iterations} elements
*/
private long[][] createTimesArray() {
}
if (this == defaultConfig) {
}
}
}
/**
* Generates an array of {@code elements} random elements
* @param elements the number of elements requested in the array
* @return an array of {@code elements} random elements
*/
for (int i = 0; i < elements; ++i) {
}
return array;
}
/**
* Runs the test
* @param config contains the settings for the test
*/
// Run a couple of sorts to make the JIT compile / optimize the code
// which should produce somewhat more fair times
warmup();
}
}
/**
* Prints the results as a table
* @param sizes the different sizes of the arrays
* @param parallelism the different parallelism levels used
* @param times the median times for the different sizes / parallelism
*/
}
}
}
}
}
}
}
/**
* Runs <i>iterations</i> number of test sorts of a random array of <i>element</i> length
* @param iterations number of iterations
* @param elements number of elements in the random array
* @param parallelism parallelism for the ForkJoin framework
* @return the median time of runs
*/
long[] times = new long[iterations];
for (int i = 0; i < iterations; i++) {
// Suggest the VM to run a garbage collection to reduce the risk of getting one
// while running the test run
}
return medianValue(times);
}
/**
* Calculates the median value of the array
* @param times array of times
* @return the median value
*/
throw new IllegalArgumentException("Empty array");
}
// Make a copy of times to avoid having side effects on the parameter value
}
return median;
}
/**
* Generates 1000 arrays of 1000 elements and sorts them as a warmup
*/
private void warmup() {
for (int i = 0; i < 1000; i++) {
}
}
if (configuration == null) {
}
}
}