An open API service indexing awesome lists of open source software.

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

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