Skip to content

Commit

Permalink
refs #9022 Histogram data comparison also serialized when requested
Browse files Browse the repository at this point in the history
  • Loading branch information
abuts committed Feb 17, 2014
1 parent 1e3a3f6 commit 7996832
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -412,7 +412,8 @@ bool CheckWorkspacesMatch::checkData(API::MatrixWorkspace_const_sptr ws1, API::M
bool resultBool = true;

// Now check the data itself
PARALLEL_FOR2(ws1, ws2)
bool condition = m_ParallelComparison && ws1->threadSafe() && ws2->threadSafe() ;
PARALLEL_FOR_IF(condition)
for ( int i = 0; i < static_cast<int>(numHists); ++i )
{
PARALLEL_START_INTERUPT_REGION
Expand Down

0 comments on commit 7996832

Please sign in to comment.