You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
IParallelAlgorithm::IParallelAlgorithm()
{
#ifdef SIMPLNX_ENABLE_MULTICORE
// Do not run OOC data in parallel by default.
m_RunParallel = !Application::GetOrCreateInstance()->getPreferences()->useOocData();
#endif
}
This will set m_UseOoc to true if the json contains any string value. The preferences could have "In-Memory" and m_UseOoc would still be true and disable parallelization.
The text was updated successfully, but these errors were encountered:
This will set
m_UseOoc
totrue
if the json contains any string value. The preferences could have"In-Memory"
andm_UseOoc
would still betrue
and disable parallelization.The text was updated successfully, but these errors were encountered: