|
| 1 | +#set page(paper: "a4") |
| 2 | + |
| 3 | +// these settings make the output look more LaTeX-like |
| 4 | +// #set page(margin: 1.75in) |
| 5 | +#set par(leading: 0.55em, spacing: 0.55em, first-line-indent: 1.8em, justify: true) |
| 6 | +// #set text(font: "Ubuntu") |
| 7 | +// #show raw: set text(font: "Ubuntu Mono") |
| 8 | +#show heading: set block(above: 1.5em, below: 1.2em) |
| 9 | + |
| 10 | +#metadata("{{ report.tag }}.{{ base.fileInfix }}.pdf") <export_file_name> |
| 11 | + |
| 12 | + |
| 13 | +// Semibold row descriptions |
| 14 | +#show table.cell.where(x: 0): set text(weight: "semibold") |
| 15 | + |
| 16 | +// No strokes inside table body; left alignment for row descriptions only |
| 17 | +#let frame(stroke) = (x, y) => ( |
| 18 | + left: if x > 0 { 0pt } else { stroke }, |
| 19 | + right: stroke, |
| 20 | + top: if y < 2 { stroke } else { 0pt }, |
| 21 | + bottom: stroke, |
| 22 | +) |
| 23 | +#set table( |
| 24 | + stroke: frame(1pt), |
| 25 | + align: (x, _) => if x == 0 { left } else { right } |
| 26 | +) |
| 27 | + |
| 28 | +// table coloring |
| 29 | +#let gr(c) = table.cell(fill: green.lighten(60%))[c] |
| 30 | + |
| 31 | + |
| 32 | +// #+CONSTANTS: base=../../{{ base.meta.tag }}/analysis |
| 33 | +// {% for run in runs %} |
| 34 | +// #+CONSTANTS: run{{ run.index }}=../../{{ run.value.meta.tag }}/analysis |
| 35 | + |
| 36 | + |
| 37 | + |
| 38 | +The Title Page |
| 39 | + |
| 40 | +{{ report.target }} against {{ base.ver }} |
| 41 | + |
| 42 | +{{ base.workload }} workload |
| 43 | +{{ report.author }}, Cardano Performance team |
| 44 | +{{ report.date }} |
| 45 | + |
| 46 | +#pagebreak() |
| 47 | + |
| 48 | + |
| 49 | +#set page(numbering: "1") |
| 50 | +#counter(page).update(1) |
| 51 | + |
| 52 | +#outline() |
| 53 | + |
| 54 | +#pagebreak() |
| 55 | + |
| 56 | += Manifest |
| 57 | + |
| 58 | +We compare {% for run in runs %}{%if !run.first%}{%if !run.last%}, {%else%} and {%endif%}{%endif%}`{{ run.value.ver }}` ({{ run.value.meta.era | toTitle }}){% endfor %} relative to `{{ base.ver }}` ({{ base.meta.era | toTitle }}), under {{ base.workload }} workload. |
| 59 | + |
| 60 | +{% include "table_summary.ede" with table = summary %} |
| 61 | + |
| 62 | +#pagebreak() |
| 63 | + |
| 64 | += Analysis |
| 65 | + |
| 66 | + |
| 67 | +#pagebreak() |
| 68 | + |
| 69 | + |
| 70 | += Observations |
| 71 | + |
| 72 | +== Resources |
| 73 | + |
| 74 | ++ ... |
| 75 | + |
| 76 | +== Forging |
| 77 | + |
| 78 | ++ ... |
| 79 | + |
| 80 | +== Peer propagation |
| 81 | + |
| 82 | ++ ... |
| 83 | + |
| 84 | +== End-to-end propagation |
| 85 | + |
| 86 | ++ ... |
| 87 | + |
| 88 | + |
| 89 | +#pagebreak() |
| 90 | + |
| 91 | += Appendix A: charts |
| 92 | + |
| 93 | +== Cluster performance charts |
| 94 | + |
| 95 | + |
| 96 | +#pagebreak() |
| 97 | + |
| 98 | + |
| 99 | +#set par( |
| 100 | + first-line-indent: (amount: 0pt, all: true), |
| 101 | + spacing: 1.35em |
| 102 | +) |
| 103 | + |
| 104 | += Appendix B: data dictionary |
| 105 | + |
| 106 | +== Block propagation metrics |
| 107 | + |
| 108 | +{% for m in dictionary.dBlockProp %} |
| 109 | +*{{ m.value.deShortDesc }}* (_{{ m.value.deField }}_) -- {{ m.value.deDescription }} |
| 110 | + |
| 111 | +{% endfor %} |
| 112 | + |
| 113 | +== Cluster performance metrics |
| 114 | + |
| 115 | +{% for m in dictionary.dClusterPerf %} |
| 116 | +*{{ m.value.deShortDesc }}* (_{{ m.value.deField }}_) -- {{ m.value.deDescription }} |
| 117 | + |
| 118 | +{% endfor %} |
0 commit comments