elementwise_functor.h 2.8 KB
Newer Older
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

17 18 19
#include "paddle/phi/common/float16.h"
#include "paddle/phi/core/enforce.h"
#include "paddle/phi/core/hostdevice.h"
20

21
namespace phi {
22 23 24
namespace funcs {

// Define the binary functors used in elementwise ops.
25
// Note: InverseXxxFunctor is needed when calling ElementwiseComputeEx on CPU.
26 27 28 29

// Add
template <typename T>
struct AddFunctor {
30
  inline HOSTDEVICE T operator()(const T a, const T b) const { return a + b; }
31 32 33
};
template <typename T>
struct InverseAddFunctor {
34
  inline HOSTDEVICE T operator()(const T a, const T b) const { return b + a; }
35 36 37 38 39
};

// Subtract
template <typename T>
struct SubtractFunctor {
40
  inline HOSTDEVICE T operator()(const T a, const T b) const { return a - b; }
41 42 43
};
template <typename T>
struct InverseSubtractFunctor {
44
  inline HOSTDEVICE T operator()(const T a, const T b) const { return b - a; }
45 46 47 48 49
};

// Multiply
template <typename T>
struct MultiplyFunctor {
50
  inline HOSTDEVICE T operator()(const T a, const T b) const { return a * b; }
51
};
52 53 54 55 56 57
template <>
struct MultiplyFunctor<bool> {
  inline HOSTDEVICE bool operator()(const bool a, const bool b) const {
    return a && b;
  }
};
58 59
template <typename T>
struct InverseMultiplyFunctor {
60
  inline HOSTDEVICE T operator()(const T a, const T b) const { return b * a; }
61
};
62 63 64 65 66 67
template <>
struct InverseMultiplyFunctor<bool> {
  inline HOSTDEVICE bool operator()(const bool a, const bool b) const {
    return b && a;
  }
};
68 69 70 71 72 73 74 75

// Divide
#define DIV_ERROR_INFO                                             \
  "InvalidArgumentError: Integer division by zero encountered in " \
  "(floor) divide. Please check the input value."

template <typename T, typename Enable = void>
struct DivideFunctor {
76
  inline HOSTDEVICE T operator()(const T a, const T b) const { return a / b; }
77 78 79 80 81 82
};

template <typename T>
struct DivideFunctor<
    T,
    typename std::enable_if<std::is_integral<T>::value>::type> {
83
  inline HOSTDEVICE T operator()(const T a, const T b) const {
84 85 86 87 88 89 90 91
    // For int32/int64, need to check whether the divison is zero.
    PADDLE_ENFORCE(b != 0, DIV_ERROR_INFO);
    return a / b;
  }
};

template <typename T, typename Enable = void>
struct InverseDivideFunctor {
92
  inline HOSTDEVICE T operator()(const T a, const T b) const { return b / a; }
93 94 95
};

}  // namespace funcs
96
}  // namespace phi