config.addEntry<int>("min-size","Minimum size of arrays/vectors used in the benchmark (next size is 2*min-size and so on, up to max-size).",100000);
config.addEntry<int>("max-size","Minimum size of arrays/vectors used in the benchmark (next size is 2*min-size and so on, up to max-size).",10000000);
config.addEntry<int>("loops","Number of iterations for every computation.",1.0);
config.addEntry<int>("min-size","Minimum size of arrays/vectors used in the benchmark.",100000);
config.addEntry<int>("max-size","Minimum size of arrays/vectors used in the benchmark.",10000000);
config.addEntry<int>("size-step-factor","Factor determining the size of arrays/vectors used in the benchmark. First size is min-size and each following size is stepFactor*previousSize, up to max-size.",2);
config.addEntry<int>("loops","Number of iterations for every computation.",10);
config.addEntry<int>("elements-per-row","Number of elements per row of the sparse matrix used in the matrix-vector multiplication benchmark.",5);