/* 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. ==============================================================================*/ // See docs in ../ops/array_ops.cc. #define EIGEN_USE_THREADS #include #include #include #include "tensorflow/core/kernels/spacetobatch_functor.h" #include "third_party/eigen3/unsupported/Eigen/CXX11/Tensor" #include "tensorflow/core/framework/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/framework/tensor_shape.h" #include "tensorflow/core/framework/tensor_types.h" #include "tensorflow/core/framework/types.h" #include "tensorflow/core/platform/logging.h" #include "tensorflow/core/platform/types.h" namespace tensorflow { typedef Eigen::ThreadPoolDevice CPUDevice; typedef Eigen::GpuDevice GPUDevice; template static void BatchToSpaceOpCompute(OpKernelContext* context, const Tensor& orig_input_tensor, const Tensor& orig_block_shape, const Tensor& orig_crops) { const int input_dims = orig_input_tensor.dims(); OP_REQUIRES( context, TensorShapeUtils::IsVector(orig_block_shape.shape()), errors::InvalidArgument("block_shape rank should be 1 instead of ", orig_block_shape.dims())); const int block_dims = orig_block_shape.dim_size(0); OP_REQUIRES( context, orig_input_tensor.dims() >= 1 + block_dims, errors::InvalidArgument("input rank should be >= ", 1 + block_dims, " instead of ", orig_input_tensor.dims())); OP_REQUIRES(context, TensorShapeUtils::IsMatrix(orig_crops.shape()) && block_dims == orig_crops.dim_size(0) && 2 == orig_crops.dim_size(1), errors::InvalidArgument("crops should have shape [", block_dims, ", 2] instead of ", orig_crops.shape().DebugString())); // To avoid out-of-bounds access in the case that the block_shape and/or // crops tensors are concurrently modified, we must copy the values. gtl::InlinedVector block_shape; gtl::InlinedVector crops; internal::spacetobatch::SubtleMustCopyFlat(orig_block_shape, &block_shape); internal::spacetobatch::SubtleMustCopyFlat(orig_crops, &crops); // Determine the length of the prefix of block dims that can be combined // into the batch dimension due to having no padding and block_shape=1. int removed_prefix_block_dims = 0; for (; removed_prefix_block_dims < block_dims; ++removed_prefix_block_dims) { const int dim = removed_prefix_block_dims; if (crops[2 * dim] != 0 || crops[2 * dim + 1] != 0 || block_shape[dim] != 1) { break; } } // Determine the length of the suffix of block dims that can be combined // into the depth dimension due to having no padding and block_shape=1. int removed_suffix_block_dims = 0; for (; removed_suffix_block_dims < block_dims - removed_prefix_block_dims; ++removed_suffix_block_dims) { const int dim = block_dims - 1 - removed_suffix_block_dims; if (crops[2 * dim] != 0 || crops[2 * dim + 1] != 0 || block_shape[dim] != 1) { break; } } // Compute the product of the block_shape values. int64 block_shape_product = 1; for (int block_dim = 0; block_dim < block_dims; ++block_dim) { block_shape_product *= block_shape[block_dim]; } OP_REQUIRES( context, block_shape_product > 0, errors::InvalidArgument("Product of block sizes must be positive, got ", block_shape_product)); const int64 orig_input_batch_size = orig_input_tensor.dim_size(0); OP_REQUIRES( context, orig_input_batch_size % block_shape_product == 0, errors::InvalidArgument("Input batch dimension (", orig_input_batch_size, ") is not divisible by product of block sizes (", block_shape_product, ")")); const int internal_block_dims = block_dims - removed_prefix_block_dims - removed_suffix_block_dims; OP_REQUIRES(context, internal_block_dims <= kMaxSpaceToBatchBlockDims, errors::InvalidArgument( "Maximum number of non-combined block dimensions is ", internal_block_dims, " but must not exceed ", kMaxSpaceToBatchBlockDims)); if (internal_block_dims == 0) { context->set_output(0, orig_input_tensor); return; } // For the purpose of computing the result, the input will be treated as // having this shape, of rank 2 + internal_block_dims. TensorShape internal_input_shape; // For the purpose of computing the result, the output will be treated as // having this shape, of rank 2 + internal_block_dims. TensorShape internal_output_shape; // The actual output shape exposed to callers. TensorShape external_output_shape; external_output_shape.AddDim(orig_input_batch_size / block_shape_product); int64 input_batch_size = orig_input_batch_size; for (int block_dim = 0; block_dim < removed_prefix_block_dims; ++block_dim) { const int64 size = orig_input_tensor.dim_size(block_dim + 1); input_batch_size *= size; external_output_shape.AddDim(size); } internal_input_shape.AddDim(input_batch_size); internal_output_shape.AddDim(input_batch_size / block_shape_product); for (int block_dim = removed_prefix_block_dims; block_dim < block_dims - removed_suffix_block_dims; ++block_dim) { const int64 crop_start = crops[2 * block_dim], crop_end = crops[2 * block_dim + 1]; OP_REQUIRES(context, crop_start >= 0 && crop_end >= 0, errors::InvalidArgument("Crops must be non-negative")); const int64 input_size = orig_input_tensor.dim_size(block_dim + 1); const int64 block_shape_value = block_shape[block_dim]; const int64 cropped_size = input_size * block_shape_value - crop_start - crop_end; OP_REQUIRES(context, cropped_size >= 0, errors::InvalidArgument("cropped_shape[", block_dim, "]=", cropped_size, " must be non-negative")); internal_input_shape.AddDim(input_size); internal_output_shape.AddDim(cropped_size); external_output_shape.AddDim(cropped_size); } int64 depth = 1; for (int dim = block_dims - removed_suffix_block_dims + 1; dim < input_dims; ++dim) { const int64 size = orig_input_tensor.dim_size(dim); external_output_shape.AddDim(size); depth *= size; } internal_input_shape.AddDim(depth); internal_output_shape.AddDim(depth); // Allocate output tensor. Tensor* output_tensor = nullptr; OP_REQUIRES_OK(context, context->allocate_output(0, external_output_shape, &output_tensor)); const int64* internal_crops = &crops[2 * removed_prefix_block_dims]; const int64* internal_block_shape = &block_shape[removed_prefix_block_dims]; switch (internal_block_dims) { #define TF_BATCHTOSPACE_BLOCK_DIMS_CASE(NUM_BLOCK_DIMS) \ case NUM_BLOCK_DIMS: { \ OP_REQUIRES_OK( \ context, \ (functor::SpaceToBatchFunctor()( \ context->eigen_device(), \ output_tensor->shaped( \ internal_output_shape.dim_sizes()), \ internal_block_shape, internal_crops, \ orig_input_tensor.shaped( \ internal_input_shape.dim_sizes())))); \ } break; \ /**/ TF_SPACETOBATCH_FOR_EACH_NUM_BLOCK_DIMS(TF_BATCHTOSPACE_BLOCK_DIMS_CASE) #undef TF_BATCHTOSPACE_BLOCK_DIMS_CASE } } template class BatchToSpaceNDOp : public OpKernel { public: explicit BatchToSpaceNDOp(OpKernelConstruction* context) : OpKernel(context) {} void Compute(OpKernelContext* context) override { const Tensor& orig_input_tensor = context->input(0); const Tensor& orig_block_shape = context->input(1); const Tensor& orig_crops = context->input(2); BatchToSpaceOpCompute(context, orig_input_tensor, orig_block_shape, orig_crops); } }; template class BatchToSpaceOp : public OpKernel { public: explicit BatchToSpaceOp(OpKernelConstruction* context) : OpKernel(context) { OP_REQUIRES_OK(context, context->GetAttr("block_size", &block_size_)); OP_REQUIRES( context, block_size_ > 1, errors::InvalidArgument("Block size should be > 1: ", block_size_)); // We don't use context->allocate_persistent because the allocation must // happen on the CPU regardless of Device. block_shape_ = Tensor(tensorflow::DT_INT64, TensorShape({2})); auto block_shape_vec = block_shape_.vec(); block_shape_vec(0) = block_size_; block_shape_vec(1) = block_size_; } void Compute(OpKernelContext* context) override { const Tensor& in0 = context->input(0); const Tensor& in1 = context->input(1); const int dims = in0.dims(); // Check on the input dimensions first. // The input is presumed to be [batch, height, width, depth] static const int kRequiredDims = 4; OP_REQUIRES(context, kRequiredDims == dims, errors::InvalidArgument("Input rank should be: ", kRequiredDims, "instead of: ", dims)); BatchToSpaceOpCompute(context, in0, block_shape_, in1); } private: int block_size_; Tensor block_shape_; }; #define REGISTER(T) \ REGISTER_KERNEL_BUILDER(Name("BatchToSpaceND") \ .Device(DEVICE_CPU) \ .TypeConstraint("T") \ .HostMemory("block_shape") \ .HostMemory("crops"), \ BatchToSpaceNDOp); \ REGISTER_KERNEL_BUILDER(Name("BatchToSpace") \ .Device(DEVICE_CPU) \ .TypeConstraint("T") \ .HostMemory("crops"), \ BatchToSpaceOp); TF_CALL_REAL_NUMBER_TYPES(REGISTER); #undef REGISTER #if GOOGLE_CUDA #define REGISTER(T) \ REGISTER_KERNEL_BUILDER(Name("BatchToSpaceND") \ .Device(DEVICE_GPU) \ .TypeConstraint("T") \ .HostMemory("block_shape") \ .HostMemory("crops"), \ BatchToSpaceNDOp); \ REGISTER_KERNEL_BUILDER(Name("BatchToSpace") \ .Device(DEVICE_GPU) \ .TypeConstraint("T") \ .HostMemory("crops"), \ BatchToSpaceOp); TF_CALL_GPU_NUMBER_TYPES(REGISTER); #undef REGISTER #endif // GOOGLE_CUDA } // end namespace tensorflow