Skip to content

Commit ec5df2e

Browse files
committed
plots: make color usage homogeneous
1 parent 79c5ae1 commit ec5df2e

File tree

8 files changed

+37
-16
lines changed

8 files changed

+37
-16
lines changed

tasks/kernels_mpi/native.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ def deploy(ctx, backend="k8s", num_vms=2):
1616
if backend == "k8s":
1717
deploy_native_mpi("kernels", FAABRIC_EXP_IMAGE_NAME, num_vms)
1818

19-
wait_for_pods(get_native_mpi_namespace("kernels"), "run=faasm-openmpi")
19+
wait_for_pods(
20+
get_native_mpi_namespace("kernels"),
21+
"run=faasm-openmpi",
22+
num_expected=num_vms,
23+
)
2024
else:
2125
raise RuntimeError("Compose backend not implemented!")
2226

tasks/kernels_mpi/plot.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
MPI_KERNELS_PLOTS_DIR,
1212
MPI_KERNELS_RESULTS_DIR,
1313
)
14-
from tasks.util.plot import SINGLE_COL_FIGSIZE, save_plot
14+
from tasks.util.plot import UBENCH_PLOT_COLORS, SINGLE_COL_FIGSIZE, save_plot
1515

1616

1717
def _read_kernels_results():
@@ -92,6 +92,7 @@ def kernels(ctx):
9292
xs,
9393
ys,
9494
width,
95+
color=UBENCH_PLOT_COLORS[ind_kernel],
9596
label=kernel,
9697
edgecolor="black",
9798
)
@@ -108,13 +109,15 @@ def kernels(ctx):
108109
# Vertical lines to separate MPI processes
109110
ylim_bottom = 0
110111
ylim_top = ymax
112+
"""
111113
ax.vlines(
112114
[i + 0.5 for i in range(len(MPI_KERNELS_EXPERIMENT_NPROCS) - 1)],
113115
ylim_bottom,
114116
ylim_top,
115117
linestyle="dashed",
116118
colors="gray",
117119
)
120+
"""
118121

119122
ax.set_xlim(left=xlim_left, right=xlim_right)
120123
ax.set_ylim(bottom=ylim_bottom, top=ylim_top)

tasks/kernels_omp/plot.py

+7-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
OPENMP_KERNELS_PLOTS_DIR,
1111
OPENMP_KERNELS_RESULTS_DIR,
1212
)
13-
from tasks.util.plot import SINGLE_COL_FIGSIZE, save_plot
13+
from tasks.util.plot import UBENCH_PLOT_COLORS, SINGLE_COL_FIGSIZE, save_plot
1414

1515

1616
def _read_results():
@@ -85,6 +85,7 @@ def plot(ctx):
8585
ys,
8686
width,
8787
label=kernel,
88+
color=UBENCH_PLOT_COLORS[ind_kernel],
8889
edgecolor="black",
8990
)
9091

@@ -93,14 +94,16 @@ def plot(ctx):
9394
ax.set_xticks(xs, labels=nprocs)
9495

9596
# Horizontal line at slowdown of 1
96-
xlim_left = -0.5
97+
xlim_left = -(0.5 + width)
9798
xlim_right = len(nprocs) - 0.5
9899
ax.hlines(1, xlim_left, xlim_right, linestyle="dashed", colors="red")
99100

100101
ax.set_xlim(left=xlim_left, right=xlim_right)
101102
ax.set_ylim(bottom=0, top=ymax)
102103
ax.set_xlabel("Number of OpenMP threads")
103-
ax.set_ylabel("Slowdown \n [{} / OpenMPI]".format(SYSTEM_NAME))
104-
ax.legend(loc="upper right", ncol=4, bbox_to_anchor=(0.95, 1.35))
104+
ax.set_ylabel("Slowdown \n [{} / OpenMP]".format(SYSTEM_NAME))
105+
ax.legend(
106+
loc="upper right", ncol=5, bbox_to_anchor=(1.00, 1.17), fontsize=9
107+
)
105108

106109
save_plot(fig, OPENMP_KERNELS_PLOTS_DIR, "openmp_kernels_slowdown")

tasks/lammps/native.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ def deploy(ctx, backend="k8s", num_vms=2):
1616
if backend == "k8s":
1717
deploy_native_mpi("lammps", FAABRIC_EXP_IMAGE_NAME, num_vms)
1818

19-
wait_for_pods(get_native_mpi_namespace("lammps"), "run=faasm-openmpi")
19+
wait_for_pods(
20+
get_native_mpi_namespace("lammps"),
21+
"run=faasm-openmpi",
22+
num_expected=num_vms,
23+
)
2024
else:
2125
raise RuntimeError("Compose backend not implemented!")
2226

tasks/lammps/plot.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@
55
from os.path import join
66
from pandas import read_csv
77
from tasks.util.env import SYSTEM_NAME
8-
from tasks.util.faasm import get_faasm_version
98
from tasks.util.lammps import (
109
LAMMPS_PLOTS_DIR,
1110
LAMMPS_RESULTS_DIR,
1211
LAMMPS_SIM_WORKLOAD_CONFIGS,
1312
)
14-
from tasks.util.plot import SINGLE_COL_FIGSIZE, save_plot
13+
from tasks.util.plot import UBENCH_PLOT_COLORS, SINGLE_COL_FIGSIZE, save_plot
1514

1615

1716
def _read_results():
@@ -74,6 +73,7 @@ def plot(ctx, plot_elapsed_times=True):
7473
slowdown,
7574
width=width,
7675
label=workload,
76+
color=UBENCH_PLOT_COLORS[workload_ind],
7777
edgecolor="black",
7878
)
7979

@@ -85,9 +85,8 @@ def plot(ctx, plot_elapsed_times=True):
8585
ax.set_xlim(left=xmin)
8686
ax.set_xticks(list(range(17)))
8787
ax.set_ylim(bottom=ymin, top=ymax)
88-
ax.legend()
88+
ax.legend(ncols=2, loc="upper center")
8989
ax.set_xlabel("# MPI Processes")
90-
ax.set_ylabel("Slowdown [{} / OpenMPI]".format(SYSTEM_NAME))
91-
ax.set_title("Faasm Version ({})".format(get_faasm_version()))
90+
ax.set_ylabel("Slowdown\n[{} / OpenMPI]".format(SYSTEM_NAME))
9291

9392
save_plot(fig, LAMMPS_PLOTS_DIR, "lammps_slowdown")

tasks/lammps/run.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,7 @@ def native(ctx, w, repeats=1):
100100
"""
101101
num_cpus_per_vm = 8
102102
num_vms = 2
103-
# data_file = get_faasm_benchmark(LAMMPS_SIM_WORKLOAD)["data"][0],
104-
# TODO: is this a good idea? FIXME FIXME DELETE ME
105-
data_file = get_faasm_benchmark("compute")["data"][0]
103+
data_file = get_faasm_benchmark(LAMMPS_SIM_WORKLOAD)["data"][0]
106104

107105
for workload in w:
108106
if workload not in LAMMPS_SIM_WORKLOAD_CONFIGS:
@@ -150,6 +148,7 @@ def native(ctx, w, repeats=1):
150148
"mpirun",
151149
get_lammps_migration_params(
152150
native=True,
151+
num_loops=3,
153152
num_net_loops=workload_config["num_net_loops"],
154153
chunk_size=workload_config["chunk_size"],
155154
),

tasks/util/kernels.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
# -------------------
3636

3737
OPENMP_KERNELS_DOCKER_DIR = join(EXAMPLES_DOCKER_DIR, "Kernels")
38-
OPENMP_KERNELS = ["global", "p2p", "sparse", "nstream", "reduce", "dgemm"]
38+
OPENMP_KERNELS = ["p2p", "sparse", "nstream", "reduce", "dgemm"]
3939
OPENMP_KERNELS_FAASM_USER = "kernels-omp"
4040

4141
OPENMP_KERNELS_PLOTS_DIR = join(PLOTS_ROOT, "kernels-omp")

tasks/util/plot.py

+9
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,15 @@
1313
"slurm": (0.3, 0.3, 0.3),
1414
}
1515

16+
UBENCH_PLOT_COLORS = [
17+
(1, 0.4, 0.4),
18+
(0.29, 0.63, 0.45),
19+
(0.2, 0.6, 1.0),
20+
(0.3, 0.3, 0.3),
21+
(0.6, 0.4, 1.0),
22+
(1.0, 0.8, 0.4),
23+
]
24+
1625
PLOT_PATTERNS = ["//", "\\\\", "||", "-", "*-", "o-"]
1726
SINGLE_COL_FIGSIZE = (6, 3)
1827

0 commit comments

Comments
 (0)