File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " gbwt"
3- version = " 0.2.1 "
3+ version = " 0.2.2 "
44authors = [" Jouni Siren <jouni.siren@iki.fi>" ]
55edition = " 2018"
66description = " Partial reimplementation of the GBWT."
Original file line number Diff line number Diff line change 11# GBWT-rs releases
22
3+ ## GBWT-rs 0.2.2 (2022-02-22)
4+
5+ Another patch release for the GBZ paper.
6+
7+ * Increase the maximum number of decompression threads in ` gbunzip ` from 31 to 64.
8+
39## GBWT-rs 0.2.1 (2022-02-17)
410
511Minor patch release for the GBZ paper.
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ pub struct Config {
6868
6969impl Config {
7070 const MIN_THREADS : usize = 1 ;
71- const MAX_THREADS : usize = 31 ;
71+ const MAX_THREADS : usize = 64 ;
7272 const BUFFER_SIZE : usize = 8 * 1048576 ;
7373
7474 pub fn new ( ) -> Result < Config , String > {
You can’t perform that action at this time.
0 commit comments