lua-users home
lua-l archive

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


Leo Razoumov wrote:
> Is there any hope that LuaJIT will use multi-threading? After all, it
> traces the execution and knows at run-time what paths are parallel.

Auto-parallelization has been tried for the last fourty years
with, umm, mixed results. Almost all of the benchmarks on the
shootout are manually parallelized (e.g. using OpenMP). But this
is tedious. Also, parallel != concurrent.

This is a wide field. No easy solution in sight.

--Mike