forked from cerc-io/plugeth
tests: report mgas/s metric in evm benchmarks (#25700)
* test(state): report mgas/s metric in EVM benchmark * revert testdata submodule update * aggregate mgas/s results * calculate elapsed time better * tests: benchmarks - handle access list + take refund into account Co-authored-by: Martin Holst Swende <martin@swende.se>
This commit is contained in:
parent
1743e61130
commit
53d68feea8
@ -26,6 +26,7 @@ import (
|
|||||||
"reflect"
|
"reflect"
|
||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/ethereum/go-ethereum/core"
|
"github.com/ethereum/go-ethereum/core"
|
||||||
"github.com/ethereum/go-ethereum/core/rawdb"
|
"github.com/ethereum/go-ethereum/core/rawdb"
|
||||||
@ -184,12 +185,14 @@ func runBenchmark(b *testing.B, t *StateTest) {
|
|||||||
b.Error(err)
|
b.Error(err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
var rules = config.Rules(new(big.Int), false)
|
||||||
|
|
||||||
vmconfig.ExtraEips = eips
|
vmconfig.ExtraEips = eips
|
||||||
block := t.genesis(config).ToBlock()
|
block := t.genesis(config).ToBlock()
|
||||||
_, statedb := MakePreState(rawdb.NewMemoryDatabase(), t.json.Pre, false)
|
_, statedb := MakePreState(rawdb.NewMemoryDatabase(), t.json.Pre, false)
|
||||||
|
|
||||||
var baseFee *big.Int
|
var baseFee *big.Int
|
||||||
if config.IsLondon(new(big.Int)) {
|
if rules.IsLondon {
|
||||||
baseFee = t.json.Env.BaseFee
|
baseFee = t.json.Env.BaseFee
|
||||||
if baseFee == nil {
|
if baseFee == nil {
|
||||||
// Retesteth uses `0x10` for genesis baseFee. Therefore, it defaults to
|
// Retesteth uses `0x10` for genesis baseFee. Therefore, it defaults to
|
||||||
@ -230,17 +233,40 @@ func runBenchmark(b *testing.B, t *StateTest) {
|
|||||||
sender := vm.NewContract(vm.AccountRef(msg.From()), vm.AccountRef(msg.From()),
|
sender := vm.NewContract(vm.AccountRef(msg.From()), vm.AccountRef(msg.From()),
|
||||||
nil, 0)
|
nil, 0)
|
||||||
|
|
||||||
|
var (
|
||||||
|
gasUsed uint64
|
||||||
|
elapsed uint64
|
||||||
|
refund uint64
|
||||||
|
)
|
||||||
b.ResetTimer()
|
b.ResetTimer()
|
||||||
for n := 0; n < b.N; n++ {
|
for n := 0; n < b.N; n++ {
|
||||||
// Execute the message.
|
|
||||||
snapshot := statedb.Snapshot()
|
snapshot := statedb.Snapshot()
|
||||||
_, _, err = evm.Call(sender, *msg.To(), msg.Data(), msg.Gas(), msg.Value())
|
if rules.IsBerlin {
|
||||||
|
statedb.PrepareAccessList(msg.From(), msg.To(), vm.ActivePrecompiles(rules), msg.AccessList())
|
||||||
|
}
|
||||||
|
b.StartTimer()
|
||||||
|
start := time.Now()
|
||||||
|
|
||||||
|
// Execute the message.
|
||||||
|
_, leftOverGas, err := evm.Call(sender, *msg.To(), msg.Data(), msg.Gas(), msg.Value())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
b.Error(err)
|
b.Error(err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
b.StopTimer()
|
||||||
|
elapsed += uint64(time.Since(start))
|
||||||
|
refund += statedb.GetRefund()
|
||||||
|
gasUsed += msg.Gas() - leftOverGas
|
||||||
|
|
||||||
statedb.RevertToSnapshot(snapshot)
|
statedb.RevertToSnapshot(snapshot)
|
||||||
}
|
}
|
||||||
|
if elapsed < 1 {
|
||||||
|
elapsed = 1
|
||||||
|
}
|
||||||
|
// Keep it as uint64, multiply 100 to get two digit float later
|
||||||
|
mgasps := (100 * 1000 * (gasUsed - refund)) / elapsed
|
||||||
|
b.ReportMetric(float64(mgasps)/100, "mgas/s")
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user