Skip to content
Snippets Groups Projects
Commit dda22725 authored by Ondřej Mička's avatar Ondřej Mička
Browse files

matrix_experiment: added hyphen in test names

parent 5dd8bddb
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,6 @@ matrix_experiment_real: matrix_transpose.h matrix_tests.h matrix_experiment_real
$(CXX) $(CPPFLAGS) $(CXXFLAGS) matrix_experiment_real.cpp -o $@
.PHONY: clean
clean:
clean::
rm -f matrix_experiment_sim matrix_experiment_real
rm -rf out
......@@ -5,7 +5,7 @@
#include <cmath>
#include <iostream>
#include <time.h> // FIXME
#include <time.h>
using namespace std;
......
......@@ -6,7 +6,7 @@
#include <string>
#include <iostream>
#include <time.h> // FIXME
#include <time.h>
using namespace std;
......
......@@ -13,5 +13,5 @@ out/t-sim-%-smart:
./matrix_experiment_sim.py $* smart >$@
.PHONY: clean
clean:
rm -rf out
clean::
rm -rf out __pycache__
......@@ -29,10 +29,10 @@ proper points will be assigned later.
The test program is given two arguments:
- Cache type:
- `m1024b16` – cache of 1024 items organized in 16-item blocks
- `m8192b64` – cache of 8192 items organized in 64-item blocks
- `m65536b256` – cache of 65536 items organized on 256-item blocks
- `m65536b4096` – cache of 65536 items organized in 4096-item blocks
- `m1024-b16` – cache of 1024 items organized in 16-item blocks
- `m8192-b64` – cache of 8192 items organized in 64-item blocks
- `m65536-b256` – cache of 65536 items organized on 256-item blocks
- `m65536-b4096` – cache of 65536 items organized in 4096-item blocks
- The implementation to test (`smart` or `naive`).
The output of the program contains one line per experiment, which consists of
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment