complex_kernel_impl.h 1.2 KB
Newer Older
C
chentianyu03 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// 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.

#pragma once

C
Chen Weihang 已提交
17
// See Note [ Why still include the fluid headers? ]
C
chentianyu03 已提交
18 19 20 21 22
#include "paddle/fluid/operators/math/complex_functors.h"
#include "paddle/fluid/platform/for_range.h"

namespace pten {

23
template <typename T, typename Context>
24
void ConjKernel(const Context& dev_ctx,
25 26
                const DenseTensor& x,
                DenseTensor* out) {
C
chentianyu03 已提交
27 28
  auto numel = x.numel();
  auto* x_data = x.data<T>();
29
  auto* out_data = out->mutable_data<T>(dev_ctx.GetPlace());
C
chentianyu03 已提交
30

31
  paddle::platform::ForRange<Context> for_range(dev_ctx, numel);
C
chentianyu03 已提交
32 33 34 35 36
  paddle::operators::math::ConjFunctor<T> functor(x_data, numel, out_data);
  for_range(functor);
}

}  // namespace pten