Top "Luajit" questions

LuaJIT is a Just-In-Time Compiler for the Lua programming language.

How to install Torch on windows 8.1?

Torch is a scientific computing framework with wide support for machine learning algorithms. It is easy to use and efficient, …

lua windows-8.1 luajit torch
Is LuaJIT really faster than every other JIT-ed dynamic languages?

According to the computer language benchmark game, the LuaJIT implementation seems to beat every other JIT-ed dynamic language (V8, Tracemonkey, …

lua jit luajit
How do install libraries for both Lua5.2 and 5.1 using Luarocks?

I am writing a small Lua project and using Luarocks to install my 3rd-party dependencies. The default Lua version on …

lua luajit luarocks
Why is LuaJIT so good?

EDIT: unfortunately LuaJIT was taken out of the comparison in the link below. This comparison of programming languages shows that …

lua jit luajit
How to compile Lua scripts into a single executable, while still gaining the fast LuaJIT compiler?

How can I compile my Lua scripts into a single executable file, while also gaining the super fast performance benefits …

compilation nginx lua luajit
Passing C struct pointer to lua script

I would like to know is there a way to pass a struct pointer to a lua script, and reach …

c lua luajit
How to use LuaJIT's ffi module when embedding?

I'm trying to embed LuaJIT into a C application. The code is like this: #include <lua.h> #include &…

c lua ffi luajit
How to get past 1gb memory limit of 64 bit LuaJIT on Linux?

The overview is I am prototyping code to understand my problem space, and I am running into 'PANIC: unprotected error …

lua luajit torch
How to check if nginx uses LuaJit and not Lua?

I installed http-lua-module with nginx, made a script that works perfectly fine, but now I want to be sure that …

nginx lua luajit
How do I convert a cdata structure into a lua string?

I'm in the middle of writing a small application that needs to read some complex binary messages in LuaJit. I've …

lua ffi luajit