Skip to content

Commit

Permalink
BUG: Fix IParallelAlgorithm not running in parallel (#844)
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Jackson <[email protected]>
  • Loading branch information
imikejackson authored Feb 1, 2024
1 parent 73a21c9 commit d1d613b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/simplnx/Utilities/IParallelAlgorithm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ void IParallelAlgorithm::setParallelizationEnabled(bool doParallel)
// -----------------------------------------------------------------------------
void IParallelAlgorithm::requireArraysInMemory(const AlgorithmArrays& arrays)
{
setParallelizationEnabled(!CheckArraysInMemory(arrays));
setParallelizationEnabled(CheckArraysInMemory(arrays));
}
} // namespace nx::core

0 comments on commit d1d613b

Please sign in to comment.