Skip to content

Commit

Permalink
write to disk and merge blocks of tuples
Browse files Browse the repository at this point in the history
  • Loading branch information
jermp committed May 25, 2022
1 parent d054366 commit 65b523e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/builder/util.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ struct minimizers_tuples {
minimizer_tuple const* begin = iterators[idx_heap.front()].begin;
out.write(reinterpret_cast<char const*>(begin), sizeof(minimizer_tuple));
num_written_tuples += 1;
if (num_written_tuples % 100000 == 0) {
if (num_written_tuples % 50000000 == 0) {
std::cout << "num_written_tuples = " << num_written_tuples << std::endl;
}
advance_heap_head();
Expand Down

0 comments on commit 65b523e

Please sign in to comment.