cast_kernel.cu 3.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// Copyright (c) 2021 PaddlePaddle 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.

15 16 17
#include "paddle/pten/kernels/cast_kernel.h"

#include "paddle/pten/api/ext/dispatch.h"
18
#include "paddle/pten/backends/gpu/gpu_context.h"
19
#include "paddle/pten/core/kernel_registry.h"
20

21
// See Note [ Why still include the fluid headers? ]
22
#include "paddle/fluid/operators/elementwise/elementwise_op_impl.cu.h"
23
#include "paddle/fluid/platform/aligned_vector.h"
24 25
#include "paddle/fluid/platform/bfloat16.h"
#include "paddle/fluid/platform/device/gpu/gpu_helper.h"
26
#include "paddle/fluid/platform/device/gpu/gpu_launch_config.h"
27 28
#include "paddle/fluid/platform/float16.h"

29 30 31
namespace pten {

template <typename InT, typename OutT>
32 33 34
struct CastFuctor {
  __device__ __forceinline__ OutT operator()(const InT& x) const {
    return static_cast<OutT>(x);
35
  }
36
};
37

38 39 40 41
template <typename InT, typename OutT>
void CastCUDAKernelImpl(const GPUContext& dev_ctx,
                        const DenseTensor& x,
                        DenseTensor* out) {
42 43 44 45 46 47 48
  std::vector<const DenseTensor*> inputs;
  std::vector<DenseTensor*> outputs;
  inputs.emplace_back(&x);
  outputs.emplace_back(out);
  out->mutable_data<OutT>();
  LaunchSameDimsElementwiseCudaKernel<ElementwiseType::kUnary, InT, OutT>(
      dev_ctx, inputs, &outputs, CastFuctor<InT, OutT>());
49 50
}

51 52 53 54 55
template <typename T, typename Context>
void CastKernel(const Context& dev_ctx,
                const DenseTensor& x,
                DataType out_dtype,
                DenseTensor* out) {
56 57 58 59
  PD_VISIT_ALL_TYPES(out_dtype, "CastCUDAKernelImpl", ([&] {
                       CastCUDAKernelImpl<T, data_t>(dev_ctx, x, out);
                     }));
}
60 61

}  // namespace pten
62 63 64 65 66

#define PTEN_REGISTER_CAST_CUDA_BASE_TYPE(op_name, ...)     \
  PT_REGISTER_CTX_KERNEL(cast,                              \
                         GPU,                               \
                         ALL_LAYOUT,                        \
67
                         pten::CastKernel,                  \
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
                         float,                             \
                         double,                            \
                         int,                               \
                         int64_t,                           \
                         int16_t,                           \
                         bool,                              \
                         uint8_t,                           \
                         paddle::platform::float16,         \
                         paddle::platform::complex<float>,  \
                         paddle::platform::complex<double>, \
                         ##__VA_ARGS__) {                   \
    kernel->OutputAt(0).SetDataType(                        \
        paddle::experimental::DataType::UNDEFINED);         \
  }

#if !defined(PADDLE_WITH_HIP)
PTEN_REGISTER_CAST_CUDA_BASE_TYPE(cast, paddle::platform::bfloat16)
#else
PTEN_REGISTER_CAST_CUDA_BASE_TYPE(cast)
#endif