https://github.com/pfac/msc-thesis-benchmarks
Small benchmarks for my MSc Thesis
https://github.com/pfac/msc-thesis-benchmarks
Last synced: 4 months ago
JSON representation
Small benchmarks for my MSc Thesis
- Host: GitHub
- URL: https://github.com/pfac/msc-thesis-benchmarks
- Owner: pfac
- Created: 2013-05-08T00:43:10.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2013-05-12T22:56:42.000Z (about 13 years ago)
- Last Synced: 2025-01-01T14:46:22.969Z (over 1 year ago)
- Size: 148 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
My MScThesis Benchmarks
=======================
A small collection of benchmarks with the goal of answering some performance questions for my MSc Thesis.
## Zeros
__Goal:__ Allocate a matrix and fill it with zeros.
Compare which option is the fastest:
1. `malloc` followed by a call to `memset`
2. `calloc`
3. `arma::zeros`
4. `arma::mat` followed by a loop