Skip to content

Commit 99aa10b

Browse files
authored
Initialize abs_mask1 with itself to silence a gcc warning
actual initialization is via the _mm_cmpeq_ep18, which I've seen claimed to be the fastest way to set an xmm register to all 1s
1 parent fa8bf57 commit 99aa10b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

kernel/x86_64/casum_microk_skylakex-2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ static FLOAT casum_kernel(BLASLONG n, FLOAT *x)
1515

1616
if (n2 < 64) {
1717
__m128 accum_10, accum_11, accum_12, accum_13;
18-
__m128 abs_mask1;
18+
__m128 abs_mask1 = abs_mask1;
1919

2020
accum_10 = _mm_setzero_ps();
2121
accum_11 = _mm_setzero_ps();

0 commit comments

Comments
 (0)