FastDeploy  latest
Fast & Easy to Deploy!
elementwise_functor.h
1 // Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include "fastdeploy/function/eigen.h"
18 #include "fastdeploy/function/elementwise.h"
19 #include "fastdeploy/function/elementwise_base.h"
20 #include <algorithm>
21 
22 namespace fastdeploy {
23 namespace function {
24 
25 template <typename Functor> struct SameDimsElementwiseCompute {
26  void operator()(const FDTensor& x, const FDTensor& y, FDTensor* z) {
27  z->Allocate(x.Shape(), x.Dtype());
28  Functor()(x, y, z);
29  }
30 };
31 
32 template <typename T> struct SameDimsAddFunctor {
33  void operator()(const FDTensor& x, const FDTensor& y, FDTensor* z) {
34  const auto& dev = *EigenDeviceWrapper::GetInstance()->GetDevice();
35  auto eigen_x = EigenVector<T>::Flatten(x);
36  auto eigen_y = EigenVector<T>::Flatten(y);
37  auto eigen_z = EigenVector<T>::Flatten(*z);
38  eigen_z.device(dev) = eigen_x + eigen_y;
39  }
40 };
41 
42 template <typename T> struct SameDimsSubtractFunctor {
43  void operator()(const FDTensor& x, const FDTensor& y, FDTensor* z) {
44  const auto& dev = *EigenDeviceWrapper::GetInstance()->GetDevice();
45  auto eigen_x = EigenVector<T>::Flatten(x);
46  auto eigen_y = EigenVector<T>::Flatten(y);
47  auto eigen_z = EigenVector<T>::Flatten(*z);
48  eigen_z.device(dev) = eigen_x - eigen_y;
49  }
50 };
51 
52 template <typename T> struct SameDimsMultiplyFunctor {
53  void operator()(const FDTensor& x, const FDTensor& y, FDTensor* z) {
54  const auto& dev = *EigenDeviceWrapper::GetInstance()->GetDevice();
55  auto eigen_x = EigenVector<T>::Flatten(x);
56  auto eigen_y = EigenVector<T>::Flatten(y);
57  auto eigen_z = EigenVector<T>::Flatten(*z);
58  eigen_z.device(dev) = eigen_x * eigen_y;
59  }
60 };
61 
62 template <typename T> struct SameDimsDivideFunctor {
63  void operator()(const FDTensor& x, const FDTensor& y, FDTensor* z) {
64  const auto& dev = *EigenDeviceWrapper::GetInstance()->GetDevice();
65  auto eigen_x = EigenVector<T>::Flatten(x);
66  auto eigen_y = EigenVector<T>::Flatten(y);
67  auto eigen_z = EigenVector<T>::Flatten(*z);
68  eigen_z.device(dev) = eigen_x / eigen_y;
69  }
70 };
71 
72 // Add
73 template <typename T> struct AddFunctor {
74  inline T operator()(const T a, const T b) const { return a + b; }
75 };
76 template <typename T> struct InverseAddFunctor {
77  inline T operator()(const T a, const T b) const { return b + a; }
78 };
79 
80 // Subtract
81 template <typename T> struct SubtractFunctor {
82  inline T operator()(const T a, const T b) const { return a - b; }
83 };
84 template <typename T> struct InverseSubtractFunctor {
85  inline T operator()(const T a, const T b) const { return b - a; }
86 };
87 
88 // Multiply
89 template <typename T> struct MultiplyFunctor {
90  inline T operator()(const T a, const T b) const { return a * b; }
91 };
92 template <> struct MultiplyFunctor<bool> {
93  inline bool operator()(const bool a, const bool b) const { return a && b; }
94 };
95 template <typename T> struct InverseMultiplyFunctor {
96  inline T operator()(const T a, const T b) const { return b * a; }
97 };
98 template <> struct InverseMultiplyFunctor<bool> {
99  inline bool operator()(const bool a, const bool b) const { return b && a; }
100 };
101 
102 // Divide
103 #define DIV_ERROR_INFO \
104  "InvalidArgumentError: Integer division by zero encountered in " \
105  "(floor) divide. Please check the input value."
106 
107 template <typename T, typename Enable = void> struct DivideFunctor {
108  inline T operator()(const T a, const T b) const { return a / b; }
109 };
110 
111 template <typename T>
112 struct DivideFunctor<
113  T, typename std::enable_if<std::is_integral<T>::value>::type> {
114  inline T operator()(const T a, const T b) const {
115  // For int32/int64, need to check whether the divison is zero.
116  FDASSERT(b != 0, DIV_ERROR_INFO);
117  return a / b;
118  }
119 };
120 
121 template <typename T, typename Enable = void> struct InverseDivideFunctor {
122  inline T operator()(const T a, const T b) const { return b / a; }
123 };
124 
125 // Maximum
126 template <typename T> struct MaximumFunctor {
127  inline T operator()(const T a, const T b) const { return a > b ? a : b; }
128 };
129 
130 } // namespace function
131 } // namespace fastdeploy
Definition: float16.h:572
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16