2021-03-26 17:34:34 +01:00
|
|
|
library(ggplot2)
|
|
|
|
library(dplyr)
|
|
|
|
library(scales)
|
|
|
|
library(jsonlite)
|
|
|
|
library(forcats)
|
|
|
|
|
|
|
|
args=commandArgs(trailingOnly=TRUE)
|
|
|
|
|
|
|
|
# Read the timetable from args[1]
|
|
|
|
input_file = "input.json"
|
|
|
|
if (length(args)>0) { input_file = args[1] }
|
2021-04-21 13:40:25 +02:00
|
|
|
if (length(args)>1) { output = args[2] } else { output = "?" }
|
2021-03-26 17:34:34 +01:00
|
|
|
|
|
|
|
# Load the dataset in NDJSON format
|
|
|
|
dataset = jsonlite::stream_in(file(input_file)) %>%
|
|
|
|
jsonlite::flatten()
|
|
|
|
|
|
|
|
# We only need the nblocks and time
|
2021-04-14 17:18:24 +02:00
|
|
|
df = select(dataset, config.blocksize, config.ioFreq, config.gitBranch, config.nodes, time, unit) %>%
|
2021-03-26 17:34:34 +01:00
|
|
|
rename(
|
|
|
|
blocksize=config.blocksize,
|
2021-04-14 17:18:24 +02:00
|
|
|
enableIO=config.enableIO,
|
2021-03-26 17:34:34 +01:00
|
|
|
gitBranch=config.gitBranch,
|
|
|
|
nodes=config.nodes
|
|
|
|
) %>%
|
|
|
|
filter(blocksize == 1) %>%
|
2021-04-14 17:18:24 +02:00
|
|
|
group_by(unit) %>%
|
2021-03-26 17:34:34 +01:00
|
|
|
mutate(mtime = median(time)) %>%
|
|
|
|
mutate(nxmtime = mtime * nodes) %>%
|
|
|
|
mutate(nxtime = time * nodes) %>%
|
|
|
|
ungroup()
|
|
|
|
|
|
|
|
df$gitBranch = as.factor(df$gitBranch)
|
2021-04-14 17:18:24 +02:00
|
|
|
df$enableIO = as.factor(df$enableIO)
|
2021-03-26 17:34:34 +01:00
|
|
|
df$blocksize = as.factor(df$blocksize)
|
|
|
|
df$nodes = as.factor(df$nodes)
|
|
|
|
|
|
|
|
ppi=300
|
|
|
|
h=5
|
|
|
|
w=5
|
|
|
|
|
|
|
|
####################################################################
|
|
|
|
### Line plot (time)
|
|
|
|
####################################################################
|
|
|
|
png("time.png", width=w*ppi, height=h*ppi, res=ppi)
|
|
|
|
|
2021-04-14 17:18:24 +02:00
|
|
|
p = ggplot(df, aes(x=nodes, y=time, group=enableIO, color=enableIO)) +
|
2021-03-26 17:34:34 +01:00
|
|
|
geom_point() +
|
|
|
|
geom_line() +
|
|
|
|
theme_bw() +
|
|
|
|
labs(x="Nodes", y="Time (s)", title="FWI strong scaling for mpi+send+oss+task",
|
2021-04-21 13:40:25 +02:00
|
|
|
subtitle=output) +
|
2021-03-26 17:34:34 +01:00
|
|
|
theme(plot.subtitle=element_text(size=8)) +
|
|
|
|
theme(legend.position = c(0.5, 0.88))
|
|
|
|
|
|
|
|
# Render the plot
|
|
|
|
print(p)
|
|
|
|
|
|
|
|
# Save the png image
|
|
|
|
dev.off()
|
|
|
|
|
|
|
|
####################################################################
|
|
|
|
### Line plot (time x nodes)
|
|
|
|
####################################################################
|
|
|
|
png("nxtime.png", width=w*ppi, height=h*ppi, res=ppi)
|
|
|
|
|
2021-04-14 17:18:24 +02:00
|
|
|
p = ggplot(df, aes(x=nodes, y=nxtime, group=enableIO, color=enableIO)) +
|
2021-03-26 17:34:34 +01:00
|
|
|
geom_point() +
|
|
|
|
geom_line() +
|
|
|
|
theme_bw() +
|
|
|
|
labs(x="Nodes", y="Time * Nodes (s)", title="FWI strong scaling for mpi+send+oss+task",
|
2021-04-21 13:40:25 +02:00
|
|
|
subtitle=output) +
|
2021-03-26 17:34:34 +01:00
|
|
|
theme(plot.subtitle=element_text(size=8)) +
|
|
|
|
theme(legend.position = c(0.5, 0.88))
|
|
|
|
|
|
|
|
# Render the plot
|
|
|
|
print(p)
|
|
|
|
|
|
|
|
# Save the png image
|
|
|
|
dev.off()
|
|
|
|
|
|
|
|
#####################################################################
|
|
|
|
#### Line plot (median time)
|
|
|
|
#####################################################################
|
|
|
|
#png("mediantime.png", width=w*ppi, height=h*ppi, res=ppi)
|
|
|
|
#
|
|
|
|
#p = ggplot(df, aes(x=nodes, y=mtime, group=gitBranch, color=gitBranch)) +
|
|
|
|
# geom_point() +
|
|
|
|
# geom_line() +
|
|
|
|
# theme_bw() +
|
|
|
|
# labs(x="Nodes", y="Median Time (s)", title="FWI strong scaling",
|
2021-04-21 13:40:25 +02:00
|
|
|
# subtitle=output) +
|
2021-03-26 17:34:34 +01:00
|
|
|
# theme(plot.subtitle=element_text(size=8)) +
|
|
|
|
# theme(legend.position = c(0.5, 0.88))
|
|
|
|
#
|
|
|
|
## Render the plot
|
|
|
|
#print(p)
|
|
|
|
#
|
|
|
|
## Save the png image
|
|
|
|
#dev.off()
|
|
|
|
#
|
|
|
|
#####################################################################
|
|
|
|
#### Line plot (nodes x median time)
|
|
|
|
#####################################################################
|
|
|
|
#png("nxmtime.png", width=w*ppi, height=h*ppi, res=ppi)
|
|
|
|
#
|
|
|
|
#p = ggplot(df, aes(x=nodes, y=nxmtime, group=gitBranch, color=gitBranch)) +
|
|
|
|
# geom_point() +
|
|
|
|
# geom_line() +
|
|
|
|
# theme_bw() +
|
|
|
|
# labs(x="Nodes", y="Median Time * Nodes (s)", title="FWI strong scaling",
|
2021-04-21 13:40:25 +02:00
|
|
|
# subtitle=output) +
|
2021-03-26 17:34:34 +01:00
|
|
|
# theme(plot.subtitle=element_text(size=8)) +
|
|
|
|
# theme(legend.position = c(0.5, 0.88))
|
|
|
|
#
|
|
|
|
## Render the plot
|
|
|
|
#print(p)
|
|
|
|
#
|
|
|
|
## Save the png image
|
|
|
|
#dev.off()
|