Skip to content

Commit 67638c4

Browse files
committed
More realistic IO values for cost dashboard
1 parent 6ddc25e commit 67638c4

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

cost-dashboard/Main.agda

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,24 +26,24 @@ baseScenario =
2626
; verify_vcpu_ms_per_tx = 1.50
2727

2828
; ib_per_slot = 0.25
29-
; io_per_ib = 1000.0
29+
; io_per_ib = 10.0
3030
; build_vcpu_ms_per_ib = 300.0
3131
; verify_vcpu_ms_per_ib = 100.0
3232

3333
; eb_per_pipeline = 0.8
34-
; io_per_eb = 200.0
34+
; io_per_eb = 2.0
3535
; build_vcpu_ms_per_eb = 300.0
3636
; verify_vcpu_ms_per_eb = 100.0
3737

3838
; vote_per_pipeline = 500.0
3939
; kb_per_vote = 0.250
40-
; io_per_vote = 25.0
40+
; io_per_vote = 1.0
4141
; build_vcpu_ms_per_vote = 2.0
4242
; verify_vcpu_ms_per_vote = 3.0
4343

4444
; cert_per_pipeline = 1.0
45-
; kb_per_cert = 75.0
46-
; io_per_cert = 1000.0
45+
; kb_per_cert = 7.0
46+
; io_per_cert = 2.0
4747
; build_vcpu_ms_per_cert = 200.0
4848
; verify_vcpu_ms_per_cert = 200.0
4949

cost-dashboard/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ <h2>v0.4, <small><a href="https://drive.google.com/file/d/1pH1GYRInevlKcrkpFRJYI
8080
</tr>
8181
<tr>
8282
<th>IO <span title="Input/output operations per Input Block"></span></th>
83-
<td><input id="uiIbIo" type="number" min="0" max="10000" value="1000" step="1"/></td>
83+
<td><input id="uiIbIo" type="number" min="0" max="1000" value="10" step="1"/></td>
8484
<td>IO/IB</td>
8585
</tr>
8686
<tr>
@@ -106,7 +106,7 @@ <h2>v0.4, <small><a href="https://drive.google.com/file/d/1pH1GYRInevlKcrkpFRJYI
106106
</tr>
107107
<tr>
108108
<th>IO <span title="Input/output operations per Endorser Block"></span></th>
109-
<td><input id="uiEbIo" type="number" min="0" max="10000" value="200" step="1"/></td>
109+
<td><input id="uiEbIo" type="number" min="0" max="1000" value="2" step="1"/></td>
110110
<td>IO/EB</td>
111111
</tr>
112112
<tr>
@@ -127,7 +127,7 @@ <h2>v0.4, <small><a href="https://drive.google.com/file/d/1pH1GYRInevlKcrkpFRJYI
127127
</tr>
128128
<tr>
129129
<th>IO <span title="Input/output operations per vote."></span></th>
130-
<td><input id="uiVoteIo" type="number" min="0" max="10000" value="25" step="1"/></td>
130+
<td><input id="uiVoteIo" type="number" min="0" max="100" value="1" step="1"/></td>
131131
<td>IO/vote</td>
132132
</tr>
133133
<tr>
@@ -143,12 +143,12 @@ <h2>v0.4, <small><a href="https://drive.google.com/file/d/1pH1GYRInevlKcrkpFRJYI
143143
<tr>
144144
<th rowspan="4">Certificate <span title="A Leios certificate records a successful vote for an Endorser Block."></span></th>
145145
<th>Size <span title="Size of a certificate."></span></th>
146-
<td><input id="uiCertSize" type="number" min="0" max="200" value="15" step="1"/></td>
146+
<td><input id="uiCertSize" type="number" min="0" max="200" value="7" step="1"/></td>
147147
<td>kB/cert</td>
148148
</tr>
149149
<tr>
150150
<th>IO <span title="Input/output operations per certificate."></span></th>
151-
<td><input id="uiCertIo" type="number" min="0" max="10000" value="1000" step="1"/></td>
151+
<td><input id="uiCertIo" type="number" min="0" max="1000" value="2" step="1"/></td>
152152
<td>IO/cert</td>
153153
</tr>
154154
<tr>

0 commit comments

Comments
 (0)