Skip to content

Commit

Permalink
change
Browse files Browse the repository at this point in the history
  • Loading branch information
billbillbilly committed Oct 30, 2023
1 parent 86d581a commit 39d14fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/multiLabel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ Rcpp::List multiLabel(Rcpp::NumericMatrix &vpts,
Rcpp::List output(vptnum);
#ifdef _WIN32
#ifdef _OPENMP
#pragma omp parallel for num_threads(workers)
#pragma omp parallel for num_threads(workers)
#else
#pragma omp parallel for num_threads(1)
#pragma omp parallel for num_threads(1)
#endif
for (unsigned int i = 0; i < vptnum; i++) {
const Rcpp::NumericMatrix sub_dsm = dsm_list[i];
Expand Down

0 comments on commit 39d14fc

Please sign in to comment.