From a70a282bd915d759c5c2ec0f475f80d166b99179 Mon Sep 17 00:00:00 2001 From: "Tugsbayasgalan (Tugsuu) Manlaibaatar" Date: Tue, 10 Dec 2024 14:30:57 -0800 Subject: [PATCH] Remove to_copy reference in the test Summary: Export is switching to non functional training IR, as a result, we will capture aten.to at a little higher level. This diff makes it so that we don't check for wrong aten.to here. We can't replace it with the correct op because OSS is still running on old IR and being blocked by some other test failures. But i guess that is ok because to_edge still works to get the right delegate op. Differential Revision: D67055703 --- backends/arm/test/ops/test_to_copy.py | 1 - 1 file changed, 1 deletion(-) diff --git a/backends/arm/test/ops/test_to_copy.py b/backends/arm/test/ops/test_to_copy.py index 8499512e10d..a9d827f9034 100644 --- a/backends/arm/test/ops/test_to_copy.py +++ b/backends/arm/test/ops/test_to_copy.py @@ -56,7 +56,6 @@ def _test_to_copy_tosa_MI_pipeline( ) .export() .dump_artifact() - .check_count({"torch.ops.aten._to_copy.default": 1}) .to_edge() .dump_artifact() .partition()