10
10
OPENMP_KERNELS_PLOTS_DIR ,
11
11
OPENMP_KERNELS_RESULTS_DIR ,
12
12
)
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
14
14
15
15
16
16
def _read_results ():
@@ -85,6 +85,7 @@ def plot(ctx):
85
85
ys ,
86
86
width ,
87
87
label = kernel ,
88
+ color = UBENCH_PLOT_COLORS [ind_kernel ],
88
89
edgecolor = "black" ,
89
90
)
90
91
@@ -93,14 +94,16 @@ def plot(ctx):
93
94
ax .set_xticks (xs , labels = nprocs )
94
95
95
96
# Horizontal line at slowdown of 1
96
- xlim_left = - 0.5
97
+ xlim_left = - ( 0.5 + width )
97
98
xlim_right = len (nprocs ) - 0.5
98
99
ax .hlines (1 , xlim_left , xlim_right , linestyle = "dashed" , colors = "red" )
99
100
100
101
ax .set_xlim (left = xlim_left , right = xlim_right )
101
102
ax .set_ylim (bottom = 0 , top = ymax )
102
103
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
+ )
105
108
106
109
save_plot (fig , OPENMP_KERNELS_PLOTS_DIR , "openmp_kernels_slowdown" )
0 commit comments