Skip to content

Commit

Permalink
Refs #4208. Temporarily disable parallel loop on Mac.
Browse files Browse the repository at this point in the history
Tests fail with parallelization but there is no immediately obvious cause.
  • Loading branch information
martyngigg committed Dec 4, 2011
1 parent 0647d93 commit 8ee805e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,9 @@ void DiffractionFocussing2::exec()
// loop over groups
Progress * prog;
prog = new API::Progress(this, 0.2, 0.95, static_cast<int>(totalHistProcess) + nGroups);
PARALLEL_FOR1(m_matrixInputW)
#ifndef __APPLE__
PARALLEL_FOR2(m_matrixInputW, out)
#endif
for (int outWorkspaceIndex = 0; outWorkspaceIndex < static_cast<int>(m_validGroups.size()); outWorkspaceIndex++)
{
PARALLEL_START_INTERUPT_REGION
Expand Down

0 comments on commit 8ee805e

Please sign in to comment.