-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes #1188
- Loading branch information
Showing
6 changed files
with
153 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 |
---|---|---|
@@ -0,0 +1,74 @@ | ||
from __future__ import annotations | ||
from dataclasses import dataclass | ||
from typing import Sequence | ||
from ._hugr import Hugr, Node, Wire | ||
from ._dfg import DfBase, _from_base | ||
from ._tys import Type, FunctionType, TypeRow, Sum | ||
import hugr._ops as ops | ||
|
||
|
||
class Block(DfBase[ops.DataflowBlock]): | ||
def block_outputs(self, branching: Wire, *other_outputs: Wire) -> None: | ||
self.set_outputs(branching, *other_outputs) | ||
|
||
def single_successor_outputs(self, *outputs: Wire) -> None: | ||
# TODO requires constants | ||
raise NotImplementedError | ||
|
||
|
||
@dataclass | ||
class Cfg: | ||
hugr: Hugr | ||
root: Node | ||
_entry_block: Block | ||
exit: Node | ||
|
||
def __init__( | ||
self, input_types: Sequence[Type], output_types: Sequence[Type] | ||
) -> None: | ||
input_types = list(input_types) | ||
output_types = list(output_types) | ||
root_op = ops.CFG(FunctionType(input=input_types, output=output_types)) | ||
self.hugr = Hugr(root_op) | ||
self.root = self.hugr.root | ||
# to ensure entry is first child, add a dummy entry at the start | ||
self._entry_block = _from_base( | ||
Block, self.hugr.add_dfg(ops.DataflowBlock(input_types, [])) | ||
) | ||
|
||
self.exit = self.hugr.add_node(ops.ExitBlock(output_types), self.root) | ||
|
||
@property | ||
def entry(self) -> Node: | ||
return self._entry_block.root | ||
|
||
def _entry_op(self) -> ops.DataflowBlock: | ||
dop = self.hugr[self.entry].op | ||
assert isinstance(dop, ops.DataflowBlock) | ||
return dop | ||
|
||
def add_entry(self, sum_rows: Sequence[TypeRow], other_outputs: TypeRow) -> Block: | ||
# update entry block types | ||
self._entry_op().sum_rows = list(sum_rows) | ||
self._entry_op().other_outputs = other_outputs | ||
self._entry_block._output_op().types = [Sum(list(sum_rows)), *other_outputs] | ||
return self._entry_block | ||
|
||
def simple_entry(self, n_branches: int, other_outputs: TypeRow) -> Block: | ||
return self.add_entry([[]] * n_branches, other_outputs) | ||
|
||
def add_block( | ||
self, input_types: TypeRow, sum_rows: Sequence[TypeRow], other_outputs: TypeRow | ||
) -> Block: | ||
new_block = self.hugr.add_dfg( | ||
ops.DataflowBlock(input_types, list(sum_rows), other_outputs) | ||
) | ||
return _from_base(Block, new_block) | ||
|
||
def simple_block( | ||
self, input_types: TypeRow, n_branches: int, other_outputs: TypeRow | ||
) -> Block: | ||
return self.add_block(input_types, [[]] * n_branches, other_outputs) | ||
|
||
def branch(self, src: Wire, dst: Node) -> None: | ||
self.hugr.add_link(src.out_port(), dst.inp(0)) |
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
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
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 |
---|---|---|
|
@@ -269,3 +269,4 @@ def to_serial(self) -> stys.Qubit: | |
|
||
Qubit = QubitDef() | ||
Bool = UnitSum(size=2) | ||
Unit = UnitSum(size=1) |
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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
from hugr._cfg import Cfg | ||
import hugr._tys as tys | ||
from hugr._dfg import Dfg | ||
from .test_hugr_build import _validate, INT_T, DivMod | ||
|
||
|
||
def build_basic_cfg(cfg: Cfg) -> None: | ||
entry = cfg.simple_entry(1, [tys.Bool]) | ||
|
||
entry.block_outputs(*entry.inputs()) | ||
cfg.branch(entry.root.out(0), cfg.exit) | ||
|
||
|
||
def test_basic_cfg() -> None: | ||
cfg = Cfg([tys.Unit, tys.Bool], [tys.Bool]) | ||
build_basic_cfg(cfg) | ||
_validate(cfg.hugr) | ||
|
||
|
||
def test_branch() -> None: | ||
cfg = Cfg([tys.Bool, tys.Unit, INT_T], [INT_T]) | ||
entry = cfg.simple_entry(2, [tys.Unit, INT_T]) | ||
entry.block_outputs(*entry.inputs()) | ||
|
||
middle_1 = cfg.simple_block([tys.Unit, INT_T], 1, [INT_T]) | ||
middle_1.block_outputs(*middle_1.inputs()) | ||
middle_2 = cfg.simple_block([tys.Unit, INT_T], 1, [INT_T]) | ||
u, i = middle_2.inputs() | ||
n = middle_2.add(DivMod(i, i)) | ||
middle_2.block_outputs(u, n[0]) | ||
|
||
cfg.branch(entry.root.out(0), middle_1.root) | ||
cfg.branch(entry.root.out(1), middle_2.root) | ||
|
||
cfg.branch(middle_1.root.out(0), cfg.exit) | ||
cfg.branch(middle_2.root.out(0), cfg.exit) | ||
|
||
_validate(cfg.hugr) | ||
|
||
|
||
def test_nested_cfg() -> None: | ||
dfg = Dfg([tys.Unit, tys.Bool], [tys.Bool]) | ||
|
||
cfg = dfg.add_cfg([tys.Unit, tys.Bool], [tys.Bool], *dfg.inputs()) | ||
|
||
build_basic_cfg(cfg) | ||
dfg.set_outputs(cfg.root) | ||
|
||
_validate(dfg.hugr, True) |
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