(*inputs)
| 528 | |
| 529 | def create_custom_forward(module): |
| 530 | def custom_forward(*inputs): |
| 531 | # None for past_key_value |
| 532 | return module(*inputs, use_cache, output_attentions) |
| 533 | |
| 534 | return custom_forward |
| 535 |
nothing calls this directly
no outgoing calls
no test coverage detected