summaryrefslogtreecommitdiff
path: root/scripts/benchmark
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-05-11 22:12:16 -0700
committerCedric Nugteren <web@cedricnugteren.nl>2017-05-11 22:12:16 -0700
commit97955fc221a50a8ac3c45f3aa21c47cd3c241d9c (patch)
treee4233a584cd5530b1e59c18bf4f240f95d51c4e7 /scripts/benchmark
parent81f598ecebc5f0e463f0da9a473fa666837dea42 (diff)
Minor naming fixes to the benchmark script
Diffstat (limited to 'scripts/benchmark')
-rw-r--r--scripts/benchmark/settings.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/benchmark/settings.py b/scripts/benchmark/settings.py
index 38db9ef5..dae1854f 100644
--- a/scripts/benchmark/settings.py
+++ b/scripts/benchmark/settings.py
@@ -66,7 +66,7 @@ AXPYBATCHED = {
"benchmarks": [
{
"name": "axpybatched", "num_runs": 30,
- "title": "8 batches",
+ "title": "8 AXPYs",
"x_label": "sizes (n)", "x_keys": ["n"],
"y_label": "GB/s (higher is better)", "y_keys": ["GBs_1", "GBs_2"],
"arguments": [{"batch_num": 8, "n": n, "incx": 1, "incy": 1, "step": 0, "num_steps": 1}
@@ -74,7 +74,7 @@ AXPYBATCHED = {
},
{
"name": "axpybatched", "num_runs": 20,
- "title": "64 batches",
+ "title": "64 AXPYs",
"x_label": "sizes (n)", "x_keys": ["n"],
"y_label": "GB/s (higher is better)", "y_keys": ["GBs_1", "GBs_2"],
"arguments": [{"batch_num": 64, "n": n, "incx": 1, "incy": 1, "step": 0, "num_steps": 1}
@@ -83,7 +83,7 @@ AXPYBATCHED = {
{
"name": "axpybatched", "num_runs": 40,
"title": "n=512K",
- "x_label": "number of batches", "x_keys": ["batch_num"],
+ "x_label": "batch size", "x_keys": ["batch_num"],
"y_label": "GB/s (higher is better)", "y_keys": ["GBs_1", "GBs_2"],
"arguments": [{"batch_num": b, "n": utils.k(512), "incx": 1, "incy": 1, "step": 1, "num_steps": 1}
for b in utils.powers_of_2(1, 512)],
@@ -228,7 +228,7 @@ GEMMBATCHED = {
"benchmarks": [
{
"name": "gemmbatched", "num_runs": 40,
- "title": "8 batches",
+ "title": "8 GEMMs",
"x_label": "sizes (m=n=k)", "x_keys": ["m"],
"y_label": "GFLOPS (higher is better)", "y_keys": ["GFLOPS_1", "GFLOPS_2"],
"arguments": [{"batch_num": 8, "m": 32, "n": 32, "k": 32, "layout": 102,
@@ -236,7 +236,7 @@ GEMMBATCHED = {
},
{
"name": "gemmbatched", "num_runs": 20,
- "title": "64 batches",
+ "title": "64 GEMMs",
"x_label": "sizes (m=n=k)", "x_keys": ["m"],
"y_label": "GFLOPS (higher is better)", "y_keys": ["GFLOPS_1", "GFLOPS_2"],
"arguments": [{"batch_num": 64, "m": 32, "n": 32, "k": 32, "layout": 102,
@@ -245,7 +245,7 @@ GEMMBATCHED = {
{
"name": "gemmbatched", "num_runs": 30,
"title": "m=n=k=128",
- "x_label": "number of batches", "x_keys": ["batch_num"],
+ "x_label": "batch size", "x_keys": ["batch_num"],
"y_label": "GFLOPS (higher is better)", "y_keys": ["GFLOPS_1", "GFLOPS_2"],
"arguments": [{"batch_num": b, "m": 128, "n": 128, "k": 128, "layout": 102,
"transA": 111, "transB": 111} for b in utils.powers_of_2(1, utils.k(16))],