An open API service indexing awesome lists of open source software.

https://github.com/ivanbgd/matrix-multiplication-matmul-c

Matrix Multiplication of non-square matrices in C, including parallel versions
https://github.com/ivanbgd/matrix-multiplication-matmul-c

c matrices matrix matrix-multiplication non-square-matrix-multiplication open-mp openmp

Last synced: about 1 year ago
JSON representation

Matrix Multiplication of non-square matrices in C, including parallel versions

Awesome Lists containing this project

README

          

# Matrix-Multiplication-MatMul-C
Matrix Multiplication of non-square matrices in C, including parallel versions

## Open MP
### gcc
Compile with: `gcc -fopenmp -O2 file_name.c -o file_name -lm`
### Visual Studio
Go to project properties, and under "Configuration Properties --> C/C++ --> Language --> Open MP Support" select "Yes".