├── .gitignore ├── ChangeLog.md ├── LICENSE ├── README.md ├── Setup.hs ├── bench ├── Alloc.hs └── Runtime.hs ├── fastest-matrices.cabal ├── naive ├── mmult.c └── norm.c ├── out10.json ├── out100.json ├── out50.json ├── parse.py └── stack.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magalame/fastest-matrices/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magalame/fastest-matrices/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magalame/fastest-matrices/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magalame/fastest-matrices/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /bench/Alloc.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magalame/fastest-matrices/HEAD/bench/Alloc.hs -------------------------------------------------------------------------------- /bench/Runtime.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magalame/fastest-matrices/HEAD/bench/Runtime.hs -------------------------------------------------------------------------------- /fastest-matrices.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magalame/fastest-matrices/HEAD/fastest-matrices.cabal -------------------------------------------------------------------------------- /naive/mmult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magalame/fastest-matrices/HEAD/naive/mmult.c -------------------------------------------------------------------------------- /naive/norm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magalame/fastest-matrices/HEAD/naive/norm.c -------------------------------------------------------------------------------- /out10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magalame/fastest-matrices/HEAD/out10.json -------------------------------------------------------------------------------- /out100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magalame/fastest-matrices/HEAD/out100.json -------------------------------------------------------------------------------- /out50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magalame/fastest-matrices/HEAD/out50.json -------------------------------------------------------------------------------- /parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magalame/fastest-matrices/HEAD/parse.py -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magalame/fastest-matrices/HEAD/stack.yaml --------------------------------------------------------------------------------