Commit 4c6e770f by FritzFlorian

Fix: matrix benchmark uses wrong size parameters.

parent 57cb26a1
...@@ -20,8 +20,8 @@ class matrix { ...@@ -20,8 +20,8 @@ class matrix {
T data[SIZE][SIZE]; T data[SIZE][SIZE];
explicit matrix() { explicit matrix() {
for (int i = 0; i < MATRIX_SIZE; i++) { for (int i = 0; i < SIZE; i++) {
for (int j = 0; j < MATRIX_SIZE; j++) { for (int j = 0; j < SIZE; j++) {
data[i][j] = i; data[i][j] = i;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment