Skip to content

Commit

Permalink
Merge pull request #12 from mmsalehid/fix-hdag-omp
Browse files Browse the repository at this point in the history
Fix hdag omp pragma
  • Loading branch information
cheshmi authored Dec 4, 2023
2 parents 8c334ac + 6dbe5bf commit 16d1e11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hdagg/hdagg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1456,7 +1456,7 @@ namespace HDAGG
std::vector<int> group_size(n + 1, 0);
//NOTE: We have to do these stuff so that the resulted DAG will be a lower triangular one
//Sort Groups and give each group a name based on the minimum of the ids inside a group
#pragma parallel for
#pragma omp parallel for
for(int g = 0; g < ngroups; g++){
//Don't sort right now, it will be ordered at the end of coarsening.
//std::sort(group_set.data() + group_ptr[g], group_set.data() + group_ptr[g + 1]);
Expand Down

0 comments on commit 16d1e11

Please sign in to comment.