Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/beling/benchmark-succinct
Benchmark of succinct data structures.
https://github.com/beling/benchmark-succinct
Last synced: about 1 month ago
JSON representation
Benchmark of succinct data structures.
- Host: GitHub
- URL: https://github.com/beling/benchmark-succinct
- Owner: beling
- Created: 2024-01-24T21:36:32.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-02-25T17:01:54.000Z (10 months ago)
- Last Synced: 2024-04-24T07:24:00.662Z (8 months ago)
- Language: C++
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
The program (by Piotr Beling) for benchmarking the succinct data structures contained in the [SDSL2](https://github.com/simongog/sdsl-lite) library.
It mimics (by the way it draws data, measures time, etc.) the [cseq_benchmark](https://crates.io/crates/cseq_benchmark) program included in [BSuccinct](https://github.com/beling/bsuccinct-rs).
Consequently, the results obtained by the two programs can be compared.The program can be built using [CMake](https://cmake.org/). Its release version can be built as follows:
``` shell
mkdir Release
cd Release
cmake -DCMAKE_BUILD_TYPE=Release ..
make
```
Notes:
- release compilation type enables optimizations native to the CPU used for compilation,
- the software and instructions have been tested under GNU/Linux and may require some modifications for other systems.