Skip to content

Commit

Permalink
Fixed an undefined variable in a optimized_x86.h file
Browse files Browse the repository at this point in the history
  • Loading branch information
IanVzs committed Jun 16, 2023
1 parent e5bc9d0 commit 846fa15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kern/optimized/x86/optimized_x86.h
Expand Up @@ -165,7 +165,7 @@ inline float vec_vec_dot_q40_with_q80(
#if defined(__FMA__)
acc = _mm256_fmadd_ps(d, q, acc);
#else
acc = _mm256_add_ps(_mm256_mul_ps(d, p), acc);
acc = _mm256_add_ps(_mm256_mul_ps(d, q), acc);
#endif
}

Expand Down

0 comments on commit 846fa15

Please sign in to comment.