Skip to content

Commit

Permalink
feat: automatically add state order edges for inter-graph edges
Browse files Browse the repository at this point in the history
  • Loading branch information
ss2165 committed Jun 5, 2024
1 parent 5537e00 commit 5aa92ce
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
6 changes: 6 additions & 0 deletions hugr-py/src/hugr/_dfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from ._hugr import Hugr, Node, Wire, OutPort

from ._ops import Op, Command, Input, Output, DFG
from ._exceptions import NoSiblingAncestor
from hugr.serialization.tys import FunctionType, Type


Expand Down Expand Up @@ -72,6 +73,11 @@ def add_state_order(self, src: Node, dst: Node) -> None:
def _wire_up(self, node: Node, ports: Iterable[Wire]):
for i, p in enumerate(ports):
src = p.out_port()
node_ancestor = _ancestral_sibling(self.hugr, src.node, node)
if node_ancestor is None:
raise NoSiblingAncestor(src.node.idx, node.idx)

Check warning on line 78 in hugr-py/src/hugr/_dfg.py

View check run for this annotation

Codecov / codecov/patch

hugr-py/src/hugr/_dfg.py#L78

Added line #L78 was not covered by tests
if node_ancestor != src.node:
self.add_state_order(src.node, node_ancestor)
self.hugr.add_link(src, node.inp(i))


Expand Down
10 changes: 10 additions & 0 deletions hugr-py/src/hugr/_exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,13 @@
@dataclass
class ParentBeforeChild(Exception):
msg: str = "Parent node must be added before child node."


@dataclass
class NoSiblingAncestor(Exception):
src: int
tgt: int

@property
def msg(self):
return f"Source {self.src} has no sibling ancestor of target {self.tgt}, so cannot wire up."

Check warning on line 16 in hugr-py/src/hugr/_exceptions.py

View check run for this annotation

Codecov / codecov/patch

hugr-py/src/hugr/_exceptions.py#L16

Added line #L16 was not covered by tests
1 change: 1 addition & 0 deletions hugr-py/src/hugr/_hugr.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,7 @@ def _node_links(
return
# iterate over known offsets
for offset in range(self.num_ports(node, direction)):
# TODO should this also look for -1 state order edges?
port = cast(P, node.port(offset, direction))
yield port, list(self._linked_ports(port, links))

Expand Down
8 changes: 4 additions & 4 deletions hugr-py/tests/test_hugr_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import subprocess
import os
import pathlib
from hugr._hugr import Hugr, Node, Wire
from hugr._hugr import Hugr, Node, Wire, _SubPort
from hugr._dfg import Dfg, _ancestral_sibling
from hugr._ops import Custom, Command
import hugr._ops as ops
Expand Down Expand Up @@ -234,11 +234,11 @@ def test_build_inter_graph():

nt = nested.add(Not(a))
nested.set_outputs(nt)
# TODO a context manager could add this state order edge on
# exit by tracking parents of source nodes
h.add_state_order(h.input_node, nested.root)

h.set_outputs(nested.root, b)

assert _SubPort(h.input_node.out(-1)) in h.hugr._links
assert h.hugr.num_outgoing(h.input_node) == 2 # doesn't count state order
_validate(h.hugr, True)


Expand Down

0 comments on commit 5aa92ce

Please sign in to comment.