Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/felipeaz/performance-matrix-multiplication
Algorithm to calculate Matrix multiplication
https://github.com/felipeaz/performance-matrix-multiplication
big-o-notation challenge golang performance-analysis
Last synced: 3 days ago
JSON representation
Algorithm to calculate Matrix multiplication
- Host: GitHub
- URL: https://github.com/felipeaz/performance-matrix-multiplication
- Owner: felipeaz
- Created: 2021-12-20T23:24:12.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2021-12-21T03:07:56.000Z (about 3 years ago)
- Last Synced: 2024-06-20T23:16:08.937Z (7 months ago)
- Topics: big-o-notation, challenge, golang, performance-analysis
- Language: Go
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Performance Algorithm
Performance algorithm created to multiply 200 matrix of order 250.The idea of this project is compare the execution time between two functions - one using
threads and read-write mutex and the other without parallel processing.