| 74 | |
| 75 | |
| 76 | class FakeModel: |
| 77 | def __init__(self) -> None: |
| 78 | self.name = "fake_model" |
| 79 | |
| 80 | def __call__(self, x) -> Any: |
| 81 | return x |
| 82 | |
| 83 | def __repr__(self) -> str: |
| 84 | return "FakeModel" |
| 85 | |
| 86 | |
| 87 | class FakeOpType: |
no outgoing calls
searching dependent graphs…