Update readme benchmarks again
All checks were successful
Tests / Clang total: 1096, passed: 1096
Clang |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |0|0|0|0|:clap:
Tests / Release [gcc] total: 1096, passed: 1096
GNU C Compiler (gcc) |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |0|0|0|0|:clap:
Tests / Release [gcc,aarch64] total: 824, passed: 824
Tests / Coverage total: 823, passed: 823
weaselab/conflict-set/pipeline/head This commit looks good

I think the last skiplisttest benchmark looked bad because I had vscode
+ firefox + ?? open
This commit is contained in:
2024-03-27 16:47:36 -07:00
parent b0085df5ad
commit 14515e186a

View File

@@ -9,23 +9,23 @@ Hardware for all benchmarks is a mac m1 2020.
## Skip list ## Skip list
``` ```
New conflict set: 1.962 sec New conflict set: 1.957 sec
0.637 Mtransactions/sec 0.639 Mtransactions/sec
2.548 Mkeys/sec 2.555 Mkeys/sec
Detect only: 1.842 sec Detect only: 1.845 sec
0.679 Mtransactions/sec 0.678 Mtransactions/sec
2.714 Mkeys/sec 2.710 Mkeys/sec
Skiplist only: 1.261 sec Skiplist only: 1.263 sec
0.991 Mtransactions/sec 0.990 Mtransactions/sec
3.964 Mkeys/sec 3.960 Mkeys/sec
Performance counters: Performance counters:
Build: 0.0597 Build: 0.0546
Add: 0.0587 Add: 0.0563
Detect: 1.84 Detect: 1.84
D.Sort: 0.411 D.Sort: 0.412
D.Combine: 0.0136 D.Combine: 0.0141
D.CheckRead: 0.67 D.CheckRead: 0.671
D.CheckIntraBatch: 0.00671 D.CheckIntraBatch: 0.0068
D.MergeWrite: 0.592 D.MergeWrite: 0.592
D.RemoveBefore: 0.146 D.RemoveBefore: 0.146
``` ```
@@ -33,25 +33,25 @@ Performance counters:
## Radix tree (this implementation) ## Radix tree (this implementation)
``` ```
New conflict set: 1.660 sec New conflict set: 1.366 sec
0.753 Mtransactions/sec 0.915 Mtransactions/sec
3.012 Mkeys/sec 3.660 Mkeys/sec
Detect only: 1.524 sec Detect only: 1.248 sec
0.820 Mtransactions/sec 1.002 Mtransactions/sec
3.280 Mkeys/sec 4.007 Mkeys/sec
Skiplist only: 0.844 sec Skiplist only: 0.573 sec
1.481 Mtransactions/sec 2.182 Mtransactions/sec
5.926 Mkeys/sec 8.730 Mkeys/sec
Performance counters: Performance counters:
Build: 0.0699 Build: 0.0594
Add: 0.0628 Add: 0.0572
Detect: 1.52 Detect: 1.25
D.Sort: 0.435 D.Sort: 0.418
D.Combine: 0.0183 D.Combine: 0.0149
D.CheckRead: 0.37 D.CheckRead: 0.232
D.CheckIntraBatch: 0.00801 D.CheckIntraBatch: 0.0067
D.MergeWrite: 0.473 D.MergeWrite: 0.341
D.RemoveBefore: 0.215 D.RemoveBefore: 0.232
``` ```
# Our benchmark # Our benchmark