-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add Benchmarks (cargo) benchmark result for 53ad9c4
- Loading branch information
github-action-benchmark
committed
Feb 6, 2025
1 parent
b1dc24f
commit 557cd8e
Showing
1 changed file
with
163 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
window.BENCHMARK_DATA = { | ||
"lastUpdate": 1738863630215, | ||
"lastUpdate": 1738865847355, | ||
"repoUrl": "https://github.com/powdr-labs/powdr", | ||
"entries": { | ||
"Benchmarks": [ | ||
|
@@ -159718,6 +159718,168 @@ window.BENCHMARK_DATA = { | |
"unit": "ns/iter" | ||
} | ||
] | ||
}, | ||
{ | ||
"commit": { | ||
"author": { | ||
"email": "[email protected]", | ||
"name": "Georg Wiese", | ||
"username": "georgwiese" | ||
}, | ||
"committer": { | ||
"email": "[email protected]", | ||
"name": "GitHub", | ||
"username": "web-flow" | ||
}, | ||
"distinct": false, | ||
"id": "53ad9c410af8493e670ca045ed644c365c15b84c", | ||
"message": "Witgen: Pass range constraints separately (#2451)\n\nthis PR changes the signature of `Machine::process_plookup` from\n```rust\n fn process_plookup<'b, Q: QueryCallback<T>>(\n &mut self,\n mutable_state: &'b MutableState<'a, T, Q>,\n identity_id: u64,\n caller_rows: &'b RowPair<'b, 'a, T>,\n ) -> EvalResult<'a, T>;\n```\n\nTo\n```rust\n fn process_plookup<'b, Q: QueryCallback<T>>(\n &mut self,\n mutable_state: &'b MutableState<'a, T, Q>,\n identity_id: u64,\n parameters: &[AffineExpression<AlgebraicVariable<'a>, T>],\n range_constraints: &dyn RangeConstraintSet<AlgebraicVariable<'a>, T>,\n ) -> EvalResult<'a, T>;\n```\n\nPreviously, each machine evaluated the parameters themselves, using the\n`caller_rows` and the calling bus send, stored in the connection. But in\nthe future, the calling bus send will not be static, so I moved this to\nthe caller.\n\nThis will enable #2447 and eventually the dynamic bus.\n\n---------\n\nCo-authored-by: chriseth <[email protected]>", | ||
"timestamp": "2025-02-06T17:11:42Z", | ||
"tree_id": "9a6246bd7f9c377b3181f9f320ae9efb1161b301", | ||
"url": "https://github.com/powdr-labs/powdr/commit/53ad9c410af8493e670ca045ed644c365c15b84c" | ||
}, | ||
"date": 1738865846598, | ||
"tool": "cargo", | ||
"benches": [ | ||
{ | ||
"name": "evaluator-benchmark/std::math::ff::inverse", | ||
"value": 6951, | ||
"range": "± 105", | ||
"unit": "ns/iter" | ||
}, | ||
{ | ||
"name": "evaluator-benchmark/std::math::ff::reduce", | ||
"value": 598, | ||
"range": "± 7", | ||
"unit": "ns/iter" | ||
}, | ||
{ | ||
"name": "evaluator-benchmark/std::math::ff::mul", | ||
"value": 1072, | ||
"range": "± 33", | ||
"unit": "ns/iter" | ||
}, | ||
{ | ||
"name": "evaluator-benchmark/sqrt_879882356", | ||
"value": 28824, | ||
"range": "± 387", | ||
"unit": "ns/iter" | ||
}, | ||
{ | ||
"name": "evaluator-benchmark/sqrt_1882356", | ||
"value": 24088, | ||
"range": "± 198", | ||
"unit": "ns/iter" | ||
}, | ||
{ | ||
"name": "evaluator-benchmark/sqrt_1187956", | ||
"value": 24063, | ||
"range": "± 94", | ||
"unit": "ns/iter" | ||
}, | ||
{ | ||
"name": "evaluator-benchmark/sqrt_56", | ||
"value": 16959, | ||
"range": "± 78", | ||
"unit": "ns/iter" | ||
}, | ||
{ | ||
"name": "evaluator-benchmark/sort_33", | ||
"value": 788403, | ||
"range": "± 5887", | ||
"unit": "ns/iter" | ||
}, | ||
{ | ||
"name": "evaluator-benchmark/sort_100", | ||
"value": 2720695, | ||
"range": "± 31742", | ||
"unit": "ns/iter" | ||
}, | ||
{ | ||
"name": "evaluator-benchmark/sort_300", | ||
"value": 9517074, | ||
"range": "± 106268", | ||
"unit": "ns/iter" | ||
}, | ||
{ | ||
"name": "evaluator-benchmark/sort_900", | ||
"value": 35028965, | ||
"range": "± 482833", | ||
"unit": "ns/iter" | ||
}, | ||
{ | ||
"name": "evaluator-benchmark/sort_2700", | ||
"value": 139516445, | ||
"range": "± 1614963", | ||
"unit": "ns/iter" | ||
}, | ||
{ | ||
"name": "jit-benchmark/sqrt_879882356", | ||
"value": 2599, | ||
"range": "± 22", | ||
"unit": "ns/iter" | ||
}, | ||
{ | ||
"name": "jit-benchmark/sqrt_1882356", | ||
"value": 2077, | ||
"range": "± 21", | ||
"unit": "ns/iter" | ||
}, | ||
{ | ||
"name": "jit-benchmark/sqrt_1187956", | ||
"value": 2053, | ||
"range": "± 1", | ||
"unit": "ns/iter" | ||
}, | ||
{ | ||
"name": "jit-benchmark/sqrt_56", | ||
"value": 1232, | ||
"range": "± 20", | ||
"unit": "ns/iter" | ||
}, | ||
{ | ||
"name": "jit-benchmark/sort_33", | ||
"value": 71974, | ||
"range": "± 421", | ||
"unit": "ns/iter" | ||
}, | ||
{ | ||
"name": "jit-benchmark/sort_100", | ||
"value": 266324, | ||
"range": "± 3184", | ||
"unit": "ns/iter" | ||
}, | ||
{ | ||
"name": "jit-benchmark/sort_300", | ||
"value": 1020994, | ||
"range": "± 11611", | ||
"unit": "ns/iter" | ||
}, | ||
{ | ||
"name": "jit-benchmark/sort_900", | ||
"value": 4330483, | ||
"range": "± 60527", | ||
"unit": "ns/iter" | ||
}, | ||
{ | ||
"name": "jit-benchmark/sort_2700", | ||
"value": 20829851, | ||
"range": "± 163105", | ||
"unit": "ns/iter" | ||
}, | ||
{ | ||
"name": "jit-witgen-benchmark/jit_witgen_benchmark", | ||
"value": 32585265671, | ||
"range": "± 85014172", | ||
"unit": "ns/iter" | ||
}, | ||
{ | ||
"name": "executor-benchmark/keccak", | ||
"value": 15880287553, | ||
"range": "± 180260921", | ||
"unit": "ns/iter" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
|