Skip to content

Commit

Permalink
refactor(ggml): fix vertical alignment of the ``
Browse files Browse the repository at this point in the history
  • Loading branch information
ananta committed Nov 6, 2023
1 parent b2718e8 commit cd78f4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ggml.c
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ do { \
const __m128 t0 = _mm_add_ps(_mm256_castps256_ps128(x[0]), \
_mm256_extractf128_ps(x[0], 1)); \
const __m128 t1 = _mm_hadd_ps(t0, t0); \
res = (ggml_float) _mm_cvtss_f32(_mm_hadd_ps(t1, t1)); \
res = (ggml_float) _mm_cvtss_f32(_mm_hadd_ps(t1, t1)); \
} while (0)
// TODO: is this optimal ?

Expand Down

0 comments on commit cd78f4b

Please sign in to comment.