/* Copyright 2015 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. ==============================================================================*/ // See docs in ../ops/image_ops.cc. #define USE_EIGEN_TENSOR #define EIGEN_USE_THREADS #include "tensorflow/core/kernels/extract_image_patches_op.h" #include #include "tensorflow/core/framework/numeric_op.h" #include "tensorflow/core/framework/op_kernel.h" #include "tensorflow/core/framework/register_types.h" #include "tensorflow/core/framework/tensor.h" #include "tensorflow/core/kernels/bounds_check.h" #include "tensorflow/core/kernels/ops_util.h" #include "tensorflow/core/lib/core/errors.h" #include "tensorflow/core/platform/logging.h" #include "tensorflow/core/platform/macros.h" #include "tensorflow/core/util/tensor_format.h" namespace tensorflow { typedef Eigen::ThreadPoolDevice CPUDevice; typedef Eigen::GpuDevice GPUDevice; static inline void ParseAttributeVec4(OpKernelConstruction* context, const string& attr_name, std::vector* attr) { OP_REQUIRES_OK(context, context->GetAttr(attr_name, attr)); OP_REQUIRES( context, (*attr)[0] == 1 && (*attr)[3] == 1, errors::Unimplemented("Only support ", attr_name, " across space.")); OP_REQUIRES(context, (*attr)[1] >= 1 && (*attr)[2] >= 1, errors::OutOfRange(attr_name, " is out of range.")); } template class ExtractImagePatchesOp : public UnaryOp { public: explicit ExtractImagePatchesOp(OpKernelConstruction* context) : UnaryOp(context) { ParseAttributeVec4(context, "ksizes", &ksizes_); ParseAttributeVec4(context, "strides", &strides_); ParseAttributeVec4(context, "rates", &rates_); OP_REQUIRES_OK(context, context->GetAttr("padding", &padding_)); } void Compute(OpKernelContext* context) override { // Input tensor is of the following dimensions: // [ batch, in_rows, in_cols, channels ] const Tensor& input = context->input(0); OP_REQUIRES(context, input.dims() == 4, errors::InvalidArgument("input must be 4-dimensional", input.shape().DebugString())); const int batch = input.dim_size(0); const int in_rows = input.dim_size(1); const int in_cols = input.dim_size(2); const int depth = input.dim_size(3); const int ksize_rows = ksizes_[1]; const int ksize_cols = ksizes_[2]; const int stride_rows = strides_[1]; const int stride_cols = strides_[2]; const int rate_rows = rates_[1]; const int rate_cols = rates_[2]; const int ksize_rows_eff = ksize_rows + (ksize_rows - 1) * (rate_rows - 1); const int ksize_cols_eff = ksize_cols + (ksize_cols - 1) * (rate_cols - 1); int64 out_rows = 0, out_cols = 0; int64 pad_rows = 0, pad_cols = 0; OP_REQUIRES_OK(context, GetWindowedOutputSize(in_rows, ksize_rows_eff, stride_rows, padding_, &out_rows, &pad_rows)); OP_REQUIRES_OK(context, GetWindowedOutputSize(in_cols, ksize_cols_eff, stride_cols, padding_, &out_cols, &pad_cols)); const std::vector out_sizes = {batch, out_rows, out_cols, ksize_rows * ksize_cols * depth}; TensorShape out_shape(out_sizes); Tensor* output = nullptr; OP_REQUIRES_OK(context, context->allocate_output(0, out_shape, &output)); // If there is nothing to compute, return. if (out_shape.num_elements() == 0) { return; } functor::ExtractImagePatchesForward()( context->eigen_device(), input.tensor(), ksize_rows, ksize_cols, stride_rows, stride_cols, rate_rows, rate_cols, BrainPadding2EigenPadding(padding_), output->tensor()); } private: std::vector ksizes_; std::vector strides_; std::vector rates_; Padding padding_; TF_DISALLOW_COPY_AND_ASSIGN(ExtractImagePatchesOp); }; // Registration of the CPU implementations. #define REGISTER(T) \ REGISTER_KERNEL_BUILDER( \ Name("ExtractImagePatches").Device(DEVICE_CPU).TypeConstraint("T"), \ ExtractImagePatchesOp); TF_CALL_REAL_NUMBER_TYPES(REGISTER); #undef REGISTER #if GOOGLE_CUDA // Forward declarations of the functor specializations for GPU. namespace functor { #define DECLARE_GPU_SPEC(T) \ template <> \ void ExtractImagePatchesForward::operator()( \ const GPUDevice& d, typename TTypes::ConstTensor input, \ int patch_rows, int patch_cols, int stride_rows, int stride_cols, \ int rate_rows, int rate_cols, const Eigen::PaddingType& padding, \ typename TTypes::Tensor output); \ extern template struct ExtractImagePatchesForward; TF_CALL_GPU_NUMBER_TYPES(DECLARE_GPU_SPEC); #undef DECLARE_GPU_SPEC } // namespace functor // Registration of the GPU implementations. #define REGISTER(T) \ REGISTER_KERNEL_BUILDER( \ Name("ExtractImagePatches").Device(DEVICE_GPU).TypeConstraint("T"), \ ExtractImagePatchesOp); TF_CALL_GPU_NUMBER_TYPES(REGISTER); #undef REGISTER #endif // GOOGLE_CUDA } // namespace tensorflow