Remove an unnecessary return statement that was accidentally committed

This commit is contained in:
J M 2024-10-28 17:36:39 -07:00
parent f1fc512752
commit 758a46af34

View file

@ -2720,7 +2720,6 @@ inline static __m256 ggml_v_expf(__m256 x) {
x = _mm256_min_ps(x, h_lim);
return _mm256_castsi256_ps(_mm256_cvttps_epi32(_mm256_fmadd_ps(log2e, x, bias)));
return x;
}
// computes silu x/(1+exp(-x)) in single precision vector