@@ -629,7 +629,6 @@ class DFG(DfParentOp, DataflowOp):
629
629
#: Inputs types of the operation.
630
630
inputs : tys .TypeRow
631
631
_outputs : tys .TypeRow | None = field (default = None , repr = False )
632
- _extension_delta : tys .ExtensionSet = field (default_factory = list , repr = False )
633
632
634
633
@property
635
634
def outputs (self ) -> tys .TypeRow :
@@ -647,7 +646,7 @@ def signature(self) -> tys.FunctionType:
647
646
Raises:
648
647
IncompleteOp: If the outputs have not been set.
649
648
"""
650
- return tys .FunctionType (self .inputs , self .outputs , self . _extension_delta )
649
+ return tys .FunctionType (self .inputs , self .outputs )
651
650
652
651
@property
653
652
def num_out (self ) -> int :
@@ -726,7 +725,6 @@ class DataflowBlock(DfParentOp):
726
725
inputs : tys .TypeRow
727
726
_sum : tys .Sum | None = None
728
727
_other_outputs : tys .TypeRow | None = field (default = None , repr = False )
729
- extension_delta : tys .ExtensionSet = field (default_factory = list )
730
728
731
729
@property
732
730
def sum_ty (self ) -> tys .Sum :
@@ -759,7 +757,6 @@ def _to_serial(self, parent: Node) -> sops.DataflowBlock:
759
757
inputs = ser_it (self .inputs ),
760
758
sum_rows = list (map (ser_it , self .sum_ty .variant_rows )),
761
759
other_outputs = ser_it (self .other_outputs ),
762
- extension_delta = self .extension_delta ,
763
760
)
764
761
765
762
def inner_signature (self ) -> tys .FunctionType :
@@ -990,7 +987,6 @@ class TailLoop(DfParentOp, DataflowOp):
990
987
#: Types that are appended to both inputs and outputs of the graph.
991
988
rest : tys .TypeRow
992
989
_just_outputs : tys .TypeRow | None = field (default = None , repr = False )
993
- extension_delta : tys .ExtensionSet = field (default_factory = list , repr = False )
994
990
995
991
@property
996
992
def just_outputs (self ) -> tys .TypeRow :
@@ -1011,7 +1007,6 @@ def _to_serial(self, parent: Node) -> sops.TailLoop:
1011
1007
just_inputs = ser_it (self .just_inputs ),
1012
1008
just_outputs = ser_it (self .just_outputs ),
1013
1009
rest = ser_it (self .rest ),
1014
- extension_delta = self .extension_delta ,
1015
1010
)
1016
1011
1017
1012
def inner_signature (self ) -> tys .FunctionType :
0 commit comments