@@ -230,7 +230,7 @@ def ext_op(self) -> ExtOp:
230
230
Computed once using :meth:`op_def` :meth:`type_args` and :meth:`type_args`.
231
231
Each of those methods should be deterministic.
232
232
"""
233
- return ExtOp ( self .op_def (), self .cached_signature (), self .type_args ())
233
+ return self .op_def (). instantiate ( self .type_args (), self .cached_signature ())
234
234
235
235
def op_def (self ) -> ext .OpDef :
236
236
"""The :class:`tys.OpDef` for this operation.
@@ -657,7 +657,7 @@ def name(self) -> str:
657
657
class DataflowBlock (DfParentOp ):
658
658
"""Parent of non-entry basic block in a control flow graph."""
659
659
660
- #: Inputs types of the innner dataflow graph.
660
+ #: Inputs types of the inner dataflow graph.
661
661
inputs : tys .TypeRow
662
662
_sum : tys .Sum | None = None
663
663
_other_outputs : tys .TypeRow | None = field (default = None , repr = False )
@@ -879,7 +879,7 @@ def name(self) -> str:
879
879
class Case (DfParentOp ):
880
880
"""Parent of a dataflow graph that is a branch of a :class:`Conditional`."""
881
881
882
- #: Inputs types of the innner dataflow graph.
882
+ #: Inputs types of the inner dataflow graph.
883
883
inputs : tys .TypeRow
884
884
_outputs : tys .TypeRow | None = field (default = None , repr = False )
885
885
num_out : int = field (default = 0 , repr = False )
0 commit comments