I am not very experienced with Compile, I tried to use it for a Meijer-G function
mTest = Compile[{{k, _Integer}, {b, _Real}}, MeijerG[{{1/2, 1/2}, {}}, {{0, 1/2, k}, {-k}}, b^2], {{MeijerG[_, _, _], _Real}}] but it returns the error
CompiledFunction::cflist: Nontensor object generated; proceeding with uncompiled evaluation. Does it mean that I can't Compile MeijerG or is there a trick to it. Eventually I would like to Compile a long calculation that contains a few Meijer-G functions.
MeijerG. See this for a list of compilable functions. $\endgroup$Compilecan't accelerate the evaluation ofMeijerG. However you can precompute it in different points and useInterpolation. $\endgroup$