Mathematica Compiled Functions in Mathematica

AI Thread Summary
The discussion focuses on optimizing simulations in Mathematica using the Compile function. Compile is highlighted for its ability to significantly increase performance—achieving speed improvements of 5-30 times for well-implemented algorithms—by reducing the overhead associated with type checking that occurs in standard function definitions. When using Compile, Mathematica performs fewer sanity checks and operates similarly to a Java bytecode machine, which is advantageous for numerical calculations. However, the documentation for Compile is noted as lacking, making it challenging for users to implement effectively. The conversation also suggests considering MathLink to connect to external executables for further performance enhancements, emphasizing the importance of minimizing communication between Mathematica and the external program for optimal speed.
Lucid Dreamer
Messages
25
Reaction score
0
Hello,

I was looking at ways I could optimize a simulation I wrote in Mathematica and came across the command compile. From what I understand, it defines a function that expects a numerical value for the variable. But I don't understand how this would be any different from just ordinarily defining a function using " := "
 
Physics news on Phys.org
When not inside a Compile[] something like + has to check

Is this a symbol, if so then do this
Is this a decimal approximation, if so then do this
Is this a matrix, if so then do this
...

All the checking adds a considerable overhead.

When inside a Compile[] the rules are very different. It invokes a much more limited set of sanity checks, if those fail it defaults back to the uncompiled code, otherwise it invokes something similar to a Java byte code machine which simulates a virtual CPU to do mostly numerical calculations.

For the right kinds of problems with a really well implemented algorithm inside Compile[] you can see 5-30x increase in speed. But Compile[] is at or near the top of the list for worst documented functions available. There are tiny little examples here and there in books and you can try to reverse engineer what the documentation should be to use it effectively. I am mostly serious with my offer to buy a cake for the first person to write a really really well done tutorial on how to write a Compile[] so that it will always do what I want fast and will work the first time. Thus far I have had zero nibbles on that.

You can also consider MathLink to an outside executable. If you can put almost everything you need to do into that executable and have minimal communication then that can provide you even greater speed.
 

Similar threads

Replies
4
Views
3K
Replies
5
Views
3K
Replies
13
Views
2K
Replies
4
Views
1K
Replies
2
Views
2K
Back
Top