| 73 | typename OutputKernel = const Eigen::NoOpOutputKernel> |
| 74 | struct SpatialConvolution { |
| 75 | void operator()(const Device& d, typename TTypes<T, 4>::Tensor output, |
| 76 | typename TTypes<T, 4>::ConstTensor input, |
| 77 | typename TTypes<T, 4>::ConstTensor filter, int row_stride, |
| 78 | int col_stride, int row_dilation, int col_dilation, |
| 79 | const Eigen::PaddingType& padding, |
| 80 | const OutputKernel& output_kernel = OutputKernel()) { |
| 81 | SpatialConvolutionFunc(d, output, input, filter, row_stride, col_stride, |
| 82 | row_dilation, col_dilation, padding, output_kernel); |
| 83 | } |
| 84 | void operator()(const Device& d, typename TTypes<T, 4>::Tensor output, |
| 85 | typename TTypes<T, 4>::ConstTensor input, |
| 86 | typename TTypes<T, 4>::ConstTensor filter, int row_stride, |
nothing calls this directly
no test coverage detected