Table of Contents
[TOCM]
[TOC]
Matrix Multiplier with following features
Multithreading Supported Multiple Output Choice Error Handling Efficient
MatMul is completely written in C Language. It can efficiently multiply two matrices using threads.
MatMul requires GCC, GDB and make to run.
Install all dependencies before installation
- open terminal
- run the following commands on terminal
sudo apt update -y
sudo apt upgrade -y
sudo apt install make -y
sudo apt install gdb -y
sudo apt install gcc -y- extract the zip
- open the terminal in the extracted folder
- run the following command on terminal
makeEnter following commands on terminal
make run FILE1=pathToFile1 FILE2=pathToFile2./bin/main pathToFile1 pathToFile1file2- To remove the previous build
make clean