/* Copyright 2016 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ // Functors for 3d convolution. #ifndef TENSORFLOW_CORE_KERNELS_CONV_3D_H_ #define TENSORFLOW_CORE_KERNELS_CONV_3D_H_ #include "tensorflow/core/framework/tensor_types.h" #include "tensorflow/core/kernels/eigen_backward_cuboid_convolutions.h" #include "tensorflow/core/kernels/eigen_cuboid_convolution.h" namespace tensorflow { namespace functor { // Applies a 3D convolution to a batch of multi-channel volumes. template struct CuboidConvolution; // Backward input pass for the cuboid convolution. template struct CuboidConvolutionBackwardInput; // Backward filter pass for the cuboid convolution. template struct CuboidConvolutionBackwardFilter; typedef Eigen::ThreadPoolDevice CPUDevice; template struct CuboidConvolution { void operator()(const CPUDevice& d, typename TTypes::Tensor output, typename TTypes::ConstTensor input, typename TTypes::ConstTensor filter, int stride_planes, int stride_rows, int stride_cols, const Eigen::PaddingType& padding) { output.device(d) = Eigen::CuboidConvolution( input, filter, stride_planes, stride_rows, stride_cols, padding); } }; template struct CuboidConvolutionBackwardInput { void operator()(const CPUDevice& d, typename TTypes::Tensor input_backward, typename TTypes::ConstTensor filter, typename TTypes::ConstTensor output_backward, int stride_planes, int stride_rows, int stride_cols) { // Need to swap the order of plane/row/col strides when calling Eigen. input_backward.device(d) = Eigen::CuboidConvolutionBackwardInput( filter, output_backward, input_backward.dimension(3), // input_planes input_backward.dimension(2), // input_rows input_backward.dimension(1), // input_cols stride_cols, stride_rows, stride_planes); } }; template struct CuboidConvolutionBackwardFilter { void operator()(const CPUDevice& d, typename TTypes::Tensor filter_backward, typename TTypes::ConstTensor input, typename TTypes::ConstTensor output_backward, int stride_planes, int stride_rows, int stride_cols) { // Need to swap the order of plane/row/col strides when calling Eigen. filter_backward.device(d) = Eigen::CuboidConvolutionBackwardKernel( input, output_backward, filter_backward.dimension(2), // kernel_planes filter_backward.dimension(1), // kernel_rows filter_backward.dimension(0), // kernel_cols stride_cols, stride_rows, stride_planes); } }; } // namespace functor } // namespace tensorflow #endif // TENSORFLOW_CORE_KERNELS_CONV_3D_H_