Skip to content

Latest commit

 

History

History

matrixMul8

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Mat Mul C program

Write an application to implement a Matrix Multiplication.

Write a version simply using C with no optimizations to use it as a baseline.
Apply the concepts learnt in the previous exercise to optimze the code (loop unrolling, SIMD, etc) and compare performance.
Analyze the source of stalls and find a solution for those (if any).