Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
Signed-off-by: Augusto Berndt <[email protected]>
  • Loading branch information
gudeh committed Aug 6, 2024
1 parent 7ee7d3d commit d360534
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/gpl/src/nesterovBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1961,9 +1961,10 @@ void NesterovBase::updateGradients(std::vector<FloatPoint>& sumGrads,
debugPrint(
log_, GPL, "updateGrad", 1, "DensityPenalty: {:g}", densityPenalty_);

// TODO: This OpenMP parallel section is causing non-determinism. Consider revisiting this in the future to restore determinism.
// TODO: This OpenMP parallel section is causing non-determinism. Consider
// revisiting this in the future to restore determinism.
//#pragma omp parallel for num_threads(nbc_->getNumThreads()) reduction(+ :
//wireLengthGradSum_, densityGradSum_, gradSum)
// wireLengthGradSum_, densityGradSum_, gradSum)
for (size_t i = 0; i < gCells_.size(); i++) {
GCell* gCell = gCells_.at(i);
wireLengthGrads[i]
Expand Down

0 comments on commit d360534

Please sign in to comment.