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
- Host: GitHub
- URL: https://github.com/ivanbgd/matrix-multiplication-matmul-c
- Owner: ivanbgd
- License: mit
- Created: 2017-09-20T18:57:12.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-10-02T00:09:44.000Z (over 8 years ago)
- Last Synced: 2025-02-03T10:11:56.453Z (over 1 year ago)
- Topics: c, matrices, matrix, matrix-multiplication, non-square-matrix-multiplication, open-mp, openmp
- Language: C
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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".