Skip to content

Commit 1ce627b

Browse files
Minor fix
1 parent 47a65b1 commit 1ce627b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CMSIS/NN/Include/arm_nnfunctions.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,7 @@ extern "C"
803803
q15_t * vec_buffer);
804804

805805
/**
806-
* @brief uint8 asymmetric opt fully-connected layer function
806+
* @brief Asymmetric UINT8 fully-connected layer function
807807
* @param[in] pV pointer to input vector
808808
* @param[in] pM pointer to matrix weights
809809
* @param[in] dim_vec length of the vector
@@ -819,7 +819,7 @@ extern "C"
819819
* @return The function returns <code>ARM_MATH_SUCCESS</code>
820820
*
821821
*/
822-
arm_status arm_fully_connected_uint8_asym(const uint8_t * pV,
822+
arm_status arm_fully_connected_asym_uint8(const uint8_t * pV,
823823
const uint8_t * pM,
824824
const uint16_t dim_vec,
825825
const uint16_t num_of_rows,

CMSIS/NN/Source/FullyConnectedFunctions/arm_fully_connected_asym_uint8.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
*/
7272

7373
arm_status
74-
arm_fully_connected_uint8_asym(const uint8_t * pV,
74+
arm_fully_connected_asym_uint8(const uint8_t * pV,
7575
const uint8_t * pM,
7676
const uint16_t dim_vec,
7777
const uint16_t num_of_rows,

0 commit comments

Comments
 (0)