zbtzbtzbt commented on pull request #8555:
URL: https://github.com/apache/incubator-doris/pull/8555#issuecomment-1075035432
```
#elif __SSE2__
int loop = HLL_REGISTERS_COUNT / 16; // 16 = 128/8
uint8_t* dst = _registers.data;
const uint8_t* src = other_registers;
for (int i = 0; i < loop; i++) {
__m128i xa = _mm_load_si128((const __m128i*)dst);
__m128i xb = _mm_load_si128((const __m128i*)src);
_mm_storeu_si128((__m128i*)dst, _mm_max_epu8(xa, xb));
src += 16;
dst += 16;
}
#else
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]