M
Modular4w ago
el3

What is the best option for arrays (fix-sized)?

In which cases should I use SIMD, Tensor etc.?
2 Replies
Ket
Ket3w ago
SIMD is good when you have a lot of data to apply simple instructions to. Tensor... Its also a form of data, which can be constructed through SIMD syntax.
stano
stano3w ago
SIMD is only limited to sizes in power of 2 iirc. You could take a look at InlineArray and InlineList

Did you find this page helpful?