Skip to content

Commit cfa1b5e

Browse files
Ekaterina Ignashevafacebook-github-bot
authored andcommitted
Marked covered tests
1 parent fff7b3c commit cfa1b5e

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
builder = GraphBuilder()
252253
x = builder.placeholder("x", torch.randn(2, 12, 1, 6, dtype=torch.float32))
@@ -276,6 +277,7 @@ def test_force_quant_dequant_fusion(self):
276277
},
277278
)
278279

280+
# Already covered
279281
def test_no_replace_quant_permute_dequant_with_requantize(self):
280282
builder = GraphBuilder()
281283
x = builder.placeholder("x", torch.randn(2, 12, 1, 6, dtype=torch.float32))
@@ -306,6 +308,7 @@ def test_no_replace_quant_permute_dequant_with_requantize(self):
306308
},
307309
)
308310

311+
# Already covered
309312
def test_replace_quant_view_dequant_with_requantize(self):
310313
builder = GraphBuilder()
311314
x = builder.placeholder("x", torch.randn(2, 12, 1, 6, dtype=torch.float32))
@@ -428,6 +431,7 @@ def forward(self, x):
428431
},
429432
)
430433

434+
# Already covered
431435
def test_fuse_mul_into_dequant(self):
432436
INPUT_SHAPE: Final[List[int]] = [4, 32]
433437
DEQUANT_SCALE: Final[float] = 1.5

0 commit comments

Comments
 (0)