PoC from the article: A Performance Comparison Between C, Java, and Python.
You can follow steps below or you can run from the jupyter notebook README.ipynb
cd Java
java MatrixMultiplication.java
cd ../c
gcc -O2 MatrixMultiplication.c -o MatrixMultiplication
gcc -O3 MatrixMultiplication.c -o MatrixMultiplication
./MatrixMultiplication
cd ../python
python MatrixMultiplication.py