You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17-3Lines changed: 17 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
-
# libcubwt
1
+
# libcubwt
2
2
3
-
The libcubwt is a library for fast (see [Benchmarks](#benchmarks) below) GPU-based Burrows-Wheeler transform construction on the CUDA platform using prefix doubling + Skew/DC3 approach as described in the following papers:
3
+
The libcubwt is a library for fast (see [Benchmarks](#benchmarks) below) GPU-based Burrows-Wheeler transform construction and inversion on the CUDA platform using prefix doubling + Skew/DC3 approach as described in the following papers:
4
4
* Vitaly Osipov, *Parallel Suffix Array Construction for Shared Memory Architectures*, 2012
5
5
* Leyuan Wang, Sean Baxter, and John D. Owens *Fast Parallel Suffix Array on the GPU*, 2015
6
6
* Florian Büren, Daniel Jünger, Robin Kobus, Christian Hundt, Bertil Schmidt *Suffix Array Construction on Multi-GPU Systems*, 2019
The libcubwt provides simple API to construct Burrows-Wheeler transform from a given string over constant-size alphabet using 20.5n bytes of GPU memory.
@@ -20,6 +20,8 @@ The libcubwt provides simple API to construct Burrows-Wheeler transform from a g
20
20
The libcubwt is released under the [Apache License Version 2.0](LICENSE"Apache license") and is considered suitable for production use. However, no warranty or fitness for a particular purpose is expressed or implied.
21
21
22
22
## Changes
23
+
* January 24, 2024 (1.6.0)
24
+
* Inverse Burrows-Wheeler transform.
23
25
* March 24, 2023 (1.5.0)
24
26
* Reduced memory usage and improved performance.
25
27
* February 10, 2023 (1.0.0)
@@ -50,6 +52,18 @@ The libcubwt is released under the [Apache License Version 2.0](LICENSE "Apache
50
52
* @return The primary index if no error occurred, libcubwt error code otherwise.
0 commit comments