Skip to content

Commit a5d9313

Browse files
committed
style: fix indentation of sb_acc8_add_ssd function parameter.
1 parent b1e723c commit a5d9313

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/utils/simd_utils.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ SB_SIMD_INLINE sb_acc8_t sb_acc8_zero(void) {
161161
}
162162

163163
SB_SIMD_INLINE sb_acc8_t sb_acc8_add_ssd(sb_acc8_t acc, sb_vec8_t a,
164-
sb_vec8_t b) {
164+
sb_vec8_t b) {
165165
#ifdef __AVX__
166166
__m256 d = _mm256_sub_ps(a, b);
167167
return _mm256_add_ps(acc, _mm256_mul_ps(d, d));

0 commit comments

Comments
 (0)