https://github.com/ivanbgd/matrices-c
Matrix operations in C, sequential and parallel implementations (Open MP)
https://github.com/ivanbgd/matrices-c
c matrices matrix matrix-calculations matrix-functions matrix-multiplication open-mp openmp
Last synced: about 1 year ago
JSON representation
Matrix operations in C, sequential and parallel implementations (Open MP)
- Host: GitHub
- URL: https://github.com/ivanbgd/matrices-c
- Owner: ivanbgd
- License: mit
- Created: 2017-09-21T01:19:30.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-03T23:24:59.000Z (over 8 years ago)
- Last Synced: 2025-02-03T10:11:56.585Z (over 1 year ago)
- Topics: c, matrices, matrix, matrix-calculations, matrix-functions, matrix-multiplication, open-mp, openmp
- Language: C
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Matrices-C
Matrix operations in C, sequential and parallel implementations
## 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".