Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eliazonta committed Aug 18, 2023
1 parent abff81b commit 41f8442
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/k-means.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ void KMeans(std::vector<Point>* p,int epochs, int k){
// omp_set_num_threads(k);
#pragma omp num_threads(k)
#ifdef DEBUG
std::cout << "N threads : [" << omp_get_num_threads() << std::cout << "]\n";
std::cout << "N threads : [" << omp_get_num_threads() << "]\n";
#endif
#pragma omp parallel for
#endif
Expand Down

0 comments on commit 41f8442

Please sign in to comment.