/* 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. ==============================================================================*/ #ifndef TENSORFLOW_CORE_KERNELS_GATHER_FUNCTOR_GPU_CU_H_ #define TENSORFLOW_CORE_KERNELS_GATHER_FUNCTOR_GPU_CU_H_ #if GOOGLE_CUDA #define EIGEN_USE_GPU #include "tensorflow/core/framework/register_types.h" #include "tensorflow/core/kernels/gather_functor.h" #include "tensorflow/core/platform/types.h" #include "tensorflow/core/util/cuda_kernel_helper.h" namespace tensorflow { typedef Eigen::GpuDevice GPUDevice; template __global__ void GatherOpKernel(const T* params, const Index* indices, T* out, int64 gather_dim_size, int64 indices_size, int64 slice_size, int64 out_size) { CUDA_1D_KERNEL_LOOP(i, out_size) { Index batch_i = 0; Index indices_i = 0; Index slice_i = 0; if (is_axis_zero) { indices_i = i / slice_size; slice_i = i - indices_i * slice_size; } else { Index batch_indices_i = i / slice_size; // The batch index into params to use for i. batch_i = batch_indices_i / indices_size; // The index into indices to use for i. indices_i = batch_indices_i - batch_i * indices_size; // Index into the current slice in params to use for i. slice_i = i - batch_indices_i * slice_size; } // Index into the gather axis to use for i. Index gather_i = ldg(indices + indices_i); // Check gather_i is in [0, gather_dim_size). if (!FastBoundsCheck(gather_i, gather_dim_size)) { // Set indices out of range to zero // TODO(fpmc): Log an error for transfer back to host. out[i] = T(0); } else { // params is a [batch_size, gather_dim_size, slice_size] tensor. Read // params[batch_i, gather_i, slice_i] and write it to the i'th position in // out. Index params_i = (batch_i * gather_dim_size + gather_i) * slice_size + slice_i; out[i] = ldg(params + params_i); } } } namespace functor { template struct GatherFunctor { int64 operator()(OpKernelContext* ctx, typename TTypes::ConstTensor params, typename TTypes::ConstFlat indices, typename TTypes::Tensor out) { const GPUDevice& d = ctx->eigen_gpu_device(); const int64 out_size = out.size(); if (out_size == 0) { // We need a check here since the CPU version does useful error checking // work if there are nonempty indices but empty slices, so the kernel is // executed in that case. In the GPU case we don't know how to do error // checking, so we skip the loop entirely. return -1; } const bool is_axis_zero = params.dimension(0) == 1; const int64 gather_dim_size = params.dimension(1); const int64 indices_size = indices.size(); const int64 slice_size = params.dimension(2); CudaLaunchConfig config = GetCudaLaunchConfig(out_size, d); if (is_axis_zero) { // clang-format off GatherOpKernel <<>>( params.data(), indices.data(), out.data(), gather_dim_size, indices_size, slice_size, out_size); // clang-format on } else { // clang-format off GatherOpKernel <<>>( params.data(), indices.data(), out.data(), gather_dim_size, indices_size, slice_size, out_size); // clang-format on } // TODO(fpmc): enable indices validation on GPU. // Right now checking for indicies out of bound in the kernel would // require copying code between GPU/CPU, and thus slow. return -1; } }; } // namespace functor } // namespace tensorflow #endif // GOOGLE_CUDA #endif // TENSORFLOW_CORE_KERNELS_GATHER_FUNCTOR_GPU_CU_H_