This module contains the Just-In-Time compiler tools. The main
function is jit(form, options), see its documentation.
|
cache_signature(input,
options)
A signature string uniquely identifying jit input. |
source code
|
|
|
compile_module(module_dir,
hfilenames,
cfilenames,
signature,
options)
Assuming an existing directory module_dir with source files
hfilenames, cfilenames, create a python extension module and compile
it. |
source code
|
|
|
jit(input,
parameters=None,
common_cell=None) |
source code
|
|
|
jitf(input,
objects,
parameters=None)
Generate code from input and parameters. |
source code
|
|