FastDeploy  latest
Fast & Easy to Deploy!
reduce_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 namespace fastdeploy {
19 namespace function {
21 struct MaxFunctor {
22  template <typename X, typename Y, typename Dim>
23  void operator()(const Eigen::DefaultDevice& dev, X* x, Y* y, const Dim& dim) {
24  y->device(dev) = x->maximum(dim);
25  }
26 };
27 
29 struct MinFunctor {
30  template <typename X, typename Y, typename Dim>
31  void operator()(const Eigen::DefaultDevice& dev, X* x, Y* y, const Dim& dim) {
32  y->device(dev) = x->minimum(dim);
33  }
34 };
35 
37 struct SumFunctor {
38  template <typename X, typename Y, typename Dim>
39  void operator()(const Eigen::DefaultDevice& dev, X* x, Y* y, const Dim& dim) {
40  y->device(dev) = x->sum(dim);
41  }
42 };
43 
45 struct AllFunctor {
46  template <typename X, typename Y, typename Dim>
47  void operator()(const Eigen::DefaultDevice& dev, X* x, Y* y, const Dim& dim) {
48  y->device(dev) = x->all(dim);
49  }
50 };
51 
53 struct AnyFunctor {
54  template <typename X, typename Y, typename Dim>
55  void operator()(const Eigen::DefaultDevice& dev, X* x, Y* y, const Dim& dim) {
56  y->device(dev) = x->any(dim);
57  }
58 };
59 
61 struct MeanFunctor {
62  template <typename X, typename Y, typename Dim>
63  void operator()(const Eigen::DefaultDevice& dev, X* x, Y* y, const Dim& dim) {
64  y->device(dev) = x->mean(dim);
65  }
66 };
67 
69 struct ProdFunctor {
70  template <typename X, typename Y, typename Dim>
71  void operator()(const Eigen::DefaultDevice& dev, X* x, Y* y, const Dim& dim) {
72  y->device(dev) = x->prod(dim);
73  }
74 };
75 
76 } // namespace function
77 } // namespace fastdeploy
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16