Skip to content

Commit

Permalink
Enable thread support for constructing the exact lookup table.
Browse files Browse the repository at this point in the history
  • Loading branch information
brianwalenz committed Jul 30, 2018
1 parent e065081 commit be9a3fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utility/kmers-exact.C
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ kmerCountExactLookup::kmerCountExactLookup(kmerCountFileReader *input,
uint32 nf = input->numFiles(); // OpenMP wants simple variables for the loop tests.
uint32 nb = input->numBlocks();

//#pragma omp parallel for schedule(dynamic, 1)
#pragma omp parallel for schedule(dynamic, 1)
for (uint32 ff=0; ff<nf; ff++) {
//fprintf(stderr, "STARTING FILE %u with startPos %lu\n", ff, startPos[ff]);

Expand Down

0 comments on commit be9a3fc

Please sign in to comment.