@@ -75,6 +75,7 @@ def partition_types(self) -> List[OpOverload]:
7575 def get_anchors (
7676 self , gm : fx .GraphModule , fused_partition : List [fx .GraphModule ]
7777 ) -> PartitionAnchors :
78+ # pyre-fixme[29]: `Union[BoundMethod[typing.Callable(torch._C.TensorBase.__ge...
7879 addmm_node = fused_partition [0 ].nodes [- 1 ]
7980
8081 bias_qspec = DerivedQuantizationSpec (
@@ -107,6 +108,7 @@ def partition_types(self) -> List[OpOverload]:
107108 def get_anchors (
108109 self , gm : fx .GraphModule , fused_partition : List [fx .GraphModule ]
109110 ) -> PartitionAnchors :
111+ # pyre-fixme[29]: `Union[BoundMethod[typing.Callable(torch._C.TensorBase.__ge...
110112 bmm_node = fused_partition [0 ].nodes [- 1 ]
111113
112114 return PartitionAnchors (
@@ -127,6 +129,7 @@ def partition_types(self) -> List[OpOverload]:
127129 def get_anchors (
128130 self , gm : fx .GraphModule , fused_partition : List [fx .GraphModule ]
129131 ) -> PartitionAnchors :
132+ # pyre-fixme[29]: `Union[BoundMethod[typing.Callable(torch._C.TensorBase.__ge...
130133 conv1d_node = fused_partition [0 ].nodes [- 1 ]
131134
132135 bias_qspec = DerivedQuantizationSpec (
@@ -165,6 +168,7 @@ def partition_types(self) -> List[OpOverload]:
165168 def get_anchors (
166169 self , gm : fx .GraphModule , fused_partition : List [fx .GraphModule ]
167170 ) -> PartitionAnchors :
171+ # pyre-fixme[29]: `Union[BoundMethod[typing.Callable(torch._C.TensorBase.__ge...
168172 conv2d_node = fused_partition [0 ].nodes [- 1 ]
169173
170174 bias_qspec = DerivedQuantizationSpec (
@@ -203,6 +207,7 @@ def partition_types(self) -> List[OpOverload]:
203207 def get_anchors (
204208 self , gm : fx .GraphModule , fused_partition : List [fx .GraphModule ]
205209 ) -> PartitionAnchors :
210+ # pyre-fixme[29]: `Union[BoundMethod[typing.Callable(torch._C.TensorBase.__ge...
206211 layer_norm_node = fused_partition [0 ].nodes [- 1 ]
207212
208213 others = [(layer_norm_node , 1 )]
@@ -237,6 +242,7 @@ def partition_types(self) -> List[OpOverload]:
237242 def get_anchors (
238243 self , gm : fx .GraphModule , fused_partition : List [fx .GraphModule ]
239244 ) -> PartitionAnchors :
245+ # pyre-fixme[29]: `Union[BoundMethod[typing.Callable(torch._C.TensorBase.__ge...
240246 linear_node = fused_partition [0 ].nodes [- 1 ]
241247
242248 bias_qspec = DerivedQuantizationSpec (
@@ -275,6 +281,7 @@ def partition_types(self) -> List[OpOverload]:
275281 def get_anchors (
276282 self , gm : fx .GraphModule , fused_partition : List [fx .GraphModule ]
277283 ) -> PartitionAnchors :
284+ # pyre-fixme[29]: `Union[BoundMethod[typing.Callable(torch._C.TensorBase.__ge...
278285 matmul_node = fused_partition [0 ].nodes [- 1 ]
279286
280287 return PartitionAnchors (
@@ -297,6 +304,7 @@ def partition_types(self) -> List[OpOverload]:
297304 def get_anchors (
298305 self , gm : fx .GraphModule , fused_partition : List [fx .GraphModule ]
299306 ) -> PartitionAnchors :
307+ # pyre-fixme[29]: `Union[BoundMethod[typing.Callable(torch._C.TensorBase.__ge...
300308 relu_node = fused_partition [0 ].nodes [- 1 ]
301309
302310 return PartitionAnchors (
0 commit comments