memcpy_sse
memcpy_sse copied to clipboard
Results
3
memcpy_sse issues
Sort by
recently updated
recently updated
newest added
This is not bug free. https://github.com/level1wendell/memcpy_sse/blob/7647493724c6f43efc728e78ed8cef7cc46eeac4/memcpy_sse.h#L21 When low 4 bits destination and source addresses are different the function will use _mm_load_si128 to read unaligned memory at the later loop at...
I'm sure you'll catch this one, but the copy loop is unrolled 8 times so you need to step the pointers by 1024 bytes and not 128. Should be a...