Skip to content

Commit

Permalink
consistency loss with multithreading solved
Browse files Browse the repository at this point in the history
  • Loading branch information
Woosub-Kim committed Aug 28, 2024
1 parent 928984b commit 69d397b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mmseqs/src/util/createclusterdb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ int createclusearchdb(int argc, const char **argv, const Command& command) {
#ifdef OPENMP
thread_idx = static_cast<unsigned int>(omp_get_thread_num());
#endif
#pragma omp for schedule(dynamic, 1)
#pragma omp for schedule(static)
for (size_t id = 0; id < clusterReader.getSize(); id++) {
progress.updateProgress();
char *data = clusterReader.getData(id, thread_idx);
Expand Down

0 comments on commit 69d397b

Please sign in to comment.