(self, *args, **kwargs)
| 168 | return brew.instance_norm(self, *args, order=self.order, **kwargs) |
| 169 | |
| 170 | def Relu(self, *args, **kwargs): |
| 171 | return brew.relu( |
| 172 | self, *args, order=self.order, use_cudnn=self.use_cudnn, **kwargs |
| 173 | ) |
| 174 | |
| 175 | def PRelu(self, *args, **kwargs): |
| 176 | return brew.prelu(self, *args, **kwargs) |