(self, inp, **kwargs)
| 28 | self.module = module |
| 29 | |
| 30 | def forward(self, inp, **kwargs): |
| 31 | inps[cache['i']] = inp |
| 32 | cache['i'] += 1 |
| 33 | cache['attention_mask'] = kwargs['attention_mask'] |
| 34 | cache['position_ids'] = kwargs['position_ids'] |
| 35 | raise ValueError |
| 36 | |
| 37 | layers[0] = Catcher(layers[0]) |
| 38 | for i in range(nsamples): |
nothing calls this directly
no outgoing calls
no test coverage detected