(self)
| 924 | self.assertEqual(addmm_count, 0) |
| 925 | |
| 926 | def test_save_fails(self): |
| 927 | model = TestLinear() |
| 928 | program = torch.export.export(model, model._get_random_inputs(), strict=True) |
| 929 | edge = to_edge(program) |
| 930 | et = edge.to_executorch() |
| 931 | with self.assertRaises(ValueError): |
| 932 | _ = et.save("/tmp/test_save.pt") |
| 933 | |
| 934 | def test__transform_override_verifiers(self): |
| 935 | """Test that _transform can override verifiers in the exported program.""" |
nothing calls this directly
no test coverage detected