This repository has code that implements basic matrix operations. Their sole purpose are to test and demonstrate the two main algorithms of fast matrix multiplication, namely the traditional/naive algorithm and the Strassen algorithm. It will also contain runtime tests.
This project is equipped with CMake. Simply use the CMake build idiom:
mkdir build && cd build
cmake ..
cmake --build .All executables are built in build/app after build. Simply run the executables.