Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alessandrocapotondi committed Mar 12, 2019
1 parent 47a65b1 commit 1ce627b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CMSIS/NN/Include/arm_nnfunctions.h
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,7 @@ extern "C"
q15_t * vec_buffer);

/**
* @brief uint8 asymmetric opt fully-connected layer function
* @brief Asymmetric UINT8 fully-connected layer function
* @param[in] pV pointer to input vector
* @param[in] pM pointer to matrix weights
* @param[in] dim_vec length of the vector
Expand All @@ -819,7 +819,7 @@ extern "C"
* @return The function returns <code>ARM_MATH_SUCCESS</code>
*
*/
arm_status arm_fully_connected_uint8_asym(const uint8_t * pV,
arm_status arm_fully_connected_asym_uint8(const uint8_t * pV,
const uint8_t * pM,
const uint16_t dim_vec,
const uint16_t num_of_rows,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
*/

arm_status
arm_fully_connected_uint8_asym(const uint8_t * pV,
arm_fully_connected_asym_uint8(const uint8_t * pV,
const uint8_t * pM,
const uint16_t dim_vec,
const uint16_t num_of_rows,
Expand Down

0 comments on commit 1ce627b

Please sign in to comment.