FastDeploy  latest
Fast & Easy to Deploy!
All Classes Namespaces Files Functions Variables Enumerations Enumerator Pages
reduce.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_tensor.h"
18 
19 namespace fastdeploy {
20 namespace function {
28 FASTDEPLOY_DECL void Max(const FDTensor& x, FDTensor* out,
29  const std::vector<int64_t>& dims,
30  bool keep_dim = false, bool reduce_all = false);
31 
39 FASTDEPLOY_DECL void Min(const FDTensor& x, FDTensor* out,
40  const std::vector<int64_t>& dims,
41  bool keep_dim = false, bool reduce_all = false);
42 
50 FASTDEPLOY_DECL void Sum(const FDTensor& x, FDTensor* out,
51  const std::vector<int64_t>& dims,
52  bool keep_dim = false, bool reduce_all = false);
53 
61 FASTDEPLOY_DECL void All(const FDTensor& x, FDTensor* out,
62  const std::vector<int64_t>& dims,
63  bool keep_dim = false, bool reduce_all = false);
64 
72 FASTDEPLOY_DECL void Any(const FDTensor& x, FDTensor* out,
73  const std::vector<int64_t>& dims,
74  bool keep_dim = false, bool reduce_all = false);
75 
83 FASTDEPLOY_DECL void Mean(const FDTensor& x, FDTensor* out,
84  const std::vector<int64_t>& dims,
85  bool keep_dim = false, bool reduce_all = false);
86 
94 FASTDEPLOY_DECL void Prod(const FDTensor& x, FDTensor* out,
95  const std::vector<int64_t>& dims,
96  bool keep_dim = false, bool reduce_all = false);
97 
108 FASTDEPLOY_DECL void ArgMax(const FDTensor& x, FDTensor* out, int64_t axis,
109  FDDataType output_dtype = FDDataType::INT64,
110  bool keep_dim = false, bool flatten = false);
111 
122 FASTDEPLOY_DECL void ArgMin(const FDTensor& x, FDTensor* out, int64_t axis,
123  FDDataType output_dtype = FDDataType::INT64,
124  bool keep_dim = false, bool flatten = false);
125 
126 } // namespace function
127 } // namespace fastdeploy
void Prod(const FDTensor &x, FDTensor *out, const std::vector< int64_t > &dims, bool keep_dim, bool reduce_all)
Definition: reduce.cc:384
void Any(const FDTensor &x, FDTensor *out, const std::vector< int64_t > &dims, bool keep_dim, bool reduce_all)
Definition: reduce.cc:374
void Sum(const FDTensor &x, FDTensor *out, const std::vector< int64_t > &dims, bool keep_dim, bool reduce_all)
Definition: reduce.cc:364
void ArgMin(const FDTensor &x, FDTensor *out, int64_t axis, FDDataType output_dtype, bool keep_dim, bool flatten)
Definition: reduce.cc:397
void ArgMax(const FDTensor &x, FDTensor *out, int64_t axis, FDDataType output_dtype, bool keep_dim, bool flatten)
Definition: reduce.cc:389
void Mean(const FDTensor &x, FDTensor *out, const std::vector< int64_t > &dims, bool keep_dim, bool reduce_all)
Definition: reduce.cc:379
void Max(const FDTensor &x, FDTensor *out, const std::vector< int64_t > &dims, bool keep_dim, bool reduce_all)
Definition: reduce.cc:354
void All(const FDTensor &x, FDTensor *out, const std::vector< int64_t > &dims, bool keep_dim, bool reduce_all)
Definition: reduce.cc:369
void Min(const FDTensor &x, FDTensor *out, const std::vector< int64_t > &dims, bool keep_dim, bool reduce_all)
Definition: reduce.cc:359
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16