diff --git a/math/mathcore/test/fit/testLogLExecPolicy.cxx b/math/mathcore/test/fit/testLogLExecPolicy.cxx index cc94d335ab1a131a6b86b78b8cb4191df76f301d..19b4a62508bc6136feb9dbf613224dbd58ea7a8e 100644 --- a/math/mathcore/test/fit/testLogLExecPolicy.cxx +++ b/math/mathcore/test/fit/testLogLExecPolicy.cxx @@ -231,16 +231,16 @@ int main() auto seq = test.GetFitter().Result().MinFcnValue(); #endif -#ifdef R__USE_IMT - //Multithreaded - if (!test.testMTFit()) { - Error("testLogLExecPolicy", "Multithreaded Fit failed!"); - return -1; - } - auto seqMT = test.GetFitter().Result().MinFcnValue(); - if (!compareResult(seqMT, seq, "Mutithreaded LogL Fit: ")) - return 1; -#endif +// #ifdef R__USE_IMT +// //Multithreaded +// if (!test.testMTFit()) { +// Error("testLogLExecPolicy", "Multithreaded Fit failed!"); +// return -1; +// } +// auto seqMT = test.GetFitter().Result().MinFcnValue(); +// if (!compareResult(seqMT, seq, "Mutithreaded LogL Fit: ")) +// return 1; +// #endif #ifdef R__HAS_VECCORE //Vectorized @@ -253,15 +253,15 @@ int main() return 2; #endif -#if defined(R__USE_IMT) && defined(R__HAS_VECCORE) - //Multithreaded and vectorized - if (!test.testMTFitVec()) { - Error("testLogLExecPolicy", "Multithreaded + vectorized Fit failed!"); - return -1; - } - auto vecMT = test.GetFitter().Result().MinFcnValue(); - if (!compareResult(vecMT, seq, "Mutithreaded + vectorized LogL Fit: ")) - return 3; -#endif +// #if defined(R__USE_IMT) && defined(R__HAS_VECCORE) +// //Multithreaded and vectorized +// if (!test.testMTFitVec()) { +// Error("testLogLExecPolicy", "Multithreaded + vectorized Fit failed!"); +// return -1; +// } +// auto vecMT = test.GetFitter().Result().MinFcnValue(); +// if (!compareResult(vecMT, seq, "Mutithreaded + vectorized LogL Fit: ")) +// return 3; +// #endif return 0; }