hpcs-17-subord

git clone https://git.igankevich.com/hpcs-17-subord.git
Log | Files | Refs

commit 233833911c02f6ba57cdad70ea9ccb789b396737
parent 3f8d9854f20cce6aa80dacdc39edf3af24622a1a
Author: Ivan Gankevich <igankevich@ya.ru>
Date:   Tue, 21 Mar 2017 11:41:57 +0300

Add data from cluster 226.

Diffstat:
Makefile | 8+++++++-
R/common.R | 2+-
R/graph-overhead-virt.R | 4++--
data/test-2-dryrun-virt-overhead-ndebug-226/run-16/MersenneTwister.dat | 0
data/test-2-dryrun-virt-overhead-ndebug-226/run-16/autoreg.model | 7+++++++
data/test-2-dryrun-virt-overhead-ndebug-226/run-16/benchmark-no-failure-0002.log | 12++++++++++++
data/test-2-dryrun-virt-overhead-ndebug-226/run-16/benchmark-no-failure-0004.log | 12++++++++++++
data/test-2-dryrun-virt-overhead-ndebug-226/run-16/benchmark-no-failure-0008.log | 12++++++++++++
data/test-2-dryrun-virt-overhead-ndebug-226/run-16/benchmark-no-failure-0016.log | 12++++++++++++
data/test-2-dryrun-virt-overhead-ndebug-226/run-16/benchmark-no-failure-0032.log | 12++++++++++++
data/test-2-dryrun-virt-overhead-ndebug-226/run-16/benchmark-no-failure-0064.log | 12++++++++++++
data/test-2-dryrun-virt-overhead-ndebug-226/run-16/benchmark-no-failure-0128.log | 12++++++++++++
data/test-2-dryrun-virt-overhead-ndebug-226/run-17/MersenneTwister.dat | 0
data/test-2-dryrun-virt-overhead-ndebug-226/run-17/autoreg.model | 7+++++++
data/test-2-dryrun-virt-overhead-ndebug-226/run-17/benchmark-no-failure-0002.log | 12++++++++++++
data/test-2-dryrun-virt-overhead-ndebug-226/run-17/benchmark-no-failure-0004.log | 12++++++++++++
data/test-2-dryrun-virt-overhead-ndebug-226/run-17/benchmark-no-failure-0008.log | 12++++++++++++
data/test-2-dryrun-virt-overhead-ndebug-226/run-17/benchmark-no-failure-0016.log | 12++++++++++++
data/test-2-dryrun-virt-overhead-ndebug-226/run-17/benchmark-no-failure-0032.log | 12++++++++++++
data/test-2-dryrun-virt-overhead-ndebug-226/run-17/benchmark-no-failure-0064.log | 12++++++++++++
data/test-2-dryrun-virt-overhead-ndebug-226/run-17/benchmark-no-failure-0128.log | 12++++++++++++
data/test-2-dryrun-virt-overhead-ndebug-226/run-18/MersenneTwister.dat | 0
data/test-2-dryrun-virt-overhead-ndebug-226/run-18/autoreg.model | 7+++++++
data/test-2-dryrun-virt-overhead-ndebug-226/run-18/benchmark-no-failure-0002.log | 12++++++++++++
data/test-2-dryrun-virt-overhead-ndebug-226/run-18/benchmark-no-failure-0004.log | 12++++++++++++
data/test-2-dryrun-virt-overhead-ndebug-226/run-18/benchmark-no-failure-0008.log | 12++++++++++++
data/test-2-dryrun-virt-overhead-ndebug-226/run-18/benchmark-no-failure-0016.log | 12++++++++++++
data/test-2-dryrun-virt-overhead-ndebug-226/run-18/benchmark-no-failure-0032.log | 12++++++++++++
data/test-2-dryrun-virt-overhead-ndebug-226/run-18/benchmark-no-failure-0064.log | 12++++++++++++
data/test-2-dryrun-virt-overhead-ndebug-226/run-18/benchmark-no-failure-0128.log | 13+++++++++++++
src/body.tex | 11++++++++++-
31 files changed, 294 insertions(+), 5 deletions(-)

diff --git a/Makefile b/Makefile @@ -4,7 +4,8 @@ build/test-2.pdf \ build/test-2-virt.pdf \ build/test-2-dryrun-virt.pdf \ build/test-2-dryrun-virt-overhead.pdf \ -build/test-2-dryrun-virt-overhead-ndebug.pdf +build/test-2-dryrun-virt-overhead-ndebug.pdf \ +build/test-2-dryrun-virt-overhead-ndebug-226.pdf latexmk \ -interaction=nonstopmode \ -output-directory=build \ @@ -38,6 +39,11 @@ build/test-2-dryrun-virt-overhead-ndebug.pdf: R/graph-overhead-virt.R R/common.R data/test-2-dryrun-virt-overhead-ndebug \ $@ +build/test-2-dryrun-virt-overhead-ndebug-226.pdf: R/graph-overhead-virt.R R/common.R + ./R/graph-overhead-virt.R \ + data/test-2-dryrun-virt-overhead-ndebug-226 \ + $@ + build: mkdir -p build diff --git a/R/common.R b/R/common.R @@ -45,7 +45,7 @@ load_overhead_from_log_file <- function (prefix) { print(lines) lines <- as.numeric(lines) ipaddr <- gsub("^.*-([0-9\\.]+)\\.log$", "\\1", f, perl=TRUE) - if (length(lines) < 0) { + if (length(lines) == 0) { message(paste("Skipping unparseable file \"", f, "\".", sep="")) } else { t <- lines[[1]] diff --git a/R/graph-overhead-virt.R b/R/graph-overhead-virt.R @@ -20,7 +20,7 @@ pdf( ) x1 <- subord.colRange(log1) -y1 <- colMeans(log1) * 1e-9 +y1 <- colMeans(log1) * 1e-6 print(x1) print(y1) @@ -36,5 +36,5 @@ box() lines(x1, y1, lty="solid") #lines(x1, y1, lty="solid") #lines(x2, y2, lty="dashed") -title(xlab="No. of virtual nodes", ylab="Overhead, s") +title(xlab="No. of virtual nodes", ylab="Overhead, ms") diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-16/MersenneTwister.dat b/data/test-2-dryrun-virt-overhead-ndebug-226/run-16/MersenneTwister.dat Binary files differ. diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-16/autoreg.model b/data/test-2-dryrun-virt-overhead-ndebug-226/run-16/autoreg.model @@ -0,0 +1,7 @@ +linear=1 +skewness=0.25 +kurtosis=0.4 +size_factor=1.4 +zsize=2000 32 32 +zdelta=1 1 1 +acf_size=10 10 10 diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-16/benchmark-no-failure-0002.log b/data/test-2-dryrun-virt-overhead-ndebug-226/run-16/benchmark-no-failure-0002.log @@ -0,0 +1,12 @@ +Nodes = 1-2 + 1490085311710 10.0.0.1 ACF size: 10,10,10 + 1490085321759 10.0.0.1 Domain: 2000,32,32 + 1490085321759 10.0.0.1 Domain 2: 2800,44,44 + 1490085321760 10.0.0.1 Delta: 1,1,1 + 1490085321760 10.0.0.1 Linear: true + 1490085321760 10.0.0.1 Skewness: 0.25 + 1490085321760 10.0.0.1 Kurtosis: 0.4 + 1490085321760 10.0.0.1 Interval: 0 + 1490085321760 10.0.0.1 Size factor: 1.4 + 1490085321760 10.0.0.1 autoreg multiple node failure handling overhead is 584326ns + 1490085322144 10.0.0.1 terminate called without an active exception(thread id=140412542551808) diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-16/benchmark-no-failure-0004.log b/data/test-2-dryrun-virt-overhead-ndebug-226/run-16/benchmark-no-failure-0004.log @@ -0,0 +1,12 @@ +Nodes = 1-4 + 1490083483564 10.0.0.1 ACF size: 10,10,10 + 1490083493618 10.0.0.1 Domain: 2000,32,32 + 1490083493618 10.0.0.1 Domain 2: 2800,44,44 + 1490083493618 10.0.0.1 Delta: 1,1,1 + 1490083493618 10.0.0.1 Linear: true + 1490083493618 10.0.0.1 Skewness: 0.25 + 1490083493618 10.0.0.1 Kurtosis: 0.4 + 1490083493618 10.0.0.1 Interval: 0 + 1490083493618 10.0.0.1 Size factor: 1.4 + 1490083493618 10.0.0.1 autoreg multiple node failure handling overhead is 1342827ns + 1490083494012 10.0.0.1 terminate called without an active exception(thread id=139874850653952) diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-16/benchmark-no-failure-0008.log b/data/test-2-dryrun-virt-overhead-ndebug-226/run-16/benchmark-no-failure-0008.log @@ -0,0 +1,12 @@ +Nodes = 1-8 + 1490083516022 10.0.0.1 ACF size: 10,10,10 + 1490083526107 10.0.0.1 Domain: 2000,32,32 + 1490083526107 10.0.0.1 Domain 2: 2800,44,44 + 1490083526107 10.0.0.1 Delta: 1,1,1 + 1490083526107 10.0.0.1 Linear: true + 1490083526107 10.0.0.1 Skewness: 0.25 + 1490083526107 10.0.0.1 Kurtosis: 0.4 + 1490083526107 10.0.0.1 Interval: 0 + 1490083526107 10.0.0.1 Size factor: 1.4 + 1490083526107 10.0.0.1 autoreg multiple node failure handling overhead is 2260586ns + 1490083526508 10.0.0.1 terminate called without an active exception(thread id=140646196451072) diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-16/benchmark-no-failure-0016.log b/data/test-2-dryrun-virt-overhead-ndebug-226/run-16/benchmark-no-failure-0016.log @@ -0,0 +1,12 @@ +Nodes = 1-16 + 1490083550030 10.0.0.1 ACF size: 10,10,10 + 1490083560166 10.0.0.1 Domain: 2000,32,32 + 1490083560166 10.0.0.1 Domain 2: 2800,44,44 + 1490083560166 10.0.0.1 Delta: 1,1,1 + 1490083560166 10.0.0.1 Linear: true + 1490083560166 10.0.0.1 Skewness: 0.25 + 1490083560166 10.0.0.1 Kurtosis: 0.4 + 1490083560166 10.0.0.1 Interval: 0 + 1490083560166 10.0.0.1 Size factor: 1.4 + 1490083560166 10.0.0.1 autoreg multiple node failure handling overhead is 3690372ns + 1490083560954 10.0.0.1 terminate called without an active exception(thread id=139912359147264) diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-16/benchmark-no-failure-0032.log b/data/test-2-dryrun-virt-overhead-ndebug-226/run-16/benchmark-no-failure-0032.log @@ -0,0 +1,12 @@ +Nodes = 1-32 + 1490083587196 10.0.0.1 ACF size: 10,10,10 + 1490083597480 10.0.0.1 Domain: 2000,32,32 + 1490083597481 10.0.0.1 Domain 2: 2800,44,44 + 1490083597481 10.0.0.1 Delta: 1,1,1 + 1490083597481 10.0.0.1 Linear: true + 1490083597481 10.0.0.1 Skewness: 0.25 + 1490083597481 10.0.0.1 Kurtosis: 0.4 + 1490083597481 10.0.0.1 Interval: 0 + 1490083597481 10.0.0.1 Size factor: 1.4 + 1490083597481 10.0.0.1 autoreg multiple node failure handling overhead is 5985238ns + 1490083598668 10.0.0.1 terminate called without an active exception(thread id=140074953225984) diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-16/benchmark-no-failure-0064.log b/data/test-2-dryrun-virt-overhead-ndebug-226/run-16/benchmark-no-failure-0064.log @@ -0,0 +1,12 @@ +Nodes = 1-64 + 1490083630952 10.0.0.1 ACF size: 10,10,10 + 1490083641346 10.0.0.1 Domain: 2000,32,32 + 1490083641346 10.0.0.1 Domain 2: 2800,44,44 + 1490083641346 10.0.0.1 Delta: 1,1,1 + 1490083641347 10.0.0.1 Linear: true + 1490083641347 10.0.0.1 Skewness: 0.25 + 1490083641347 10.0.0.1 Kurtosis: 0.4 + 1490083641347 10.0.0.1 Interval: 0 + 1490083641347 10.0.0.1 Size factor: 1.4 + 1490083641347 10.0.0.1 autoreg multiple node failure handling overhead is 88621206ns + 1490083643585 10.0.0.1 terminate called without an active exception(thread id=140184267949824) diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-16/benchmark-no-failure-0128.log b/data/test-2-dryrun-virt-overhead-ndebug-226/run-16/benchmark-no-failure-0128.log @@ -0,0 +1,12 @@ +Nodes = 1-128 + 1490083688731 10.0.0.1 ACF size: 10,10,10 + 1490083699814 10.0.0.1 Domain: 2000,32,32 + 1490083699814 10.0.0.1 Domain 2: 2800,44,44 + 1490083699814 10.0.0.1 Delta: 1,1,1 + 1490083699814 10.0.0.1 Linear: true + 1490083699814 10.0.0.1 Skewness: 0.25 + 1490083699814 10.0.0.1 Kurtosis: 0.4 + 1490083699814 10.0.0.1 Interval: 0 + 1490083699814 10.0.0.1 Size factor: 1.4 + 1490083699814 10.0.0.1 autoreg multiple node failure handling overhead is 30589538ns + 1490083704161 10.0.0.1 terminate called without an active exception(thread id=140359286036224) diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-17/MersenneTwister.dat b/data/test-2-dryrun-virt-overhead-ndebug-226/run-17/MersenneTwister.dat Binary files differ. diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-17/autoreg.model b/data/test-2-dryrun-virt-overhead-ndebug-226/run-17/autoreg.model @@ -0,0 +1,7 @@ +linear=1 +skewness=0.25 +kurtosis=0.4 +size_factor=1.4 +zsize=2000 32 32 +zdelta=1 1 1 +acf_size=10 10 10 diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-17/benchmark-no-failure-0002.log b/data/test-2-dryrun-virt-overhead-ndebug-226/run-17/benchmark-no-failure-0002.log @@ -0,0 +1,12 @@ +Nodes = 1-2 + 1490085524692 10.0.0.1 ACF size: 10,10,10 + 1490085534741 10.0.0.1 Domain: 2000,32,32 + 1490085534741 10.0.0.1 Domain 2: 2800,44,44 + 1490085534741 10.0.0.1 Delta: 1,1,1 + 1490085534741 10.0.0.1 Linear: true + 1490085534742 10.0.0.1 Skewness: 0.25 + 1490085534742 10.0.0.1 Kurtosis: 0.4 + 1490085534742 10.0.0.1 Interval: 0 + 1490085534742 10.0.0.1 Size factor: 1.4 + 1490085534742 10.0.0.1 autoreg multiple node failure handling overhead is 601362ns + 1490085535110 10.0.0.1 terminate called without an active exception(thread id=139629403125504) diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-17/benchmark-no-failure-0004.log b/data/test-2-dryrun-virt-overhead-ndebug-226/run-17/benchmark-no-failure-0004.log @@ -0,0 +1,12 @@ +Nodes = 1-4 + 1490083924134 10.0.0.1 ACF size: 10,10,10 + 1490083934183 10.0.0.1 Domain: 2000,32,32 + 1490083934183 10.0.0.1 Domain 2: 2800,44,44 + 1490083934183 10.0.0.1 Delta: 1,1,1 + 1490083934183 10.0.0.1 Linear: true + 1490083934183 10.0.0.1 Skewness: 0.25 + 1490083934183 10.0.0.1 Kurtosis: 0.4 + 1490083934183 10.0.0.1 Interval: 0 + 1490083934183 10.0.0.1 Size factor: 1.4 + 1490083934183 10.0.0.1 autoreg multiple node failure handling overhead is 1352191ns + 1490083934569 10.0.0.1 terminate called without an active exception(thread id=140358093543168) diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-17/benchmark-no-failure-0008.log b/data/test-2-dryrun-virt-overhead-ndebug-226/run-17/benchmark-no-failure-0008.log @@ -0,0 +1,12 @@ +Nodes = 1-8 + 1490083956579 10.0.0.1 ACF size: 10,10,10 + 1490083966656 10.0.0.1 Domain: 2000,32,32 + 1490083966656 10.0.0.1 Domain 2: 2800,44,44 + 1490083966656 10.0.0.1 Delta: 1,1,1 + 1490083966656 10.0.0.1 Linear: true + 1490083966656 10.0.0.1 Skewness: 0.25 + 1490083966656 10.0.0.1 Kurtosis: 0.4 + 1490083966656 10.0.0.1 Interval: 0 + 1490083966656 10.0.0.1 Size factor: 1.4 + 1490083966656 10.0.0.1 autoreg multiple node failure handling overhead is 2240256ns + 1490083967042 10.0.0.1 terminate called without an active exception(thread id=139772444116736) diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-17/benchmark-no-failure-0016.log b/data/test-2-dryrun-virt-overhead-ndebug-226/run-17/benchmark-no-failure-0016.log @@ -0,0 +1,12 @@ +Nodes = 1-16 + 1490083990494 10.0.0.1 ACF size: 10,10,10 + 1490084000615 10.0.0.1 Domain: 2000,32,32 + 1490084000615 10.0.0.1 Domain 2: 2800,44,44 + 1490084000615 10.0.0.1 Delta: 1,1,1 + 1490084000615 10.0.0.1 Linear: true + 1490084000615 10.0.0.1 Skewness: 0.25 + 1490084000615 10.0.0.1 Kurtosis: 0.4 + 1490084000615 10.0.0.1 Interval: 0 + 1490084000615 10.0.0.1 Size factor: 1.4 + 1490084000615 10.0.0.1 autoreg multiple node failure handling overhead is 3703428ns + 1490084001413 10.0.0.1 terminate called without an active exception(thread id=140441120753408) diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-17/benchmark-no-failure-0032.log b/data/test-2-dryrun-virt-overhead-ndebug-226/run-17/benchmark-no-failure-0032.log @@ -0,0 +1,12 @@ +Nodes = 1-32 + 1490084034677 10.0.0.1 ACF size: 10,10,10 + 1490084044936 10.0.0.1 Domain: 2000,32,32 + 1490084044936 10.0.0.1 Domain 2: 2800,44,44 + 1490084044936 10.0.0.1 Delta: 1,1,1 + 1490084044936 10.0.0.1 Linear: true + 1490084044936 10.0.0.1 Skewness: 0.25 + 1490084044936 10.0.0.1 Kurtosis: 0.4 + 1490084044936 10.0.0.1 Interval: 0 + 1490084044936 10.0.0.1 Size factor: 1.4 + 1490084044936 10.0.0.1 autoreg multiple node failure handling overhead is 27358746ns + 1490084046095 10.0.0.1 terminate called without an active exception(thread id=140380600600320) diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-17/benchmark-no-failure-0064.log b/data/test-2-dryrun-virt-overhead-ndebug-226/run-17/benchmark-no-failure-0064.log @@ -0,0 +1,12 @@ +Nodes = 1-64 + 1490084078527 10.0.0.1 ACF size: 10,10,10 + 1490084088988 10.0.0.1 Domain: 2000,32,32 + 1490084088988 10.0.0.1 Domain 2: 2800,44,44 + 1490084088988 10.0.0.1 Delta: 1,1,1 + 1490084088988 10.0.0.1 Linear: true + 1490084088988 10.0.0.1 Skewness: 0.25 + 1490084088988 10.0.0.1 Kurtosis: 0.4 + 1490084088989 10.0.0.1 Interval: 0 + 1490084088989 10.0.0.1 Size factor: 1.4 + 1490084088989 10.0.0.1 autoreg multiple node failure handling overhead is 37647950ns + 1490084091318 10.0.0.1 terminate called without an active exception(thread id=139784350082816) diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-17/benchmark-no-failure-0128.log b/data/test-2-dryrun-virt-overhead-ndebug-226/run-17/benchmark-no-failure-0128.log @@ -0,0 +1,12 @@ +Nodes = 1-128 + 1490084136329 10.0.0.1 ACF size: 10,10,10 + 1490084146800 10.0.0.1 Domain: 2000,32,32 + 1490084146800 10.0.0.1 Domain 2: 2800,44,44 + 1490084146800 10.0.0.1 Delta: 1,1,1 + 1490084146800 10.0.0.1 Linear: true + 1490084146800 10.0.0.1 Skewness: 0.25 + 1490084146800 10.0.0.1 Kurtosis: 0.4 + 1490084146800 10.0.0.1 Interval: 0 + 1490084146800 10.0.0.1 Size factor: 1.4 + 1490084146800 10.0.0.1 autoreg multiple node failure handling overhead is 136826095ns + 1490084151200 10.0.0.1 terminate called without an active exception(thread id=140135074174720) diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-18/MersenneTwister.dat b/data/test-2-dryrun-virt-overhead-ndebug-226/run-18/MersenneTwister.dat Binary files differ. diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-18/autoreg.model b/data/test-2-dryrun-virt-overhead-ndebug-226/run-18/autoreg.model @@ -0,0 +1,7 @@ +linear=1 +skewness=0.25 +kurtosis=0.4 +size_factor=1.4 +zsize=2000 32 32 +zdelta=1 1 1 +acf_size=10 10 10 diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-18/benchmark-no-failure-0002.log b/data/test-2-dryrun-virt-overhead-ndebug-226/run-18/benchmark-no-failure-0002.log @@ -0,0 +1,12 @@ +Nodes = 1-2 + 1490085563309 10.0.0.1 ACF size: 10,10,10 + 1490085573355 10.0.0.1 Domain: 2000,32,32 + 1490085573355 10.0.0.1 Domain 2: 2800,44,44 + 1490085573355 10.0.0.1 Delta: 1,1,1 + 1490085573355 10.0.0.1 Linear: true + 1490085573355 10.0.0.1 Skewness: 0.25 + 1490085573355 10.0.0.1 Kurtosis: 0.4 + 1490085573355 10.0.0.1 Interval: 0 + 1490085573355 10.0.0.1 Size factor: 1.4 + 1490085573355 10.0.0.1 autoreg multiple node failure handling overhead is 580962ns + 1490085573724 10.0.0.1 terminate called without an active exception(thread id=140620053243648) diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-18/benchmark-no-failure-0004.log b/data/test-2-dryrun-virt-overhead-ndebug-226/run-18/benchmark-no-failure-0004.log @@ -0,0 +1,12 @@ +Nodes = 1-4 + 1490084456035 10.0.0.1 ACF size: 10,10,10 + 1490084466095 10.0.0.1 Domain: 2000,32,32 + 1490084466095 10.0.0.1 Domain 2: 2800,44,44 + 1490084466095 10.0.0.1 Delta: 1,1,1 + 1490084466095 10.0.0.1 Linear: true + 1490084466095 10.0.0.1 Skewness: 0.25 + 1490084466095 10.0.0.1 Kurtosis: 0.4 + 1490084466095 10.0.0.1 Interval: 0 + 1490084466095 10.0.0.1 Size factor: 1.4 + 1490084466095 10.0.0.1 autoreg multiple node failure handling overhead is 6873383ns + 1490084466471 10.0.0.1 terminate called without an active exception(thread id=140509186193152) diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-18/benchmark-no-failure-0008.log b/data/test-2-dryrun-virt-overhead-ndebug-226/run-18/benchmark-no-failure-0008.log @@ -0,0 +1,12 @@ +Nodes = 1-8 + 1490084488512 10.0.0.1 ACF size: 10,10,10 + 1490084498586 10.0.0.1 Domain: 2000,32,32 + 1490084498586 10.0.0.1 Domain 2: 2800,44,44 + 1490084498586 10.0.0.1 Delta: 1,1,1 + 1490084498587 10.0.0.1 Linear: true + 1490084498587 10.0.0.1 Skewness: 0.25 + 1490084498587 10.0.0.1 Kurtosis: 0.4 + 1490084498587 10.0.0.1 Interval: 0 + 1490084498587 10.0.0.1 Size factor: 1.4 + 1490084498587 10.0.0.1 autoreg multiple node failure handling overhead is 2232300ns + 1490084498978 10.0.0.1 terminate called without an active exception(thread id=140087260423936) diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-18/benchmark-no-failure-0016.log b/data/test-2-dryrun-virt-overhead-ndebug-226/run-18/benchmark-no-failure-0016.log @@ -0,0 +1,12 @@ +Nodes = 1-16 + 1490084522490 10.0.0.1 ACF size: 10,10,10 + 1490084532600 10.0.0.1 Domain: 2000,32,32 + 1490084532600 10.0.0.1 Domain 2: 2800,44,44 + 1490084532600 10.0.0.1 Delta: 1,1,1 + 1490084532600 10.0.0.1 Linear: true + 1490084532601 10.0.0.1 Skewness: 0.25 + 1490084532601 10.0.0.1 Kurtosis: 0.4 + 1490084532601 10.0.0.1 Interval: 0 + 1490084532601 10.0.0.1 Size factor: 1.4 + 1490084532601 10.0.0.1 autoreg multiple node failure handling overhead is 3659845ns + 1490084533395 10.0.0.1 terminate called without an active exception(thread id=139871471376128) diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-18/benchmark-no-failure-0032.log b/data/test-2-dryrun-virt-overhead-ndebug-226/run-18/benchmark-no-failure-0032.log @@ -0,0 +1,12 @@ +Nodes = 1-32 + 1490084559712 10.0.0.1 ACF size: 10,10,10 + 1490084569961 10.0.0.1 Domain: 2000,32,32 + 1490084569961 10.0.0.1 Domain 2: 2800,44,44 + 1490084569961 10.0.0.1 Delta: 1,1,1 + 1490084569961 10.0.0.1 Linear: true + 1490084569961 10.0.0.1 Skewness: 0.25 + 1490084569961 10.0.0.1 Kurtosis: 0.4 + 1490084569961 10.0.0.1 Interval: 0 + 1490084569961 10.0.0.1 Size factor: 1.4 + 1490084569962 10.0.0.1 autoreg multiple node failure handling overhead is 7285955ns + 1490084571232 10.0.0.1 terminate called without an active exception(thread id=140658644121344) diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-18/benchmark-no-failure-0064.log b/data/test-2-dryrun-virt-overhead-ndebug-226/run-18/benchmark-no-failure-0064.log @@ -0,0 +1,12 @@ +Nodes = 1-64 + 1490084603578 10.0.0.1 ACF size: 10,10,10 + 1490084614153 10.0.0.1 Domain: 2000,32,32 + 1490084614153 10.0.0.1 Domain 2: 2800,44,44 + 1490084614153 10.0.0.1 Delta: 1,1,1 + 1490084614153 10.0.0.1 Linear: true + 1490084614153 10.0.0.1 Skewness: 0.25 + 1490084614153 10.0.0.1 Kurtosis: 0.4 + 1490084614153 10.0.0.1 Interval: 0 + 1490084614153 10.0.0.1 Size factor: 1.4 + 1490084614153 10.0.0.1 autoreg multiple node failure handling overhead is 80603329ns + 1490084616417 10.0.0.1 terminate called without an active exception(thread id=139844922345216) diff --git a/data/test-2-dryrun-virt-overhead-ndebug-226/run-18/benchmark-no-failure-0128.log b/data/test-2-dryrun-virt-overhead-ndebug-226/run-18/benchmark-no-failure-0128.log @@ -0,0 +1,13 @@ +Nodes = 1-128 + 1490084661503 10.0.0.16 vector::_M_range_insert(thread id=139920263227136) + 1490084661500 10.0.0.1 ACF size: 10,10,10 + 1490084672095 10.0.0.1 Domain: 2000,32,32 + 1490084672095 10.0.0.1 Domain 2: 2800,44,44 + 1490084672095 10.0.0.1 Delta: 1,1,1 + 1490084672096 10.0.0.1 Linear: true + 1490084672096 10.0.0.1 Skewness: 0.25 + 1490084672096 10.0.0.1 Kurtosis: 0.4 + 1490084672096 10.0.0.1 Interval: 0 + 1490084672096 10.0.0.1 Size factor: 1.4 + 1490084672096 10.0.0.1 autoreg multiple node failure handling overhead is 133690632ns + 1490084676739 10.0.0.1 terminate called without an active exception(thread id=140151090616064) diff --git a/src/body.tex b/src/body.tex @@ -298,7 +298,16 @@ of the application to a large number of nodes. \caption{Application running time with failure handling code for different number of virtual cluster nodes (dry run, only overhead was measured, no debug - output).\label{fig:test-2-dryrun-virt-overhead}} + output).\label{fig:test-2-dryrun-virt-overhead-ndebug}} +\end{figure} + +\begin{figure} + \centering + \includegraphics{test-2-dryrun-virt-overhead-ndebug-226} + \caption{Application running time with failure handling code for + different number of virtual cluster nodes (dry + run, only overhead was measured, no debug + output, cluster 226).\label{fig:test-2-dryrun-virt-overhead-ndebug-226}} \end{figure} \section{Discussion}