Skip to content

Commit d3c8bcd

Browse files
Ekaterina Ignashevafacebook-github-bot
authored andcommitted
Marked covered tests
1 parent cb3eba0 commit d3c8bcd

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

backends/cadence/aot/tests/test_fusion_ops_passes.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,7 @@ def forward(self, x):
247247
count_node(graph_module, exir_ops.edge.aten.view_copy.default), 2
248248
)
249249

250+
# Already covered
250251
def test_force_quant_dequant_fusion(self):
251252
class M(torch.nn.Module):
252253
def __init__(self):
@@ -280,6 +281,7 @@ def forward(self, x):
280281
},
281282
)
282283

284+
# Already covered
283285
def test_no_replace_quant_permute_dequant_with_requantize(self):
284286
builder = GraphBuilder()
285287
x = builder.placeholder("x", torch.randn(2, 12, 1, 6, dtype=torch.float32))
@@ -310,6 +312,7 @@ def test_no_replace_quant_permute_dequant_with_requantize(self):
310312
},
311313
)
312314

315+
# Already covered
313316
def test_replace_quant_view_dequant_with_requantize(self):
314317
builder = GraphBuilder()
315318
x = builder.placeholder("x", torch.randn(2, 12, 1, 6, dtype=torch.float32))
@@ -432,6 +435,7 @@ def forward(self, x):
432435
},
433436
)
434437

438+
# Already covered
435439
def test_fuse_mul_into_dequant(self):
436440
INPUT_SHAPE: Final[List[int]] = [4, 32]
437441
DEQUANT_SCALE: Final[float] = 1.5

0 commit comments

Comments
 (0)