math.h 2.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* 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

// See Note: [ How do we organize the kernel directory ]
18
#include "paddle/pten/api/lib/utils/storage.h"
19
#include "paddle/pten/include/infermeta.h"
C
Chen Weihang 已提交
20
#include "paddle/pten/kernels/complex_kernel.h"
21
#include "paddle/pten/kernels/scale_kernel.h"
22 23 24 25 26

namespace pten {

template <typename T, typename ContextT>
DenseTensor Sign(const ContextT& dev_ctx, const DenseTensor& x) {
27
  auto out_meta = UnchangedInferMeta(x.meta());
28 29 30 31
  pten::DenseTensor dense_out(
      pten::make_intrusive<paddle::experimental::SharedStorage>(
          dev_ctx.GetPlace()),
      std::move(out_meta));
32 33 34 35 36 37 38
  Sign<T>(dev_ctx, x, &dense_out);
  return dense_out;
}

template <typename T, typename ContextT>
DenseTensor Scale(const ContextT& dev_ctx,
                  const DenseTensor& x,
C
Chen Weihang 已提交
39
                  const Scalar& scale,
40 41
                  float bias,
                  bool bias_after_scale) {
42
  auto out_meta = UnchangedInferMeta(x.meta());
43 44 45 46
  pten::DenseTensor dense_out(
      pten::make_intrusive<paddle::experimental::SharedStorage>(
          dev_ctx.GetPlace()),
      std::move(out_meta));
47
  Scale<T, ContextT>(dev_ctx, x, scale, bias, bias_after_scale, &dense_out);
48 49 50
  return dense_out;
}

C
chentianyu03 已提交
51 52 53 54 55 56 57 58 59 60 61
template <typename T, typename ContextT>
DenseTensor Conj(const ContextT& dev_ctx, const DenseTensor& x) {
  auto out_meta = UnchangedInferMeta(x.meta());
  pten::DenseTensor dense_out(
      pten::make_intrusive<paddle::experimental::SharedStorage>(
          dev_ctx.GetPlace()),
      std::move(out_meta));
  Conj<T>(dev_ctx, x, &dense_out);
  return dense_out;
}

62
}  // namespace pten