File tree 3 files changed +8
-2
lines changed
3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " gbwt"
3
- version = " 0.2.1 "
3
+ version = " 0.2.2 "
4
4
authors = [
" Jouni Siren <[email protected] >" ]
5
5
edition = " 2018"
6
6
description = " Partial reimplementation of the GBWT."
Original file line number Diff line number Diff line change 1
1
# GBWT-rs releases
2
2
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
+
3
9
## GBWT-rs 0.2.1 (2022-02-17)
4
10
5
11
Minor patch release for the GBZ paper.
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ pub struct Config {
68
68
69
69
impl Config {
70
70
const MIN_THREADS : usize = 1 ;
71
- const MAX_THREADS : usize = 31 ;
71
+ const MAX_THREADS : usize = 64 ;
72
72
const BUFFER_SIZE : usize = 8 * 1048576 ;
73
73
74
74
pub fn new ( ) -> Result < Config , String > {
You can’t perform that action at this time.
0 commit comments