17 #include "fastdeploy/core/fd_tensor.h" 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);
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);
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);
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);
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);
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);
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);
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);
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);
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