(self, inp)
| 798 | ) |
| 799 | |
| 800 | def forward(self, inp): |
| 801 | return local_conv2d( |
| 802 | inp, |
| 803 | self.weight, |
| 804 | None, |
| 805 | self.stride, |
| 806 | self.padding, |
| 807 | self.dilation, |
| 808 | self.conv_mode, |
| 809 | ) |
| 810 | |
| 811 | |
| 812 | class ConvRelu2d(Conv2d): |
nothing calls this directly
no test coverage detected