summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCNugteren <web@cedricnugteren.nl>2015-07-02 07:12:49 +0200
committerCNugteren <web@cedricnugteren.nl>2015-07-02 07:12:49 +0200
commit500416aa38aa2bd03fa24a0d57ac9a2e00cb4c41 (patch)
tree68bd55d0cacbee4077456539c261ee13840d71c3 /test
parentd879eb3abf17253fc12bcf9ee090632d9cb28a22 (diff)
Fixed the order of arguments
Diffstat (limited to 'test')
-rw-r--r--test/performance/graphs/xsymm.r10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/performance/graphs/xsymm.r b/test/performance/graphs/xsymm.r
index 6493f52a..f4b98b30 100644
--- a/test/performance/graphs/xsymm.r
+++ b/test/performance/graphs/xsymm.r
@@ -19,7 +19,7 @@ source(file.path(dirname(thisfile), "common.r"))
# Settings
routine_name <- "xsymm"
-parameters <- c("-m","-n","-layout","-triangle","-side",
+parameters <- c("-m","-n","-layout","-side","-triangle",
"-num_steps","-step","-runs","-precision")
precision <- 32
@@ -29,7 +29,7 @@ test_names <- list(
"multiples of 128 (+1)",
"around m=n=512",
"around m=n=2048",
- "layouts and triangle/side (m=n=1024)",
+ "layouts and side/triangle (m=n=1024)",
"powers of 2"
)
@@ -70,7 +70,7 @@ test_xlabels <- list(
"matrix sizes (m=n)",
"matrix sizes (m=n)",
"matrix sizes (m=n)",
- "layout (row/col), triangle (up/lo), side (l/r)",
+ "layout (row/col), side (l/r), triangle (up/lo)",
"matrix sizes (m=n)"
)
@@ -80,8 +80,8 @@ test_xaxis <- list(
c("m", ""),
c("m", ""),
c("m", ""),
- list(1:8, c("row,up,l", "row,up,r", "row,lo,l", "row,lo,r",
- "col,up,l", "col,up,r", "col,lo,l", "col,lo,r")),
+ list(1:8, c("row,l,up", "row,r,up", "row,l,lo", "row,r,lo",
+ "col,l,up", "col,r,up", "col,l,lo", "col,r,lo")),
c("m", "x")
)