Function arm_nn_mat_mult_nt_t_f32¶
Defined in File arm_nnsupportfunctions_flt.h
Function Documentation¶
-
arm_cmsis_nn_status arm_nn_mat_mult_nt_t_f32(const float32_t *lhs, const float32_t *rhs, const float32_t *bias, float32_t *dst, int32_t lhs_rows, int32_t rhs_rows, int32_t rhs_cols, int32_t row_address_offset, float32_t activation_min, float32_t activation_max)¶
Matrix multiply with non-transposed lhs and transposed rhs rows (float32).
- Parameters:
lhs – [in] Left-hand matrix stored row-major.
rhs – [in] Right-hand matrix stored row-major, one row per output channel.
bias – [in] Optional bias vector.
dst – [out] Output matrix.
lhs_rows – [in] Number of rows in
lhs.rhs_rows – [in] Number of rows in
rhs.rhs_cols – [in] Number of columns in
rhs.row_address_offset – [in] Output row stride, expressed in elements.
activation_min – [in] Lower clamp bound.
activation_max – [in] Upper clamp bound.
- Returns:
ARM_CMSIS_NN_SUCCESSon success orARM_CMSIS_NN_ARG_ERRORon invalid arguments.