dot_kernel.cu 2.1 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
#include "paddle/phi/kernels/dot_kernel.h"

17 18 19
#include "paddle/phi/backends/gpu/gpu_context.h"
#include "paddle/phi/core/kernel_registry.h"
#include "paddle/phi/kernels/funcs/eigen/common.h"
20 21

// See Note [ Why still include the fluid headers? ]
22
#include "paddle/phi/common/complex.h"
23
#include "paddle/phi/kernels/funcs/eigen/eigen_function.h"
24

25
namespace phi {
26

27
template <typename T, typename Context>
28 29 30 31
void DotKernel(const Context& dev_ctx,
               const DenseTensor& x,
               const DenseTensor& y,
               DenseTensor* out) {
32
  dev_ctx.template Alloc<T>(out);
33
  if (1 == out->dims().size()) {
34 35 36
    auto eigen_out = phi::EigenScalar<T>::From(*out);
    auto eigen_x = phi::EigenVector<T>::Flatten(x);
    auto eigen_y = phi::EigenVector<T>::Flatten(y);
37 38 39 40

    auto& dev = *dev_ctx.eigen_device();
    eigen_out.device(dev) = (eigen_x * eigen_y).sum();
  } else {
41 42 43
    auto eigen_out = phi::EigenMatrix<T>::From(*out);
    auto eigen_x = phi::EigenMatrix<T>::From(x);
    auto eigen_y = phi::EigenMatrix<T>::From(y);
44 45 46 47 48 49

    auto& dev = *dev_ctx.eigen_device();
    eigen_out.device(dev) = (eigen_x * eigen_y).sum(Eigen::DSizes<int, 1>(1));
  }
}

50
}  // namespace phi
51

52 53
using complex64 = ::phi::dtype::complex<float>;
using complex128 = ::phi::dtype::complex<double>;
54

55
PD_REGISTER_KERNEL(dot,
56 57
                   GPU,
                   ALL_LAYOUT,
58
                   phi::DotKernel,
59 60 61 62 63 64
                   float,
                   double,
                   int,
                   int64_t,
                   complex64,
                   complex128) {}