(self, _, padding)
| 1139 | fused=fused) |
| 1140 | |
| 1141 | def _build_op_non_atrous(self, _, padding): |
| 1142 | return _Convolution( |
| 1143 | self.input_shape, |
| 1144 | filter_shape=self.filter_shape, |
| 1145 | padding=padding, |
| 1146 | data_format=self.data_format, |
| 1147 | strides=self.strides, |
| 1148 | name=self.name) |
| 1149 | |
| 1150 | def _build_op_atrous(self, _, padding): |
| 1151 | return _Convolution( |
nothing calls this directly
no test coverage detected