/* 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/depthtospace_op.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" #include "tensorflow/core/util/tensor_format.h" namespace tensorflow { typedef Eigen::ThreadPoolDevice CPUDevice; typedef Eigen::GpuDevice GPUDevice; template class DepthToSpaceOp : public OpKernel { public: explicit DepthToSpaceOp(OpKernelConstruction* context) : OpKernel(context) { string data_format_str; OP_REQUIRES_OK(context, context->GetAttr("data_format", &data_format_str)); OP_REQUIRES(context, FormatFromString(data_format_str, &data_format_), errors::InvalidArgument("Invalid data format")); OP_REQUIRES_OK(context, context->GetAttr("block_size", &block_size_)); OP_REQUIRES(context, block_size_ > 1, errors::InvalidArgument("Block size should be > 1, but was: ", block_size_)); if (std::is_same::value) { OP_REQUIRES( context, data_format_ == FORMAT_NHWC, errors::InvalidArgument( "Only NHWC data_format supported on CPU. Got ", data_format_str)); } } void Compute(OpKernelContext* context) override { const Tensor& input = context->input(0); const int dims = input.dims(); // Assuming qint8 <--> NCHW_VECT_C, OIHW_VECT_I (int8x4) here. constexpr bool is_int8x4 = std::is_same::value; OP_REQUIRES(context, (is_int8x4 == (data_format_ == FORMAT_NCHW_VECT_C)), errors::InvalidArgument( "qint8 should be used with data_format NCHW_VECT_C.")); constexpr int kVect = is_int8x4 ? 4 : 1; constexpr int kDims = is_int8x4 ? 5 : 4; OP_REQUIRES(context, kDims == dims, errors::InvalidArgument("Input rank should be: ", kDims, " instead of: ", dims)); constexpr int kNumSpatialDims = 2; const int batch_size = input.dim_size(GetTensorDimIndex(data_format_, 'N')); const int input_height = input.dim_size(GetTensorDimIndex(data_format_, 'H')); const int input_width = input.dim_size(GetTensorDimIndex(data_format_, 'W')); const int input_depth = input.dim_size(GetTensorDimIndex(data_format_, 'C')) * kVect; const int block_size_sq = block_size_ * block_size_; // The depth must be divisible by block_size_ * block_size_ OP_REQUIRES( context, input_depth % block_size_sq == 0, errors::InvalidArgument("Input depth dimension ", input_depth, " should be divisible by: ", block_size_sq)); const int output_depth = input_depth / block_size_sq; const int output_width = input_width * block_size_; const int output_height = input_height * block_size_; // Allocate output tensor. Tensor* outputs_tensor = nullptr; OP_REQUIRES_OK(context, context->allocate_output( 0, ShapeFromFormat(data_format_, batch_size, output_height, output_width, output_depth), &outputs_tensor)); auto Tinput = input.tensor(); auto Toutput = outputs_tensor->tensor(); if (std::is_same::value) { if (is_int8x4) { // NCHW_VECT_C with 4 x qint8 can be treated as NCHW int32. auto Tinput_v = input.template reinterpret_last_dimension(); auto Toutput_v = outputs_tensor->reinterpret_last_dimension(); functor::DepthToSpaceOpFunctor functor; functor(context->eigen_device(), Tinput_v, block_size_, Toutput_v); return; } else if (data_format_ == FORMAT_NCHW) { functor::DepthToSpaceOpFunctor functor; functor(context->eigen_device(), Tinput, block_size_, Toutput); return; } } // NOTE: Assumes data_format_ == FORMAT_NHWC here, since we have rejected // (CPU && data_format_ != FORMAT_NHWC) in the constructor. if (!is_int8x4) { functor::DepthToSpaceOpFunctor functor; functor(context->eigen_device(), Tinput, block_size_, Toutput); } }; private: int block_size_; TensorFormat data_format_; }; // Partial specialization of DepthToSpaceOpFunctor for a CPUDevice // with FORMAT_NHWC. namespace functor { template struct DepthToSpaceOpFunctor { void operator()(const CPUDevice& d, typename TTypes::ConstTensor input, int block_size, typename TTypes::Tensor output) { const int batch_size = output.dimension(0); const int output_height = output.dimension(1); const int output_width = output.dimension(2); const int output_depth = output.dimension(3); for (int b = 0; b < batch_size; ++b) { for (int h = 0; h < output_height; ++h) { const int in_h = h / block_size; const int offset_h = (h % block_size); for (int w = 0; w < output_width; ++w) { const int in_w = w / block_size; const int offset_w = (w % block_size); const int offset_d = (offset_h * block_size + offset_w) * output_depth; for (int d = 0; d < output_depth; ++d) { const int in_d = d + offset_d; output(b, h, w, d) = input(b, in_h, in_w, in_d); } } } } } }; } // namespace functor #define REGISTER(type) \ REGISTER_KERNEL_BUILDER( \ Name("DepthToSpace").Device(DEVICE_CPU).TypeConstraint("T"), \ DepthToSpaceOp); TF_CALL_ALL_TYPES(REGISTER); #undef REGISTER #if GOOGLE_CUDA REGISTER_KERNEL_BUILDER( Name("DepthToSpace").Device(DEVICE_GPU).TypeConstraint("T"), DepthToSpaceOp); REGISTER_KERNEL_BUILDER( Name("DepthToSpace").Device(DEVICE_GPU).TypeConstraint("T"), DepthToSpaceOp); REGISTER_KERNEL_BUILDER( Name("DepthToSpace").Device(DEVICE_GPU).TypeConstraint("T"), DepthToSpaceOp); #endif // GOOGLE_CUDA } // end namespace tensorflow