ifgk and ifll CUDA/OpenCL-GPU accessible.

This commit is contained in:
suter_a 2019-01-22 14:05:09 +01:00
parent fc68aed573
commit 94950cb755

View File

@ -6572,6 +6572,32 @@ std::string PMsrHandler::GetDKSTheoryString()
result += ", "; result += ", ";
result += args[4].Data(); result += args[4].Data();
result += ")"; result += ")";
} else if (fTheory[i].fLine.BeginsWith("internFldGK ", TString::kIgnoreCase) ||
fTheory[i].fLine.BeginsWith("ifgk ", TString::kIgnoreCase)) { // if -> ifgk(t, alpha, nu, lambdaT, lambdaL, beta)
result += "ifgk(t, ";
result += args[0].Data();
result += ", ";
result += args[1].Data();
result += ", ";
result += args[2].Data();
result += ", ";
result += args[3].Data();
result += ", ";
result += args[4].Data();
result += ")";
} else if (fTheory[i].fLine.BeginsWith("internFldLL ", TString::kIgnoreCase) ||
fTheory[i].fLine.BeginsWith("ifll ", TString::kIgnoreCase)) { // if -> ifll(t, alpha, nu, lambdaT, lambdaL, beta)
result += "ifll(t, ";
result += args[0].Data();
result += ", ";
result += args[1].Data();
result += ", ";
result += args[2].Data();
result += ", ";
result += args[3].Data();
result += ", ";
result += args[4].Data();
result += ")";
} else if (fTheory[i].fLine.BeginsWith("Bessel ", TString::kIgnoreCase) || } else if (fTheory[i].fLine.BeginsWith("Bessel ", TString::kIgnoreCase) ||
fTheory[i].fLine.BeginsWith("b ")) { // b -> b(t, phi, nu) fTheory[i].fLine.BeginsWith("b ")) { // b -> b(t, phi, nu)