Skip to content

Commit

Permalink
Version 2.7.1 Improved cache coherence for ARMv8 architecture.
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaGrebnov committed Jun 21, 2022
1 parent 223c7eb commit c0b2bba
Show file tree
Hide file tree
Showing 7 changed files with 546 additions and 523 deletions.
3 changes: 3 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Changes in 2.7.1 (June 19, 2022)
- Improved cache coherence for ARMv8 architecture.

Changes in 2.7.0 (April 12, 2022)
- Support for longest common prefix array (LCP) construction.

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PROJECT=sais
PLIBNAME=lib$(PROJECT)
PVER=2.7.0
PVER=2.7.1
PSOVER=2
ifeq ($(OS),Windows_NT)
PLIBSTATIC=$(PROJECT).a
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ The libsais provides simple C99 API to construct suffix array and Burrows-Wheele
The libsais is released under the [Apache License Version 2.0](LICENSE "Apache license")

## Changes
* June 19, 2022 (2.7.1)
* Improved cache coherence for ARMv8 architecture.
* April 12, 2022 (2.7.0)
* Support for longest common prefix array (LCP) construction.
* January 1, 2022 (2.6.5)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.0
2.7.1
354 changes: 180 additions & 174 deletions src/libsais.c

Large diffs are not rendered by default.

352 changes: 179 additions & 173 deletions src/libsais16.c

Large diffs are not rendered by default.

354 changes: 180 additions & 174 deletions src/libsais64.c

Large diffs are not rendered by default.

0 comments on commit c0b2bba

Please sign in to comment.