<% benchmark_name = benchmark.replace("benchmark_", "").replace("_", " ") %>

Result on ${benchmark_name} benchmark

% if any([val != "" for _, val in result['sysinfo']['sub'].items()]):

System informations: % for name, val in result['sysinfo']['main'].items(): % if val != "": ${name.upper()}: ${val} % endif % endfor

%endif

Quantiles:

% for data in result['dataset_names']:
% for obj in result['objective_names']:
% for obj_col in result['obj_cols']:
% for kind in result['kinds']:
<% fig = result['figures'][data][obj][obj_col][kind] %> % if fig.endswith('.svg'):
% else:
${fig}
%endif
%endfor
%endfor
%endfor
%endfor