(self, input)
| 259 | """ |
| 260 | |
| 261 | def _check_input_dim(self, input): |
| 262 | if input.dim() != 4: |
| 263 | raise ValueError('expected 4D input (got {}D input)' |
| 264 | .format(input.dim())) |
| 265 | super(SynchronizedBatchNorm2d, self)._check_input_dim(input) |
| 266 | |
| 267 | |
| 268 | class SynchronizedBatchNorm3d(_SynchronizedBatchNorm): |
nothing calls this directly
no test coverage detected