]> AND Private Git Repository - loba-papers.git/commitdiff
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Data in R format, and sample R script.
authorArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Sun, 3 Mar 2013 16:19:16 +0000 (17:19 +0100)
committerArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Mon, 4 Mar 2013 07:18:35 +0000 (08:18 +0100)
supercomp11/data/data.rda [new file with mode: 0644]
supercomp11/data/script.r [new file with mode: 0644]

diff --git a/supercomp11/data/data.rda b/supercomp11/data/data.rda
new file mode 100644 (file)
index 0000000..64915a4
Binary files /dev/null and b/supercomp11/data/data.rda differ
diff --git a/supercomp11/data/script.r b/supercomp11/data/script.r
new file mode 100644 (file)
index 0000000..ffac783
--- /dev/null
@@ -0,0 +1,13 @@
+# load dataset (variable is "ds")
+load("data.rda")
+
+# extract data for plain algorithms, in real mode
+ds.base <- subset(ds, Mode=="R" & grepl("[lt]_plain", Algo))
+
+xx <- subset(ds.base, Ratio == "1:1" & Topo == "line" & Distrib == 1)
+plot(xx$Size, xx$Conv_max, xlab="Size", ylab="Time")
+
+for(pl in c("cluster", "grid")) {
+   yy <- subset(xx, Platform == pl)
+   points(yy$Size, yy$Conv_max, xlab="Size", ylab="Time")
+}