/* 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/image_ops.cc. #if GOOGLE_CUDA #define EIGEN_USE_GPU #include "tensorflow/core/kernels/resize_bilinear_op.h" #include "tensorflow/core/framework/register_types.h" #include "tensorflow/core/framework/tensor_types.h" #include "tensorflow/core/platform/types.h" #include "tensorflow/core/util/cuda_kernel_helper.h" namespace tensorflow { typedef Eigen::GpuDevice GPUDevice; namespace { template __global__ void ResizeBilinearKernel(const int32 nthreads, const T* images, float height_scale, float width_scale, int batch, int in_height, int in_width, int channels, int out_height, int out_width, float* output) { CUDA_1D_KERNEL_LOOP(out_idx, nthreads) { // out_idx = c + channels * (x + out_width * (y + out_height * b)) int idx = out_idx; const int c = idx % channels; idx /= channels; const int x = idx % out_width; idx /= out_width; const int y = idx % out_height; const int b = idx / out_height; const float in_y = y * height_scale; const int top_y_index = floorf(in_y); const int bottom_y_index = (in_y < in_height - 1) ? ceilf(in_y) : in_height - 1; const float y_lerp = in_y - top_y_index; const float in_x = x * width_scale; const int left_x_index = floorf(in_x); const int right_x_index = (in_x < in_width - 1) ? ceilf(in_x) : in_width - 1; const float x_lerp = in_x - left_x_index; const float top_left( images[((b * in_height + top_y_index) * in_width + left_x_index) * channels + c]); const float top_right( images[((b * in_height + top_y_index) * in_width + right_x_index) * channels + c]); const float bottom_left( images[((b * in_height + bottom_y_index) * in_width + left_x_index) * channels + c]); const float bottom_right( images[((b * in_height + bottom_y_index) * in_width + right_x_index) * channels + c]); const float top = top_left + (top_right - top_left) * x_lerp; const float bottom = bottom_left + (bottom_right - bottom_left) * x_lerp; output[out_idx] = top + (bottom - top) * y_lerp; } } template __global__ void ResizeBilinearGradKernel( const int32 nthreads, const float* input_grad, float height_scale, float width_scale, int batch, int original_height, int original_width, int channels, int resized_height, int resized_width, T* output_grad) { CUDA_1D_KERNEL_LOOP(in_idx, nthreads) { // in_idx = c + channels * (x + resized_width * (y + resized_height * b)) int idx = in_idx; const int c = idx % channels; idx /= channels; const int x = idx % resized_width; idx /= resized_width; const int y = idx % resized_height; const int b = idx / resized_height; const float original_y = y * height_scale; const int top_y_index = floorf(original_y); const int bottom_y_index = (original_y < original_height - 1) ? ceilf(original_y) : original_height - 1; const float y_lerp = original_y - top_y_index; const float original_x = x * width_scale; const int left_x_index = floorf(original_x); const int right_x_index = (original_x < original_width - 1) ? ceilf(original_x) : original_width - 1; const float x_lerp = original_x - left_x_index; const float dtop = (1 - y_lerp) * input_grad[in_idx]; CudaAtomicAdd(output_grad + ((b * original_height + top_y_index) * original_width + left_x_index) * channels + c, static_cast((1 - x_lerp) * dtop)); CudaAtomicAdd(output_grad + ((b * original_height + top_y_index) * original_width + right_x_index) * channels + c, static_cast(x_lerp * dtop)); const float dbottom = y_lerp * input_grad[in_idx]; CudaAtomicAdd(output_grad + ((b * original_height + bottom_y_index) * original_width + left_x_index) * channels + c, static_cast((1 - x_lerp) * dbottom)); CudaAtomicAdd(output_grad + ((b * original_height + bottom_y_index) * original_width + right_x_index) * channels + c, static_cast(x_lerp * dbottom)); } } } // namespace namespace functor { // Partial specialization of ResizeBilinear functor for a GPUDevice. template struct ResizeBilinear { void operator()(const GPUDevice& d, typename TTypes::ConstTensor images, const float height_scale, const float width_scale, typename TTypes::Tensor output) { const int batch = images.dimension(0); const int in_height = images.dimension(1); const int in_width = images.dimension(2); const int channels = images.dimension(3); const int out_height = output.dimension(1); const int out_width = output.dimension(2); const int total_count = batch * out_height * out_width * channels; if (total_count == 0) return; CudaLaunchConfig config = GetCudaLaunchConfig(total_count, d); ResizeBilinearKernel <<>>( config.virtual_thread_count, images.data(), height_scale, width_scale, batch, in_height, in_width, channels, out_height, out_width, output.data()); } }; // Partial specialization of ResizeBilinearGrad functor for a GPUDevice. template struct ResizeBilinearGrad { void operator()(const GPUDevice& d, typename TTypes::ConstTensor input_grad, const float height_scale, const float width_scale, typename TTypes::Tensor output_grad) { const int batch = output_grad.dimension(0); const int original_height = output_grad.dimension(1); const int original_width = output_grad.dimension(2); const int channels = output_grad.dimension(3); const int resized_height = input_grad.dimension(1); const int resized_width = input_grad.dimension(2); int total_count; CudaLaunchConfig config; // Initialize output_grad with all zeros. total_count = batch * original_height * original_width * channels; if (total_count == 0) return; config = GetCudaLaunchConfig(total_count, d); SetZero<<>>( config.virtual_thread_count, output_grad.data()); // Accumulate. total_count = batch * resized_height * resized_width * channels; config = GetCudaLaunchConfig(total_count, d); ResizeBilinearGradKernel <<>>( config.virtual_thread_count, input_grad.data(), height_scale, width_scale, batch, original_height, original_width, channels, resized_height, resized_width, output_grad.data()); } }; #define DEFINE_GPU_SPECS(T) \ template struct ResizeBilinear; \ template struct ResizeBilinearGrad; TF_CALL_GPU_NUMBER_TYPES_NO_HALF(DEFINE_GPU_SPECS); #undef DEFINE_GPU_SPECS } // namespace functor } // namespace tensorflow #endif // GOOGLE_CUDA