Skip to content

Commit 448574b

Browse files
committed
Version 0.2.2: more decompression threads
1 parent 2f63c24 commit 448574b

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gbwt"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
authors = ["Jouni Siren <[email protected]>"]
55
edition = "2018"
66
description = "Partial reimplementation of the GBWT."

RELEASES.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
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

511
Minor patch release for the GBZ paper.

src/bin/gbunzip.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ pub struct Config {
6868

6969
impl 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> {

0 commit comments

Comments
 (0)