lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Cosmin Apreutesei wrote:
> I was wondering if LuaJIT generates any SIMD (SSE* since it's x86)
> instructions, and if the answer is yes, how can I motivate it to do
> so? Any examples?

It generates scalar SSE2 instructions (automatically, if the CPU
supports it), but no true SIMD instructions. Auto-vectorization of
Lua code is technically possible, but not a priority right now.

--Mike