top | item 29792358

(no title)

tester34 | 4 years ago

What does algorithm (approach) has to SIMD / Hardware intrinsics?

discuss

order

tsimionescu|4 years ago

Some algorithms are amenable to SIMD, others are not. To utilize SIMD, you need the same set of operations on big chunks of data stored one next to to the other in memory. This fits for example with algorithms which use arrays to store data, and doesn't work at all for alogrithms which rely on linked lists.