Skip to content

Commit

Permalink
test: try using different thread combos with tch
Browse files Browse the repository at this point in the history
  • Loading branch information
mrvollger committed Aug 21, 2024
1 parent 2a6ccfd commit c4095b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/bio_io.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ impl<'a> BamChunk<'a> {
pub fn new(bam: bam::Records<'a, bam::Reader>, chunk_size: Option<usize>) -> Self {
let chunk_size = std::cmp::min(
chunk_size.unwrap_or_else(|| current_num_threads() * 100),
2_000,
1_000,
);
let bar = no_length_progress_bar();
Self {
Expand Down

0 comments on commit c4095b4

Please sign in to comment.