You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to the change of Helium support in CMSIS-NN 5.0 and later, when the e-AI translator generated model is built with Helium enabled, the fully connected operation result could be incorrect.
Workaround
If function arm_fully_connected_s8() is called by dnn_compute() in the generated file dnn_compute.c, please call arm_vector_sum_s8() to calculate vector sums first, e.g
Before adding “arm_fully_connected_s8” in “dnn_compute.c”
Issue
Due to the change of Helium support in CMSIS-NN 5.0 and later, when the e-AI translator generated model is built with Helium enabled, the fully connected operation result could be incorrect.
Workaround
If function
arm_fully_connected_s8()
is called bydnn_compute()
in the generated filednn_compute.c
, please callarm_vector_sum_s8()
to calculate vector sums first, e.gBefore adding “arm_fully_connected_s8” in “dnn_compute.c”
After adding “arm_fully_connected_s8” in “dnn_compute.c”
The text was updated successfully, but these errors were encountered: