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: 6 months 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 (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-12-21T03:07:56.000Z (over 4 years ago)
- Last Synced: 2025-01-17T22:13:59.385Z (over 1 year 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.