Avatar for the CQCL user
CQCL
portgraph
BlogDocsChangelog

Performance History

Latest Results

chore: release v0.15.2
release-plz-2025-07-21T09-22-01Z
2 days ago
chore: release v0.15.2
release-plz-2025-07-21T09-22-01Z
2 days ago
chore(deps): bump rand from 0.9.1 to 0.9.2 in the patch group (#239) [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rand&package-manager=cargo&previous-version=0.9.1&new-version=0.9.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
main
2 days ago
chore: release v0.15.2
release-plz-2025-07-21T09-22-01Z
2 days ago
chore(deps): bump iai-callgrind from 0.15.2 to 0.16.0 in the minor group (#238) [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=iai-callgrind&package-manager=cargo&previous-version=0.15.2&new-version=0.16.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
main
2 days ago
feat: Add LineConvexChecker::nodes_in_interval
lm/add-nodes-interval
2 days ago
feat: New ConvexChecker algorithm for Circuit-like graphs (#240) This PR adds a new convex checker `LineConvexChecker`. All existing benchmarks `check_convexity_full`, `check_convexity_sparse` and `initialize_convexity` have been implemented for the new checker. I have also added a new `check_convexity_fixed_size` benchmark, which models more closely the kind of workloads that `tket2` uses these checkers for. The comparison between the two checkers is interesting - 👍 on the `fixed_size` convexity check, the new checker is **~4x faster**, across all graph sizes. The one-time memory allocation would get amortised even further if more convexity checks were made in sequence (only making 3 in the benchmarks) - 👍 on the `sparse` convexity check, the new checker is between **36% and 60% faster** - on the `full` convexity check, the new checker is slightly faster on the smallest instance, but goes up to being 8x slower on the largest instance. This is expected, as it is optimised for small subgraph convexity checking. - 👎 Initialisation of the new checker is ~4x slower - again, this is by design. I've made a node of this in the docs and would still recommend the `TopoConvexChecker` as a "sane default" for this reason. The benchmarks that CodSpeed marks as "dropped" have in fact been renamed with the suffix `_TopoConvexChecker<PortGraph>`. No modification has been made to `TopoConvexChecker` (but the code was moved to its own file, hence the noisy diff). You can see though that the renamed benchmarks perform identically to the old ones. For reviewing the file `src/algorithms/convex.rs`, it might be simpler to just read the new version rather than reading the diff. All code that has been deleted from that file is now in `src/algorithms/convex/topo_convex_checker.rs`.
main
3 days ago

Active Branches

chore: release v0.15.2
last run
2 days ago
#237
CodSpeed Performance Gauge
0%
#181
CodSpeed Performance Gauge
0%
© 2025 CodSpeed Technology
Home Terms Privacy Docs