(x)
| 169 | from torch._dynamo.backends.debugging import get_nop_func |
| 170 | |
| 171 | def wrong_decomp(x): |
| 172 | return torch.sin(x) |
| 173 | |
| 174 | decomp_table = {} |
| 175 | decomp_table[torch.ops.aten.cos.default] = wrong_decomp |
nothing calls this directly
no outgoing calls
no test coverage detected