(self, _, padding)
| 1148 | name=self.name) |
| 1149 | |
| 1150 | def _build_op_atrous(self, _, padding): |
| 1151 | return _Convolution( |
| 1152 | self.input_shape, |
| 1153 | filter_shape=self.filter_shape, |
| 1154 | padding=padding, |
| 1155 | data_format=self.data_format, |
| 1156 | strides=self.strides, |
| 1157 | dilation_rate=self.dilation_rate, |
| 1158 | name=self.name) |
| 1159 | |
| 1160 | def __call__(self, inp, filter): # pylint: disable=redefined-builtin |
| 1161 | # copybara:strip_begin |
nothing calls this directly
no test coverage detected