(*inputs)
| 59 | @torch.jit.unused # noqa: T484 |
| 60 | def call_checkpoint_bottleneck(self, input: List[Tensor]) -> Tensor: |
| 61 | def closure(*inputs): |
| 62 | return self.bn_function(inputs) |
| 63 | |
| 64 | return cp.checkpoint(closure, *input) |
| 65 |
nothing calls this directly
no test coverage detected