(self, input)
| 196 | """ |
| 197 | |
| 198 | def _check_input_dim(self, input): |
| 199 | if input.dim() != 2 and input.dim() != 3: |
| 200 | raise ValueError('expected 2D or 3D input (got {}D input)' |
| 201 | .format(input.dim())) |
| 202 | super(SynchronizedBatchNorm1d, self)._check_input_dim(input) |
| 203 | |
| 204 | |
| 205 | class SynchronizedBatchNorm2d(_SynchronizedBatchNorm): |
no outgoing calls
no test coverage detected