New in Wolfram
Mathematica
8: Compiler Performance Enhancements
◄
previous
|
next
►
Software Development
Automatic Virtual Machine Optimization
The automatic expression optimizer is used to make sure that
x^2
is only computed once.
In[1]:=
X
Needs["CompiledFunctionTools`"] c = Compile[{{x}}, x^2 + Sin[x^2]]; CompilePrint[c]
Out[1]=