(self, input)
| 323 | """ |
| 324 | |
| 325 | def _check_input_dim(self, input): |
| 326 | if input.dim() != 5: |
| 327 | raise ValueError('expected 5D input (got {}D input)' |
| 328 | .format(input.dim())) |
| 329 | super(SynchronizedBatchNorm3d, self)._check_input_dim(input) |
nothing calls this directly
no test coverage detected