17 #include "fastdeploy/function/eigen.h" 18 #include "fastdeploy/function/elementwise.h" 19 #include "fastdeploy/function/elementwise_base.h" 25 template <
typename Functor>
struct SameDimsElementwiseCompute {
26 void operator()(
const FDTensor& x,
const FDTensor& y, FDTensor* z) {
27 z->Allocate(x.Shape(), x.Dtype());
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;
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;
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;
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;
73 template <
typename T>
struct AddFunctor {
74 inline T operator()(
const T a,
const T b)
const {
return a + b; }
76 template <
typename T>
struct InverseAddFunctor {
77 inline T operator()(
const T a,
const T b)
const {
return b + a; }
81 template <
typename T>
struct SubtractFunctor {
82 inline T operator()(
const T a,
const T b)
const {
return a - b; }
84 template <
typename T>
struct InverseSubtractFunctor {
85 inline T operator()(
const T a,
const T b)
const {
return b - a; }
89 template <
typename T>
struct MultiplyFunctor {
90 inline T operator()(
const T a,
const T b)
const {
return a * b; }
92 template <>
struct MultiplyFunctor<bool> {
93 inline bool operator()(
const bool a,
const bool b)
const {
return a && b; }
95 template <
typename T>
struct InverseMultiplyFunctor {
96 inline T operator()(
const T a,
const T b)
const {
return b * a; }
98 template <>
struct InverseMultiplyFunctor<bool> {
99 inline bool operator()(
const bool a,
const bool b)
const {
return b && a; }
103 #define DIV_ERROR_INFO \ 104 "InvalidArgumentError: Integer division by zero encountered in " \ 105 "(floor) divide. Please check the input value." 107 template <
typename T,
typename Enable =
void>
struct DivideFunctor {
108 inline T operator()(
const T a,
const T b)
const {
return a / b; }
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 {
116 FDASSERT(b != 0, DIV_ERROR_INFO);
121 template <
typename T,
typename Enable =
void>
struct InverseDivideFunctor {
122 inline T operator()(
const T a,
const T b)
const {
return b / a; }
126 template <
typename T>
struct MaximumFunctor {
127 inline T operator()(
const T a,
const T b)
const {
return a > b ? a : b; }
Definition: float16.h:572
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16