(self)
| 116 | |
| 117 | class SpyLinearLogpOp: |
| 118 | def __init__(self): |
| 119 | self.calls = [] |
| 120 | self._delegate = NativeLinearLogpOp() |
| 121 | |
| 122 | def __call__(self, hidden, lm_head_weight, target_ids, bias=None, **kwargs): |
| 123 | self.calls.append( |
nothing calls this directly
no test coverage detected