(n: int, k: int)
| 39 | |
| 40 | |
| 41 | def find_multiple(n: int, k: int) -> int: |
| 42 | assert k > 0 |
| 43 | if n % k == 0: |
| 44 | return n |
| 45 | return n + k - (n % k) |
| 46 | |
| 47 | |
| 48 | def num_parameters(module: nn.Module, requires_grad: Optional[bool] = None) -> int: |
nothing calls this directly
no outgoing calls
no test coverage detected