Skip to content

aminya/MatlabJuliaMatrixOperationsBenchmark

 
 

Repository files navigation

Attention: This repository is deprecated and moved to https://github.com/juliamatlab/Julia-Matlab-Benchmark

Matlab & Julia Matrix Operations Benchmark

Updated by Amin Yahyaabadi:

This is a small benchmark of some common Matrix Operations (Linear Algebra Oriented).
The purpose of this Benchmark is to display Run Time of various commonly used operations by Signal / Image / Data Processing Algorithm Engineers. It was born from curiosity to to try Julia and if it will assist any user of Julia / MATLAB it served its purpose. Better yet if it would assist Julia / MATLAB Developers to extract even better performance from their product it served its purpose twice.

Results

This sections displays the results of the benchmark. Each test is being executed several times and the median of run times is taken, then this is repeated for some iterations, and their average is calculated.

Matrix Generation

Generation of a Square Matrix using the randn() function and rand().

  • MATLAB Code - mA = randn(matrixSize, matrixSize), mB = randn(matrixSize, matrixSize).
  • Julia Code - mA = randn(matrixSize, matrixSize), mB = randn(matrixSize, matrixSize).

Matrix Generation

Matrix Addition

Addition of 2 square matrices where each is multiplied by a scalar.

  • MATLAB Code - mA = (scalarA .* mX) + (scalarB .* mY).
  • Julia Code - mA = (scalarA .* mX) .+ (scalarB .* mY) (Using the dot for Loop Fusion).

Matrix Addition

Matrix Multiplication

Multiplication of 2 square matrices after a scalar is added to each.

  • MATLAB Code - mA = (scalarA + mX) * (scalarB + mY).
  • Julia Code - mA = (scalarA .+ mX) * (scalarB .+ mY) (Using the dot for Loop Fusion).

Matrix Multiplication

Matrix Quadratic Form

Calculation of Matrix / Vector Quadratic Form.

  • MATLAB Code - mA = ((mX * vX).' * (mX * vX)) + (vB.' * vX) + sacalrC;.
  • Julia Code - mA = (transpose(mX * vX) * (mX * vX)) .+ (transpose(vB) * vX) .+ scalarC; (Using the dot for Loop Fusion).

Matrix Quadratic Form

Matrix Reductions

Set of operations which reduce the matrix dimension (Works along one dimension).
The operation is done on 2 different matrices on along different dimensions.
The result is summed with broadcasting to generate a new matrix.

  • MATLAB Code - mA = sum(mX, 1) + min(mY, [], 2);.
  • Julia Code - mA = sum(mX, dims=1) .+ minimum(mY, dims=2); (Using the dot for Loop Fusion).

Matrix Reductions

Element Wise Operations

Set of operations which are element wise.

  • MATLAB Code - mD = abs(mA) + sin(mB);, mE = exp(-(mA .^ 2)); and mF = (-mB + sqrt((mB .^ 2) - (4 .* mA .* mC))) ./ (2 .* mA);.
  • Julia Code - mD = abs.(mA) .+ sin.(mB);, mE = exp.(-(mA .^ 2)); and mF = (-mB .+ sqrt.((mB .^ 2) .- (4 .* mA .* mC))) ./ (2 .* mA); (Using the dot for Loop Fusion).

Element Wise Operations

Matrix Exponent

Calculation of Matrix Exponent.

  • MATLAB Code - mA = expm(mX);.
  • Julia Code - mA = exp(mX);.

Matrix Exponent

Matrix Square Root

Calculation of Matrix Square Root.

  • MATLAB Code - mA = sqrtm(mY);.
  • Julia Code - mA = sqrt(mY);.

Matrix Square Root

SVD

Calculation of all 3 SVD Matrices.

  • MATLAB Code - [mU, mS, mV] = svd(mX).
  • Julia Code - F = svd(mX, full = false); # F is SVD object, mU, mS, mV = F;.

SVD

Eigen Decomposition

Calculation of 2 Eigen Decomposition Matrices.

  • MATLAB Code - [mD, mV] = eig(mX).
  • Julia Code - F = eigen(mX); # F is eigen object, mD, mV = F;.

Eigen Decomposition

Cholesky Decomposition

Calculation of Cholseky Decomposition.

  • MATLAB Code - mA = cholesky(mY).
  • Julia Code - mA = cholesky(mY).

Cholseky Decomposition

Matrix Inversion

Calculation of the Inverse and Pseudo Inverse of a matrix.

  • MATLAB Code - mA = inv(mY) and mB = pinv(mX).
  • Julia Code - mA = inv(mY) and mB = pinv(mX).

Matrix Inversion

Linear System Solution

Solving a Vector Linear System and a Matrix Linear System.

  • MATLAB Code - vX = mA \ vB and mX = mA \ mB.
  • Julia Code - vX = mA \ vB and mX = mA \ mB.

Linear System Solution

Linear Least Squares

Solving a Vector Least Squares and a Matrix Least Squares.
This is combines Matrix Transpose, Matrix Multiplication (Done at onces), Matrix Inversion (Positive Definite) and Matrix Vector / Matrix Multiplication.

  • MATLAB Code - vX = (mA.' * mA) \ (mA.' * vB) and mX = (mA.' * mA) \ (mA.' * mB).
  • Julia Code - mXT=transpose(mX); vA = ( mXT * mX) \ ( mXT * vB); mA = ( mXT * mX) \ ( mXT * mB);.

Linear Least Squares

Squared Distance Matrix

Calculation of the Squared Distance Matrix between 2 sets of Vectors.
Namely, each element in the matrix is the squared distance between 2 vectors.
This is calculation is needed for instance in the K-Means algorithm. It is composed of Matrix Reduction operation, Matrix Multiplication and Broadcasting.

  • MATLAB Code - mA = sum(mX .^ 2, 1).' - (2 .* mX.' * mY) + sum(mY .^ 2, 1).
  • Julia Code - mA = transpose( sum(mX .^ 2, dims=1) ) .- (2 .* transpose(mX) * mY) .+ sum(mY .^ 2, dims=1); (Using the dot for Loop Fusion).

Squared Distance Matrix

K-Means Algorithm

Running 10 iterations of the K-Means Algorithm.

  • MATLAB Code - See MatlabBench.m at KMeans().
  • Julia Code - See JuliaBench.jl at KMeans().

K-Means Algorithm

System Configuration

  • System Model - Dell Latitude 5590 https://www.dell.com/en-ca/work/shop/dell-tablets/latitude-5590/spd/latitude-15-5590-laptop

  • CPU - Intel(R) Core(TM) i5-8250U @ 1.6 [GHz] 1800 Mhz, 4 Cores, 8 Logical Processors.

  • Memory - 1x8GB DDR4 2400MHz Non-ECC

  • Windows 10 Professional 64 Bit.

  • MATLAB R2018b.

    • BLAS Version (version -blas) - Intel(R) Math Kernel Library Version 2018.0.1 Product Build 20171007 for Intel(R) 64 architecture applications, CNR branch AVX2
    • LAPACK Version (version -lapack) - Intel(R) Math Kernel Library Version 2018.0.1 Product Build 20171007 for Intel(R) 64 architecture applications CNR branch AVX2 Linear Algebra PACKage Version 3.7.0

Two version of Julia was used:

  • JuliaMKL: Julia 1.1.1 + MKL.

  • Julia: JuliaPro 1.1.1.1

    • Julia Version (versioninfo()) - Julia Version 1.1.1 Commit 55e36cc308 (2019-05-16 04:10 UTC);
    • BLAS Version - LinearAlgebra.BLAS.vendor(): openBlas64 .
    • LAPACK Version - libopenblas64_.
    • LIBM Version - libopenlibm.
    • LLVM Version - libLLVM-6.0.1 (ORCJIT, skylake).
    • JULIA_EDITOR = "C:\JuliaPro-1.1.1.1\app-1.36.0\atom.exe" -a
    • JULIA_NUM_THREADS = 4

How to Run

Run the Benchmark - Julia

Download JuliaMain.jland JuliaBench.jl From console:

include("JuliaMain.jl");

Run the Benchmark - MATLAB

Download MatlabMain.mand MatlabBench.m From MATLAB command line :

MatlabMain

Run The Analysis In MATLAB

  • Download AnalyszeRunTimeResults.m.
  • Run both MATLAB and Julia Benchmark to create the CSV files.
  • From MATLAB command line AnalyszeRunTimeResults.
  • Images of the performance test will be created and displayed.

Run The Analysis In Julia

  • Download AnalysisJuliaPlotter.jland AnalyszeRunTimeResults.jl.
  • Run both MATLAB and Julia Benchmark to create the CSV files.
  • From Julia command line include("AnalyszeRunTimeResults.jl");.
  • Images of the performance test will be created and displayed.

To Do:

Discourse Discusion Forum:

https://discourse.julialang.org/t/benchmark-matlab-julia-for-matrix-operations/2000

Old Royi Remarks

  • I'm not an expert in Julia (Actually this was my first time coding Julia). Hence, if there are ways to improve the run time, please share with me. I did took advise from More Dots: Syntactic Loop Fusion in Julia.
  • This is only a small sub set of operations. I will expand it with time. If you have ideas for small micro benchmark to be added, please share.
  • For each function the output was set to dependent on the calculation which was timed to prevent JIT optimizations which excludes the calculation (MATLAB infers the calculation has no effect on the output and doesn't run it).
  • The MATLAB code uses Broadcasting which is a feature added on MATLAB R2016b. Hence the test requires this version or one must adjust the code (Use bsxfun()).
  • There is no perfect test and this is far from being one. All it tried to do is measure run time of few common operations done by Signal / Image / Data Processing Algorithm Engineers. If it can assist MATLAB and Julia creators to improve performance and tune their implementation it served it purpose.

About

(Deprecated and Moved) Benchmark MATLAB & Julia for Matrix Operations

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Julia 65.2%
  • MATLAB 34.8%