Merge pull request #1892 from xthan/patch-1

Fix bug in MNNSigmoidLowp
This commit is contained in:
jxt1234 2022-05-06 19:56:38 +08:00 committed by GitHub
commit 6487dd8a10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -2372,6 +2372,7 @@ void MNNSigmoidLowp(float* dst, const float* src, size_t dataSize) {
}
out = vrecpeq_f32(vaddq_f32(value,out));
vst1q_f32(dst, out);
dst += 4;
dataSize = dataSize - 4 * dataC4;
}
#endif