Searched refs:tmpVb (Results 1 – 2 of 2) sorted by relevance
/hal_nxp-3.5.0/mcux/mcux-sdk/CMSIS/DSP/Source/BayesFunctions/ |
D | arm_gaussian_naive_bayes_predict_f32.c | 175 float32x4_t tmpV,tmpVb,tmpV1; in arm_gaussian_naive_bayes_predict_f32() local 209 tmpVb = vmulq_n_f32(sigmaV,DPI_F); in arm_gaussian_naive_bayes_predict_f32() 210 tmpVb = vlogq_f32(tmpVb); in arm_gaussian_naive_bayes_predict_f32() 211 tmpV = vmlsq_n_f32(tmpV,tmpVb,0.5f); in arm_gaussian_naive_bayes_predict_f32() 213 tmpVb = vmulq_n_f32(sigmaV1,DPI_F); in arm_gaussian_naive_bayes_predict_f32() 214 tmpVb = vlogq_f32(tmpVb); in arm_gaussian_naive_bayes_predict_f32() 215 tmpV1 = vmlsq_n_f32(tmpV1,tmpVb,0.5f); in arm_gaussian_naive_bayes_predict_f32() 217 tmpVb = vsubq_f32(inV,thetaV); in arm_gaussian_naive_bayes_predict_f32() 218 tmpVb = vmulq_f32(tmpVb,tmpVb); in arm_gaussian_naive_bayes_predict_f32() 219 tmpVb = vmulq_f32(tmpVb, vinvq_f32(sigmaV)); in arm_gaussian_naive_bayes_predict_f32() [all …]
|
/hal_nxp-3.5.0/mcux/mcux-sdk/CMSIS/DSP/Source/StatisticsFunctions/ |
D | arm_logsumexp_f32.c | 129 float32x4_t tmpV, tmpVb; in arm_logsumexp_f32() local 167 tmpVb = vld1q_f32(pIn); in arm_logsumexp_f32() 170 idxV = vcgtq_f32(tmpVb, maxValV); in arm_logsumexp_f32() 171 maxValV = vbslq_f32(idxV, tmpVb, maxValV ); in arm_logsumexp_f32()
|