I recently discovered that one can use JIT (just in time) compilation with R using the compiler package (I summarizes my findings on this topic in a recent blog post).
One of the questions I was asked is:
Is there any pitfall? it sounds too good to be true, just put one line of code and that's it.
After looking around I could find one possible issue having to do with the "start up" time for the JIT. But is there any other issue to be careful about when using JIT?
I guess that there will be some limitation having to do with R's environments architecture, but I can not think of a simple illustration of the problem off the top of my head, any suggestions or red flags will be of great help?
ByteCompile: truein the DESCRIPTION file of my packages as I create new versions and it seems to work ok. I did one small testhttp://www.johnmyleswhite.com/notebook/2012/03/31/julia-i-love-you/comment-page-1/#comment-19522and the byte compiled version,fib2cran 4x faster than the ordinary one,fib2a. In some cases R is already fast even without byte compiling (e.g. highly vectorized code using C underneath) and in those cases there obviously is little opportunity for speedup -- its mainly useful for slow R code. – G. Grothendieck Apr 11 '12 at 14:52