Skip to content

Commit

Permalink
Merge pull request #37 from IanVzs/main
Browse files Browse the repository at this point in the history
Fixed an undefined variable in a optimized_x86.h file
  • Loading branch information
chenqy4933 committed Jun 27, 2023
2 parents 2f68d78 + 846fa15 commit 11638dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kern/optimized/x86/optimized_x86.h
Original file line number Diff line number Diff line change
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 11638dc

Please sign in to comment.