Warning
This page is located in archive. Go to the latest version of this course pages.

Benchmarking

Task assignment

Your task is to measure time performance of three different implementations of matrix multiplication and compare them:

  1. Standard multiplication
  2. Multiplication with the second matrix transposed before the multiplication
  3. Multiplication of the matrices in 1D representation

You probably need to do the following steps:

  1. Download the program from git repository: git clone https://gitlab.fel.cvut.cz/cuchymar/benchmarking.git
  2. Open the source code in IDE
  3. Run the program (cz.esw.benchmark.Main class)
  4. Do the measurements on each of the implementations of the matrix multiplication
    1. Determine a warm-up period for each implementation
    2. Measure a time performance for each implementation and compute the average performance and 95% confidence interval of the measurements (Section 9.3)
    3. Compute comparison ratios of the implementations and 95% confidence intervals of the ratios (Section 10.1)
  5. Upload a report with the results to the upload system

You can make any changes in the Main class to perform the measurements but you are not allowed to modify the MatrixUtils class.

Report structure

The report should include the following parts:

  • Machine specification - CPU, memory, OS, Java version (java -version), etc.
  • Used JVM parameters (if applied)
  • Warm-up period:
    • Brief description of how the warm-up period was determined
    • The results (with graphs) for each implementation
  • Time performance:
    • Brief description of the measurement procedure
    • Results including graphs with visualization of the confidence intervals
  • Comparison:
    • Brief description of how the comparison was done
    • Resulting ratios with the confidence intervals
  • Conclusions:
    • Summary of the results and a discussion

Report templates: benchmark_template.doc, LaTeX template

Materials

Benchmarking

courses/b4m36esw/labs/lab03.txt · Last modified: 2018/03/05 13:52 by cuchymar