본문 바로가기

IT/Basic

[Basic] SIMD performance

 
 

Does rewriting memcpy/memcmp/... with SIMD instructions make sense?

Does rewriting memcpy/memcmp/... with SIMD instructions make sense in a large scale software? If so, why doesn't GCC generate SIMD instructions for these library functions by default? Also, are t...

stackoverflow.com

these functions are much faster with SSE instructions. It would be nice if your runtime library/compiler instrinsics would include optimized versions, but that doesn't seem to be pervasive.

'IT > Basic' 카테고리의 다른 글

[Basic] 0.0.0.0 / 127.0.0.1 차이  (0) 2023.06.20
[Basic] Call by value, Call by reference 차이  (0) 2023.02.28
[Basic] 런타임과 컴파일타임 차이  (0) 2021.12.03
'undefined reference' with 'not declared'  (0) 2021.08.12
비트연산  (0) 2021.05.12