AI Engine API User Guide (AIE) 2022.2
|
Vector reduction operations.
Functions | |
template<Vector Vec> | |
Vec::value_type | aie::reduce_add (const Vec &v) |
More... | |
template<RealVector Vec> | |
Vec::value_type | aie::reduce_max (const Vec &v) |
More... | |
template<RealVector Vec> | |
Vec::value_type | aie::reduce_min (const Vec &v) |
More... | |
Vec::value_type aie::reduce_add | ( | const Vec & | v | ) |
Returns sum of the elements in the input vector.
v | Input vector. The type must meet Vector. |
Vec::value_type aie::reduce_max | ( | const Vec & | v | ) |
Returns the element from the input vector with the largest value.
v | Input vector. The type must meet RealVector. |
Vec::value_type aie::reduce_min | ( | const Vec & | v | ) |
Returns the element from the input vector with the smallest value.
v | Input vector. The type must meet RealVector. |