(param, info)
| 371 | assert len(ishape) == len(oshape), f"shape error: {ishape} {oshape}" |
| 372 | |
| 373 | def check_param(param, info): |
| 374 | assert len(ishape) == len( |
| 375 | param |
| 376 | ), f"pooling: illegal {info} {param} for {ishape}" |
| 377 | |
| 378 | base_dilation = base_dilation if base_dilation is not None else (1, 1, 1, 1) |
| 379 | kernel_dilation = kernel_dilation if kernel_dilation is not None else (1, 1, 1, 1) |
no outgoing calls
no test coverage detected