Compile
Compile[{x1,x2,…},expr]
creates a compiled function that evaluates expr assuming numerical values of the xi.
Compile[{{x1,t1},…},expr]
assumes that xi is of a type that matches ti.
Compile[{{x1,t1,n1},…},expr]
assumes that xi is a rank ni array of objects, each of a type that matches ti.
Compile[vars,expr,{{p1,pt1},…}]
assumes that subexpressions in expr that match pi are of types that match pti.
Details and Options
- The types handled by Compile are:
-
_Integer machine‐size integer _Real machine‐precision approximate real number (default) _Complex machine‐precision approximate complex number True False logical variable - Nested lists given as input to a compiled function must be full arrays of numbers.
- Compile handles numerical functions, matrix operations, procedural programming constructs, list manipulation functions, and functional programming constructs, etc.
- Compile generates a CompiledFunction object.
- Compiled code does not handle numerical precision and local variables in the same way as ordinary Wolfram Language code.
- If a compiled function cannot be evaluated with particular arguments using compiled code, ordinary Wolfram Language code is used instead.
- Ordinary Wolfram Language code can be called from within compiled code. Results obtained from the Wolfram Language code are assumed to be approximate real numbers, unless specified otherwise by the third argument of Compile.
- The number of times and the order in which objects are evaluated by Compile may be different from ordinary Wolfram Language code.
- Compile has attribute HoldAll, and does not by default do any evaluation before compilation.
- You can use Compile[…,Evaluate[expr]] to specify that expr should be evaluated symbolically before compilation.
- The following options can be given:
-
CompilationOptions Automatic options for the compilation process CompilationTarget $CompilationTarget the target runtime for code generation Parallelization Automatic parallel controls for compiled function execution RuntimeAttributes {} evaluation attributes for the compiled function RuntimeOptions Automatic runtime options for the compiled function
Examples
open allclose allBasic Examples (1)
Compile the function Sin[x]+x^2-1/(1-x) for machine real x:
The CompiledFunction evaluates with machine numbers:
Scope (1)
Options (9)
CompilationOptions (1)
The default setting of Automatic generates more efficient code by avoiding computing the same result more than once:
When the optimization level is reduced, less efficient code is generated:
CompilationTarget (2)
Parallelization (2)
Listable compiled functions can execute in parallel using threads:
This shows the operation running sequentially:
Typically, $ProcessorCount is used to determine how many threads to be used:
You can combine parallel operations with C code generation to get even faster operation:
RuntimeAttributes (3)
This creates a listable compiled function:
It operates on a single input in normal fashion:
When the arguments include a list that does not match the input specification, it threads over that argument:
If there is a branch, listability needs a function to be defined, as shown below using Function:
A listable compiled function is equivalent but executes faster:
A listable compiled function can run in parallel, giving an acceleration on multicore machines:
Using the listable attribute is typically faster than invoking CompiledFunction many times:
Using parallelization can give an even greater speedup:
A detailed plot of the basins of attraction for Newton's method for :
Possible Issues (1)
With the default setting for RuntimeOptions intermediate overflow may be missed:
With the "Quality" setting, intermediate terms are tested for overflow:
Neat Examples (1)
Text
Wolfram Research (1991), Compile, Wolfram Language function, https://reference.wolfram.com/language/ref/Compile.html (updated 2010).
CMS
Wolfram Language. 1991. "Compile." Wolfram Language & System Documentation Center. Wolfram Research. Last Modified 2010. https://reference.wolfram.com/language/ref/Compile.html.
APA
Wolfram Language. (1991). Compile. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/Compile.html