Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(hugr-passes): op replacement and lowering functions #1509

Merged
merged 2 commits into from
Sep 3, 2024
Merged

Conversation

ss2165
Copy link
Member

@ss2165 ss2165 commented Sep 3, 2024

Offer simple interfaces for bulk lowering operations. replace_ops provided on top of lowering as replacing individual ops is much more efficient than splicing in subgraphs.

@ss2165 ss2165 requested a review from a team as a code owner September 3, 2024 13:02
@ss2165 ss2165 requested a review from doug-q September 3, 2024 13:02
@ss2165 ss2165 added this to the hugr-rs 0.12.1 / hugr-py 0.8.1 milestone Sep 3, 2024
Copy link

codecov bot commented Sep 3, 2024

Codecov Report

Attention: Patch coverage is 92.85714% with 4 lines in your changes missing coverage. Please review.

Project coverage is 87.27%. Comparing base (70e0a64) to head (ef43b8c).
Report is 1 commits behind head on main.

Files with missing lines Patch % Lines
hugr-passes/src/lower.rs 92.85% 1 Missing and 3 partials ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main    #1509      +/-   ##
==========================================
+ Coverage   87.26%   87.27%   +0.01%     
==========================================
  Files         127      128       +1     
  Lines       21661    21717      +56     
  Branches    18662    18718      +56     
==========================================
+ Hits        18902    18954      +52     
- Misses       1989     1990       +1     
- Partials      770      773       +3     
Flag Coverage Δ
python 92.46% <ø> (ø)
rust 86.44% <92.85%> (+0.01%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Copy link
Collaborator

@doug-q doug-q left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Very nice, I do think signature of lower_ops should be improved.

hugr-passes/src/lower.rs Show resolved Hide resolved
replacements
.into_iter()
.map(|(node, replacement)| {
let subcirc = SiblingSubgraph::try_from_nodes([node], hugr)?;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a common pattern, it would be nice to write

Suggested change
let subcirc = SiblingSubgraph::try_from_nodes([node], hugr)?;
let subcirc = SiblingSubgraph::from_node(node, hugr);

Do feel free to punt on this one.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Offer simple interfaces for bulk lowering operations. `replace_ops` provided on top of lowering as replacing individual ops is much more efficient than splicing in subgraphs.
@ss2165 ss2165 added this pull request to the merge queue Sep 3, 2024
Merged via the queue into main with commit faeac27 Sep 3, 2024
20 of 21 checks passed
@ss2165 ss2165 deleted the ss/lower branch September 3, 2024 15:58
@hugrbot hugrbot mentioned this pull request Sep 3, 2024
github-merge-queue bot pushed a commit that referenced this pull request Sep 4, 2024
## 🤖 New release
* `hugr`: 0.12.0 -> 0.12.1
* `hugr-core`: 0.9.0 -> 0.9.1
* `hugr-passes`: 0.8.0 -> 0.8.1
* `hugr-cli`: 0.5.0 -> 0.6.0

<details><summary><i><b>Changelog</b></i></summary><p>

## `hugr`
<blockquote>

## 0.12.1 (2024-09-04)

### Bug Fixes

- `std.collections.insert` wrong output order
([#1513](#1513))

### Features

- Op replacement and lowering functions
([#1509](#1509))
</blockquote>

## `hugr-core`
<blockquote>

## 0.9.1 (2024-09-04)

### Bug Fixes

- `std.collections.insert` wrong output order
([#1513](#1513))
</blockquote>

## `hugr-passes`
<blockquote>

## 0.8.1 (2024-09-04)

### Features

- Op replacement and lowering functions
([#1509](#1509))
</blockquote>

## `hugr-cli`
<blockquote>

## 0.6.0 (2024-09-04)

### Features

- [**breaking**] Allow registry specification in `run_dump`
([#1501](#1501))
- [**breaking**] Add `Package::validate` and return `ExtensionRegistry`
in helpers. ([#1507](#1507))
</blockquote>


</p></details>

---
This PR was generated with
[release-plz](https://github.com/MarcoIeni/release-plz/).
@hugrbot hugrbot mentioned this pull request Sep 4, 2024
github-merge-queue bot pushed a commit that referenced this pull request Oct 8, 2024
## 🤖 New release
* `hugr`: 0.12.1 -> 0.13.0 (✓ API compatible changes)
* `hugr-core`: 0.9.1 -> 0.10.0 (✓ API compatible changes)
* `hugr-passes`: 0.8.1 -> 0.8.2 (✓ API compatible changes)
* `hugr-cli`: 0.6.0 -> 0.6.1 (✓ API compatible changes)

<details><summary><i><b>Changelog</b></i></summary><p>

## `hugr`
<blockquote>

## 0.13.0 (2024-10-08)

### Bug Fixes

- [**breaking**] Make list length op give back the list
([#1547](#1547))

### Features

- [**breaking**] Allow CustomConsts to (optionally) be hashable
([#1397](#1397))
- Add an `OpLoadError` variant of `BuildError`.
([#1537](#1537))
- [**breaking**] `HugrMut::remove_node` and `SimpleReplacement` return
removed weights ([#1516](#1516))
- Draft for `hugr-model` with export, import, parsing and pretty
printing ([#1542](#1542))
</blockquote>

## `hugr-core`
<blockquote>

## 0.10.0 (2024-10-08)

### Bug Fixes

- [**breaking**] Make list length op give back the list
([#1547](#1547))

### Features

- [**breaking**] Allow CustomConsts to (optionally) be hashable
([#1397](#1397))
- Add an `OpLoadError` variant of `BuildError`.
([#1537](#1537))
- [**breaking**] `HugrMut::remove_node` and `SimpleReplacement` return
removed weights ([#1516](#1516))
- Draft for `hugr-model` with export, import, parsing and pretty
printing ([#1542](#1542))
</blockquote>

## `hugr-passes`
<blockquote>

## 0.8.1 (2024-09-04)

### Features

- Op replacement and lowering functions
([#1509](#1509))
</blockquote>

## `hugr-cli`
<blockquote>

## 0.6.0 (2024-09-04)

### Features

- [**breaking**] Allow registry specification in `run_dump`
([#1501](#1501))
- [**breaking**] Add `Package::validate` and return `ExtensionRegistry`
in helpers. ([#1507](#1507))
</blockquote>


</p></details>

---
This PR was generated with
[release-plz](https://github.com/MarcoIeni/release-plz/).
@ss2165 ss2165 mentioned this pull request Oct 9, 2024
@hugrbot hugrbot mentioned this pull request Oct 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants