FastDeploy  latest
Fast & Easy to Deploy!
elementwise.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/core/fd_scalar.h"
18 #include "fastdeploy/core/fd_tensor.h"
19 
20 namespace fastdeploy {
21 
22 namespace function {
23 
29 FASTDEPLOY_DECL void Add(const FDTensor& x, const FDTensor& y, FDTensor* out);
30 
36 FASTDEPLOY_DECL void Subtract(const FDTensor& x, const FDTensor& y,
37  FDTensor* out);
38 
44 FASTDEPLOY_DECL void Multiply(const FDTensor& x, const FDTensor& y,
45  FDTensor* out);
46 
52 FASTDEPLOY_DECL void Divide(const FDTensor& x, const FDTensor& y,
53  FDTensor* out);
54 
60 FASTDEPLOY_DECL void Maximum(const FDTensor& x, const FDTensor& y,
61  FDTensor* out);
62 
63 } // namespace function
64 
65 FASTDEPLOY_DECL FDTensor operator+(const FDTensor& x, const FDTensor& y);
66 
67 template <typename T> FDTensor operator+(const FDTensor& x, T y) {
68  return x + FDTensor(Scalar(y));
69 }
70 
71 template <typename T> FDTensor operator+(T x, const FDTensor& y) {
72  return FDTensor(Scalar(x)) + y;
73 }
74 
75 FASTDEPLOY_DECL FDTensor operator-(const FDTensor& x, const FDTensor& y);
76 
77 template <typename T> FDTensor operator-(const FDTensor& x, T y) {
78  return x - FDTensor(Scalar(y));
79 }
80 
81 template <typename T> FDTensor operator-(T x, const FDTensor& y) {
82  return FDTensor(Scalar(x)) - y;
83 }
84 
85 FASTDEPLOY_DECL FDTensor operator*(const FDTensor& x, const FDTensor& y);
86 
87 template <typename T> FDTensor operator*(const FDTensor& x, T y) {
88  return x * FDTensor(Scalar(y));
89 }
90 
91 template <typename T> FDTensor operator*(T x, const FDTensor& y) {
92  return FDTensor(Scalar(x)) * y;
93 }
94 
95 FASTDEPLOY_DECL FDTensor operator/(const FDTensor& x, const FDTensor& y);
96 
97 template <typename T> FDTensor operator/(const FDTensor& x, T y) {
98  return x / FDTensor(Scalar(y));
99 }
100 
101 template <typename T> FDTensor operator/(T x, const FDTensor& y) {
102  return FDTensor(Scalar(x)) / y;
103 }
104 
105 } // namespace fastdeploy
void Add(const FDTensor &x, const FDTensor &y, FDTensor *out)
Definition: elementwise.cc:30
void Divide(const FDTensor &x, const FDTensor &y, FDTensor *out)
Definition: elementwise.cc:45
void Maximum(const FDTensor &x, const FDTensor &y, FDTensor *out)
Definition: elementwise.cc:58
void Multiply(const FDTensor &x, const FDTensor &y, FDTensor *out)
Definition: elementwise.cc:40
void Subtract(const FDTensor &x, const FDTensor &y, FDTensor *out)
Definition: elementwise.cc:35
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16