bscpkgs/garlic/fig/nbody/granularity.R

62 lines
2.0 KiB
R
Raw Normal View History

2021-03-24 10:12:05 +01:00
library(ggplot2)
library(dplyr, warn.conflicts = FALSE)
library(scales)
library(jsonlite)
library(viridis, warn.conflicts = FALSE)
# Load the arguments (argv)
args = commandArgs(trailingOnly=TRUE)
if (length(args)>0) { input_file = args[1] } else { input_file = "input" }
df = jsonlite::stream_in(file(input_file), verbose=FALSE) %>%
jsonlite::flatten() %>%
2021-04-20 17:16:17 +02:00
select(config.blocksize, config.gitBranch, config.particles, unit, time) %>%
rename(blocksize=config.blocksize, particles=config.particles, branch=config.gitBranch) %>%
2021-03-24 10:12:05 +01:00
mutate(blocksize = as.factor(blocksize)) %>%
2021-04-20 17:16:17 +02:00
mutate(particles = as.factor(particles)) %>%
2021-03-24 10:12:05 +01:00
mutate(branch = as.factor(branch)) %>%
mutate(unit = as.factor(unit)) %>%
group_by(unit) %>%
mutate(median.time = median(time)) %>%
mutate(normalized.time = time / median.time - 1) %>%
mutate(log.median.time = log(median.time)) %>%
ungroup()
dpi = 300
h = 5
2021-04-20 17:16:17 +02:00
w = 5
2021-03-24 10:12:05 +01:00
# ---------------------------------------------------------------------
p = ggplot(df, aes(x=blocksize, y=normalized.time, color=branch)) +
geom_boxplot() +
geom_hline(yintercept=c(-0.01, 0.01), linetype="dashed", color="red") +
facet_wrap(~ branch) +
theme_bw() +
labs(x="Blocksize", y="Normalized Time", title="NBody Granularity: Normalized Time",
subtitle=input_file) +
2021-04-20 17:16:17 +02:00
theme(plot.subtitle=element_text(size=8)) +
2021-03-24 10:12:05 +01:00
theme(legend.position="bottom") +
theme(legend.text = element_text(size=7))
ggsave("normalized.time.png", plot=p, width=w, height=h, dpi=dpi)
ggsave("normalized.time.pdf", plot=p, width=w, height=h, dpi=dpi)
# ---------------------------------------------------------------------
2021-04-20 17:16:17 +02:00
p = ggplot(df, aes(x=blocksize, y=time)) +
geom_boxplot() +
2021-03-24 10:12:05 +01:00
theme_bw() +
labs(x="Blocksize", y="Time (s)", title="NBody Granularity: Time",
subtitle=input_file) +
2021-04-20 17:16:17 +02:00
theme(plot.subtitle=element_text(size=8)) +
2021-03-24 10:12:05 +01:00
theme(legend.position="bottom") +
theme(legend.text = element_text(size=7))
ggsave("time.png", plot=p, width=w, height=h, dpi=dpi)
ggsave("time.pdf", plot=p, width=w, height=h, dpi=dpi)