-
Notifications
You must be signed in to change notification settings - Fork 0
zstd compress with nvcomp lib
License
Zebra2711/zstd_nvcomp
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
1. OVERVIEW
===========
ZSTD compressed stdout tool using NVIDIA nvCOMP
Compression Algorithms:
zStandard: Huffman + LZ77 + ANS, popular compression format developed by Meta.
2. BUILD
================================================
cmake -B build -S . \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_COMPILER=g++-11 \
-DCMAKE_CUDA_HOST_COMPILER=g++-11
cmake --build build --parallel "$(nproc)"
3. BASIC USAGE
==============
cat archive.tar | zstd_nvcomp > archive.tar.zst
About
zstd compress with nvcomp lib