(self, *args, **kwargs)
| 87 | ) |
| 88 | |
| 89 | def Conv(self, *args, **kwargs): |
| 90 | return brew.conv( |
| 91 | self, |
| 92 | *args, |
| 93 | use_cudnn=self.use_cudnn, |
| 94 | order=self.order, |
| 95 | cudnn_exhaustive_search=self.cudnn_exhaustive_search, |
| 96 | ws_nbytes_limit=self.ws_nbytes_limit, |
| 97 | **kwargs |
| 98 | ) |
| 99 | |
| 100 | def ConvTranspose(self, *args, **kwargs): |
| 101 | return brew.conv_transpose( |