FastDeploy  latest
Fast & Easy to Deploy!
math_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 
19 namespace fastdeploy {
20 namespace function {
21 
22 // log(x) = natural logarithm of x
23 template <typename T> struct LogFunctor {
24  template <typename Device, typename X, typename Out>
25  void operator()(Device d, X x, Out out) const {
26  out.device(d) = x.log();
27  }
28 };
29 
30 // exp functor
31 // exp(x) = e^x
32 template <typename T> struct ExpFunctor {
33  template <typename Device, typename X, typename Out>
34  void operator()(Device d, X x, Out out) const {
35  out.device(d) = x.exp();
36  }
37 };
38 
39 // round(x) = [x]
40 template <typename T> struct RoundFunctor {
41  template <typename Device, typename X, typename Out>
42  void operator()(Device d, X x, Out out) const {
43  out.device(d) = x.round();
44  }
45 };
46 
47 // sqrt(x) = x^(1/2)
48 template <typename T> struct SqrtFunctor {
49  template <typename Device, typename X, typename Out>
50  void operator()(Device d, X x, Out out) const {
51  out.device(d) = x.sqrt();
52  }
53 };
54 
55 // abs(x) = x if x > 0 else -x
56 template <typename T> struct AbsFunctor {
57  template <typename Device, typename X, typename Out>
58  void operator()(Device d, X x, Out out) const {
59  out.device(d) =
60  x.unaryExpr([](T v) { return v > static_cast<T>(0) ? v : -v; });
61  }
62 };
63 
64 // ceil(x) = ceiling(x)
65 template <typename T> struct CeilFunctor {
66  template <typename Device, typename X, typename Out>
67  void operator()(Device d, X x, Out out) const {
68  out.device(d) = x.ceil();
69  }
70 };
71 
72 // floor(x) = flooring(x)
73 template <typename T> struct FloorFunctor {
74  template <typename Device, typename X, typename Out>
75  void operator()(Device d, X x, Out out) const {
76  out.device(d) = x.floor();
77  }
78 };
79 
80 } // namespace function
81 } // namespace fastdeploy
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16