/* 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. ==============================================================================*/ #if GOOGLE_CUDA #define EIGEN_USE_GPU #include "tensorflow/core/kernels/multinomial_op.h" #include #include #include "third_party/eigen3/unsupported/Eigen/CXX11/Tensor" #include "tensorflow/core/framework/tensor_types.h" #include "tensorflow/core/kernels/random_op.h" #include "tensorflow/core/lib/random/philox_random.h" #include "tensorflow/core/lib/random/random_distributions.h" #include "tensorflow/core/util/cuda_kernel_helper.h" namespace tensorflow { namespace functor { using GPUDevice = Eigen::GpuDevice; // Kernel for Multinomial op. Data is interpreted to have the following shapes: // scores: [B, S, C]; maxima: [B, S]; output: [B, S]. template __global__ void MultinomialKernel(int32 nthreads, const int32 num_classes, const int32 num_samples, const float* scores, const float* maxima, OutputType* output) { CUDA_1D_KERNEL_LOOP(index, nthreads) { const int maxima_idx = index / num_classes; if (ldg(maxima + maxima_idx) == ldg(scores + index)) { using UnsignedOutputType = typename std::make_unsigned::type; CudaAtomicMax(reinterpret_cast(output + maxima_idx), static_cast(index % num_classes)); } } } template struct MultinomialFunctor { void operator()(OpKernelContext* ctx, const GPUDevice& d, typename TTypes::ConstMatrix logits, typename TTypes::Flat noises, typename TTypes::Flat scores, typename TTypes::Flat maxima, int batch_size, int num_classes, int num_samples, const random::PhiloxRandom& gen, typename TTypes::Matrix output) { // Uniform, [0, 1). typedef random::UniformDistribution Dist; functor::FillPhiloxRandom()(ctx, d, gen, noises.data(), noises.size(), Dist()); #if defined(EIGEN_HAS_INDEX_LIST) Eigen::IndexList> kTwo; Eigen::IndexList bsc; bsc.set(0, batch_size); bsc.set(1, num_samples); bsc.set(2, num_classes); Eigen::IndexList, int> boc; boc.set(0, batch_size); boc.set(2, num_classes); Eigen::IndexList, int, Eigen::type2index<1>> oso; oso.set(1, num_samples); #else Eigen::array kTwo{2}; Eigen::array bsc{batch_size, num_samples, num_classes}; Eigen::array boc{batch_size, 1, num_classes}; Eigen::array oso{1, num_samples, 1}; #endif // Calculates "scores = logits - log(-log(noises))"; B*C*S elements. // NOTE: we don't store back to "noises" because having it appear on both // sides is potentially unsafe (e.g. Eigen may use ldg() to load RHS data). // 2e-30 is chosen so as to be small enough to only change 0 -> 2e-30 while // not affect any of the other numbers (smallest is ~1e-7), but not so small // that log(x) == -inf, which is why it needs to be larger than 0 in the // first place. To32Bit(scores).device(d) = To32Bit(logits).reshape(boc).broadcast(oso).template cast() - ((-((To32Bit(noises) + 2e-30f).log())).log()); // Max-reduce along classes for each (batch, sample). To32Bit(maxima).device(d) = To32Bit(scores).reshape(bsc).maximum(kTwo); // Necessary for atomicMax() inside the kernel. output.device(d) = output.constant(0LL); const int32 work_items = batch_size * num_samples * num_classes; CudaLaunchConfig config = GetCudaLaunchConfig(work_items, d); MultinomialKernel<<>>(config.virtual_thread_count, num_classes, num_samples, scores.data(), maxima.data(), output.data()); } }; // Explicit instantiation of the GPU functors. template struct MultinomialFunctor; template struct MultinomialFunctor; template struct MultinomialFunctor; template struct MultinomialFunctor; template struct MultinomialFunctor; template struct MultinomialFunctor; template struct MultinomialFunctor; template struct MultinomialFunctor; template struct MultinomialFunctor; template struct MultinomialFunctor; } // namespace functor } // namespace tensorflow #endif // GOOGLE_CUDA