Parallel random access to gzip files
Project description
This repository contains the command line tool rapidgzip
, which can be used for parallel decompression of almost any gzip file. Other tools, such as bgzip, can only parallelize decompression of gzip files produced by themselves. rapidgzip
works with all files, especially those produced by the usually installed GNU gzip. How this works can be read in the pugz paper or in the rapidgzip paper, which builds upon the former.
The Python module provides a RapidgzipFile
class, which can be used to seek inside gzip files without having to decompress them first.
Alternatively, you can use this simply as a parallelized gzip decoder as a replacement for Python's builtin gzip
module in order to fully utilize all your cores.
The random seeking support is the same as provided by indexed_gzip but further speedups are realized at the cost of higher memory usage thanks to a least-recently-used cache in combination with a parallelized prefetcher.
This repository is a light-weight fork of the indexed_bzip2 repository, in which the main development takes place. This repository was created for visibility reasons and in order to keep indexed_bzip2 and rapidgzip releases separate. It will be updated at least for each release. Issues regarding rapidgzip should be opened here.
Table of Contents
Installation
You can simply install it from PyPI:
python3 -m pip install --upgrade pip # Recommended for newer manylinux wheels
python3 -m pip install rapidgzip
rapidgzip --help
Advanced Installations
The latest unreleased development version can be tested out with:
python3 -m pip install --force-reinstall 'git+https://github.com/mxmlnkn/indexed_bzip2.git@master#egginfo=rapidgzip&subdirectory=python/rapidgzip'
And to build locally, you can use build
and install the wheel:
cd python/rapidgzip
rm -rf dist
python3 -m build .
python3 -m pip install --force-reinstall --user dist/*.whl
Performance
Following are benchmarks showing the decompression bandwidth over the number of used cores.
There are two rapidgzip variants shown: (index)
and (no index)
.
Rapidgzip is generally faster when given an index with --import-index
because it can delegate the decompression to ISA-l or zlib while it has to use its own custom-written gzip decompression engine when no index exists yet.
Furthermore, decompression can be parallelized more evenly and more effectively when an index exists because the serializing window propagation step is not necessary.
The violin plots show 20 repeated measurements as a single "blob". Thin blobs signal very reproducible timings while thick blobs signal a large variance.
Scaling Benchmarks on 2xAMD EPYC CPU 7702 (2x64 cores)
Decompression of Silesia Corpus
This benchmark uses the Silesia corpus compressed as a .tar.gz file to show the decompression performance. However, the compressed dataset is only ~69 MB, which is not sufficiently large to show parallelization over 128 cores. That's why the TAR file is repeated as often as there are number of cores in the benchmark times 2 and then compressed into a single large gzip file, which is ~18 GB compressed and 54 GB uncompressed for 128 cores.
Rapidgzip achieves up to 24 GB/s with an index and 12 GB/s without.
Pugz is not shown as comparison because it is not able to decompress the Silesia dataset because it contains binary data, which it cannot handle.
Decompression of Gzip-Compressed Base64 Data
This benchmarks uses random data, that has been base64 encoded and then gzip-compressed. This is the next best case for rapidgzip after the trivial case of purely random data, which cannot be compressed and therefore can be decompressed with a simple memory copy. This next best case results in mostly Huffman-coding compressed data with only very few LZ77 back-references. Without LZ77 back-references, parallel decompression can be done more independently and therefore faster than in the case of many LZ77 back-references.
Decompression of Gzip-Compressed FASTQ Data
This benchmarks uses gzip-compressed FASTQ data. That's why the TAR file is repeated as often as there are number of cores in the benchmark to hold the decompression times roughly constant in order to make the benchmark over this large a range feasible. This is almost the worst case for rapidgzip because it contains many LZ77 back-references over very long ranges. This means that a fallback to ISA-L is not possible and it means that the costly two-staged decoding has to be done for almost all the data. This is also the reason why if fails to scale above 64 cores, i.e, to teh second CPU socket. The first and second decompression stages are completely independently submitted to a thread pool, which on this NUMA architecture means, that data needs to be costly transferred from one processor socket to the other if the second step for a chunk is not done on the same processor as the first. This should be fixable by making the ThreadPool NUMA-aware.
These three scaling plots were created with rapidgzip 0.9.0 while the ones in the paper were created with 0.5.0.
Scaling Benchmarks on Ryzen 3900X
These benchmarks on my local workstation with a Ryzen 3900X only has 12 cores (24 virtual cores) but the base frequency is much higher than the 2xAMD EPYC CPU 7702.
Decompression With Existing Index
4GiB-base64 | 4GiB-base64 | 20x-silesia | 20x-silesia | ||
---|---|---|---|---|---|
Uncompressed Size | 4 GiB | 3.95 GiB | |||
Compressed Size | 3.04 GiB | 1.27 GiB | |||
Module | Bandwidth / (MB/s) |
Speedup | Bandwidth / (MB/s) |
Speedup | |
gzip | 250 | 1 | 293 | 1 | |
rapidgzip (0 threads) | 5179 | 20.6 | 5640 | 18.8 | |
rapidgzip (1 threads) | 488 | 1.9 | 684 | 2.3 | |
rapidgzip (2 threads) | 902 | 3.6 | 1200 | 4.0 | |
rapidgzip (6 threads) | 2617 | 10.4 | 3250 | 10.9 | |
rapidgzip (12 threads) | 4463 | 17.7 | 5600 | 18.7 | |
rapidgzip (24 threads) | 5240 | 20.8 | 5750 | 19.2 | |
rapidgzip (32 threads) | 4929 | 19.6 | 5300 | 17.7 |
Decompression From Scratch
4GiB-base64 | 4GiB-base64 | 20x-silesia | 20x-silesia | ||
---|---|---|---|---|---|
Uncompressed Size | 4 GiB | 3.95 GiB | |||
Compressed Size | 3.04 GiB | 1.27 GiB | |||
Module | Bandwidth / (MB/s) |
Speedup | Bandwidth / (MB/s) |
Speedup | |
gzip | 250 | 1 | 293 | 1 | |
rapidgzip (0 threads) | 5060 | 20.1 | 2070 | 6.9 | |
rapidgzip (1 threads) | 487 | 1.9 | 630 | 2.1 | |
rapidgzip (2 threads) | 839 | 3.3 | 694 | 2.3 | |
rapidgzip (6 threads) | 2365 | 9.4 | 1740 | 5.8 | |
rapidgzip (12 threads) | 4116 | 16.4 | 1900 | 6.4 | |
rapidgzip (24 threads) | 4974 | 19.8 | 2040 | 6.8 | |
rapidgzip (32 threads) | 4612 | 18.3 | 2580 | 8.6 |
Usage
Command Line Tool
rapidgzip --help
# Parallel decoding: 1.7 s
time rapidgzip -d -c -P 0 sample.gz | wc -c
# Serial decoding: 22 s
time gzip -d -c sample.gz | wc -c
Python Library
Simple open, seek, read, and close
from rapidgzip import RapidgzipFile
file = RapidgzipFile("example.gz", parallelization=os.cpu_count())
# You can now use it like a normal file
file.seek(123)
data = file.read(100)
file.close()
The first call to seek will ensure that the block offset list is complete and therefore might create them first. Because of this the first call to seek might take a while.
Use with context manager
import os
import rapidgzip
with rapidgzip.open("example.gz", parallelization=os.cpu_count()) as file:
file.seek(123)
data = file.read(100)
Storing and loading the block offset map
The creation of the list of gzip blocks can take a while because it has to decode the gzip file completely. To avoid this setup when opening a gzip file, the block offset list can be exported and imported.
Open a pure Python file-like object for indexed reading
import io
import os
import rapidgzip as rapidgzip
with open("example.gz", "rb") as file:
in_memory_file = io.BytesIO(file.read())
with rapidgzip.open(in_memory_file, parallelization=os.cpu_count()) as file:
file.seek(123)
data = file.read(100)
Via Ratarmount
rapidgzip
is the default backend in ratarmount since version 0.14.0.
Then, you can use ratarmount to mount single gzip files easily.
base64 /dev/urandom | head -c $(( 4 * 1024 * 1024 * 1024 )) | gzip > sample.gz
# Serial decoding: 23 s
time gzip -c -d sample.gz | wc -c
python3 -m pip install --user ratarmount
ratarmount sample.gz mounted
# Parallel decoding: 3.5 s
time cat mounted/sample | wc -c
# Random seeking to the middle of the file and reading 1 MiB: 0.287 s
time dd if=mounted/sample bs=$(( 1024 * 1024 )) \
iflag=skip_bytes,count_bytes skip=$(( 2 * 1024 * 1024 * 1024 )) count=$(( 1024 * 1024 )) | wc -c
C++ library
Because it is written in C++, it can of course also be used as a C++ library.
In order to make heavy use of templates and to simplify compiling with Python setuptools
, it is mostly header-only so that integration it into another project should be easy.
The license is also permissive enough for most use cases.
I currently did not yet test integrating it into other projects other than simply manually copying the source in src/core
, src/rapidgzip
, and if integrated zlib is desired also src/external/zlib
.
If you have suggestions and wishes like support with CMake or Conan, please open an issue.
Citation
A paper describing the implementation details and showing the scaling behavior with up to 128 cores has been submitted to and accepted in ACM HPDC'23, The 32nd International Symposium on High-Performance Parallel and Distributed Computing. The paper can be accessed freely on ACM DL. The accompanying presentation can be found here.
If you use this software for your scientific publication, please cite it as:
@inproceedings{rapidgzip,
author = {Knespel, Maximilian and Brunst, Holger},
title = {Rapidgzip: Parallel Decompression and Seeking in Gzip Files Using Cache Prefetching},
year = {2023},
isbn = {9798400701559},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3588195.3592992},
doi = {10.1145/3588195.3592992},
abstract = {Gzip is a file compression format, which is ubiquitously used. Although a multitude of gzip implementations exist, only pugz can fully utilize current multi-core processor architectures for decompression. Yet, pugz cannot decompress arbitrary gzip files. It requires the decompressed stream to only contain byte values 9–126. In this work, we present a generalization of the parallelization scheme used by pugz that can be reliably applied to arbitrary gzip-compressed data without compromising performance. We show that the requirements on the file contents posed by pugz can be dropped by implementing an architecture based on a cache and a parallelized prefetcher. This architecture can safely handle faulty decompression results, which can appear when threads start decompressing in the middle of a gzip file by using trial and error. Using 128 cores, our implementation reaches 8.7 GB/s decompression bandwidth for gzip-compressed base64-encoded data, a speedup of 55 over the single-threaded GNU gzip, and 5.6 GB/s for the Silesia corpus, a speedup of 33 over GNU gzip.},
booktitle = {Proceedings of the 32nd International Symposium on High-Performance Parallel and Distributed Computing},
pages = {295–307},
numpages = {13},
keywords = {gzip, decompression, parallel algorithm, performance, random access},
location = {Orlando, FL, USA},
series = {HPDC '23},
}
About
This tool originated as a backend for ratarmount. After writing the bzip2 backend for ratarmount, my hesitation about reimplementing custom decoders for existing file formats has vastly diminished. And, while random access to gzip files did exist with indexed_gzip, it did not support parallel decompression neither for the index creation nor when the index already exists. The latter of which is trivial, when ignoring load balancing issues, but parallelizing even the index creation is vastly more complicated because decompressing data requires the previous 32 KiB of decompressed data to be known.
After implementing a production-ready version by improving upon the algorithm used by pugz, I submitted a paper. The review process was double-blind and I was unsure whether to pseudonymize Pragzip because it has already been uploaded to Github. In the end, I used "rapidgzip" during the review process and because I was not sure, which form fields should be filled with the pseudonymized title, I simply stuck with it. Rapidgzip was chosen for similar reason to pragzip, namely the P and RA are acronyms for Parallel and Random Access. As rapgzip, did not stick, I used rapidgzip, which now also contains the foremost design goal in its name: being rapidly faster than single-threaded implementations. Furthermore, the additional ID could be interpreted to stand for Index and Decompression, making "rapid" a partial backronym.
Internal Architecture
The main part of the internal architecture used for parallelizing is the same as used for indexed_bzip2.
Tracing the Decoder
Performance profiling and tracing is done with Score-P for instrumentation and Vampir for visualization. This is one way, you could install Score-P with most of the functionalities on Ubuntu 22.04.
Installation of Dependencies
Installation steps for Score-P
sudo apt-get install libopenmpi-dev openmpi-bin gcc-11-plugin-dev llvm-dev libclang-dev libunwind-dev \
libopen-trace-format-dev otf-trace libpapi-dev
# Install Score-P (to /opt/scorep)
SCOREP_VERSION=8.0
wget "https://perftools.pages.jsc.fz-juelich.de/cicd/scorep/tags/scorep-${SCOREP_VERSION}/scorep-${SCOREP_VERSION}.tar.gz"
tar -xf "scorep-${SCOREP_VERSION}.tar.gz"
cd "scorep-${SCOREP_VERSION}"
./configure --with-mpi=openmpi --enable-shared --without-llvm --without-shmem --without-cubelib --prefix="/opt/scorep-${SCOREP_VERSION}"
make -j $( nproc )
make install
# Add /opt/scorep to your path variables on shell start
cat <<EOF >> ~/.bashrc
if test -d /opt/scorep; then
export SCOREP_ROOT=/opt/scorep
export PATH=$SCOREP_ROOT/bin:$PATH
export LD_LIBRARY_PATH=$SCOREP_ROOT/lib:$LD_LIBRARY_PATH
fi
EOF
echo -1 | sudo tee /proc/sys/kernel/perf_event_paranoid
# Check whether it works
scorep --version
scorep-info config-summary
Tracing
Results for a version from 2023-02-04
Comparison without and with rpmalloc preloaded
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Hashes for rapidgzip-0.10.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 136e785cdbcba668769cc246dfd8f4a528cb0fd38f8823d268736551b898eb6c |
|
MD5 | 4a1580dfb03932cf7e462b873d616efa |
|
BLAKE2b-256 | bd382a146476f6879f9143b07a945bc37696a615691403027b677d3655f74a69 |
Hashes for rapidgzip-0.10.2-pp310-pypy310_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7f76cc465115028a3bc6b6fc76e6138ca973ad734d08b0d02931b7470ff27152 |
|
MD5 | 211ad489825420b9231da23a65b06ecb |
|
BLAKE2b-256 | 7b9b4504f68b75d4e59708321f46d49996f05cb6b2c3ac4b181f992750580963 |
Hashes for rapidgzip-0.10.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9546e75af11f042e6a9a2b56092303207f6d7aad3d113f27a35a4594ee4679f |
|
MD5 | 2d8b68f7f96bc305ad0cda8370af2d17 |
|
BLAKE2b-256 | 868c50dc399849a868ca46f9413ee2523513fa9c44c58410c653180bf57c21ec |
Hashes for rapidgzip-0.10.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 14c82766f3af3fec6c2c17e80a545b7bd7f099b00a7aeb70bf36778b08f8e0fc |
|
MD5 | e2895f04697681c5a4300afcca07b0db |
|
BLAKE2b-256 | 5e7d2938d9b51945e939a61046257f0b527ff9d759667576f1d6437f3d8c2b19 |
Hashes for rapidgzip-0.10.2-pp310-pypy310_pp73-macosx_10_14_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f39502a0fbb2d335ac54e20f4c3c1f6bd8f4bbb24dec22fd31802fca37c376ee |
|
MD5 | 52fa73b219c8f81e4def8371260b303d |
|
BLAKE2b-256 | f6649d42d58abde9c534a5bcd8049a93aa5b7a2c6bfa444a26d2750afb989374 |
Hashes for rapidgzip-0.10.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 080c15b7eb4e38fba7cc179c8bc4454ce71e26887642fbbeafd4a87fd1c9b7b0 |
|
MD5 | d55ea5bac111d3fbb784b313f3d1b13b |
|
BLAKE2b-256 | b0eae88f8190b3af03df11c6bf054cebbf277fe8653eb28334256449abafb6b9 |
Hashes for rapidgzip-0.10.2-pp39-pypy39_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b976b7f22832bf72a1b9fa0f1e8a4f9b6546515c3b27e9d689a213277c68d6b |
|
MD5 | 640ab5135a85f8c2c76547197243367d |
|
BLAKE2b-256 | 0728d8b0e6d99124a7830daed1166d2ba5b47e9073872cdbc210d630d5f417ea |
Hashes for rapidgzip-0.10.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8928a8d252bb0a17a66c92ddc56a36a71641b242c69662c5e87ea9b514d97fda |
|
MD5 | c4a4cc8fc78e72d42af71c23feaa5bc7 |
|
BLAKE2b-256 | b8a9310fd2da429c628160ac271184176b9996567345030e996ae37d40ff3dbb |
Hashes for rapidgzip-0.10.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b8d97ae7bd9de695a9a28a3c936e4378b71a9ae56388fb735ee225463f26ba8 |
|
MD5 | 2bcac4ec6bd18941e5a6a6fc6243adb5 |
|
BLAKE2b-256 | bbce0b4fb887f74934977e06e67f161f85c96953002bac61b50f7924d492546a |
Hashes for rapidgzip-0.10.2-pp39-pypy39_pp73-macosx_10_14_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 579761bc7d17b7bbd67d77353b5e6327656f8bec8703dfb0fa11a59528f3e80a |
|
MD5 | d1dae292a4902f8b2117d84df43501dd |
|
BLAKE2b-256 | 693c459a29ff7d3ddc684c5e05418faef10377d912ec93a01b1313809f82ce1d |
Hashes for rapidgzip-0.10.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06488c9005cbe69e9182bc6d9c8f58fe1e8067bacba02531659ae3916af1357f |
|
MD5 | f13906ae5cb54124ac98a75e8c1613ee |
|
BLAKE2b-256 | 2a1d024eafe0f1b4717b09d1f01fc847b7257475efe308d92a87027b836e403b |
Hashes for rapidgzip-0.10.2-pp38-pypy38_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f9edf9de9f0154ebc5bbbd4dc5998fe720b130dfdd1a4e8fe29b631af9f0e5d7 |
|
MD5 | c53d62ca6780dcfa930f6f29aa32d9bb |
|
BLAKE2b-256 | 076564340aa5186f15bee30c1e31f02bca697a3067b256f6ba5c2c6cbf35024d |
Hashes for rapidgzip-0.10.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa48ffd68e4cd3f5838fa5c334cdcc4d082bb03e0d82d719cd4d7491fc9557e4 |
|
MD5 | e91cc3886b14c4e649c90efc8d96ca9d |
|
BLAKE2b-256 | cffc92586cad24bfbfe709669557f79f3961cff16ca761f1d88bbf52fc5d14dd |
Hashes for rapidgzip-0.10.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee724f915e9cb121bc752e01b04beffa6bbd9ac93705c67ebf5cd940a5b300d1 |
|
MD5 | 8cdcac5d4d0241876eff14ce5664d9c4 |
|
BLAKE2b-256 | 03c4b713936fa244d2e3139024356f2df865864de9551d222c7e4745d3051dcf |
Hashes for rapidgzip-0.10.2-pp38-pypy38_pp73-macosx_10_14_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7c47050b142bf11501c64c062e34b19241f21017ccc66fbb49e54d767221b9e9 |
|
MD5 | 96bb3e85a9b5f21ffd310a7ba53fafbd |
|
BLAKE2b-256 | 586d21c3918965e89348fbb0bc62b3476491d2356fb0109f645639e5a0a2172d |
Hashes for rapidgzip-0.10.2-pp37-pypy37_pp73-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 43801b241fbf1a6ce5cbbbe0b2351037ce964a0740736db70f35b85af479b653 |
|
MD5 | 92ddd6a93b31f40f3ba3b53ddfc994e2 |
|
BLAKE2b-256 | 4bd4b226fae2f2a350080a28291826d098831299198d3a6b4177dc73febab4b3 |
Hashes for rapidgzip-0.10.2-pp37-pypy37_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 723fbefc641253efa5173d932192f34f3153d3b55c379ad1b5ffebe476c76617 |
|
MD5 | 20340a356083b16ef0e2f7f45e7899c2 |
|
BLAKE2b-256 | ae75d4e9d4b61f27f2df6cccd6b12b7024abc81e57cd2c9d36e919fa1e592e56 |
Hashes for rapidgzip-0.10.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 09fa816971f86b8a5038fbe64e4d3361d1c198958dc1bbad83e7065bec1129e2 |
|
MD5 | fa82a671b1ae78ef72e09891c6facadc |
|
BLAKE2b-256 | d92db32b84f83f3b58b9057b09257558fb9234c0be8472ef1e91d86ebd7d9e3c |
Hashes for rapidgzip-0.10.2-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b937c4f6ae62866c5aecf784d034feb9eef2c0d84536080e36db5aa1df20c070 |
|
MD5 | c5ef2d7d6015e3ea3fc50275c0b93f58 |
|
BLAKE2b-256 | aae67d517e2380072948fba8001236d6f7496082670a0fb413721843d86170ec |
Hashes for rapidgzip-0.10.2-pp37-pypy37_pp73-macosx_10_14_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 299d736c345c4b7caaef37c2c3502f38b608ef6d15cb666cd35f5b7c34db97dc |
|
MD5 | 6b3b2c118815dbedea73238cdb0b84b4 |
|
BLAKE2b-256 | 6ee60a6bdc86f3de6aa039a29b5516485c27eb3a881ad495f2adfb41d3371ef4 |
Hashes for rapidgzip-0.10.2-cp312-cp312-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 43ea5c7b9626f8cea37d81f548deb27daba06e1628f75303fb2f7da17a11e37f |
|
MD5 | 1ffd4a44208ca8ac7f84ec62e9b4115b |
|
BLAKE2b-256 | cdeb4944e031c49a4152c1ed53f5062620b2eb738db1a4d7cac6d2d204c55613 |
Hashes for rapidgzip-0.10.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 54b5ec879d7bdcf5ad3e7749ec4f0cb1613d7df0683f5c162c3ce328ff69905e |
|
MD5 | 49956a8a094e6b928236267c71f49bb9 |
|
BLAKE2b-256 | e420e779716a2733d364f6070e7e92d62220a6028aaff547796980127eea434a |
Hashes for rapidgzip-0.10.2-cp312-cp312-musllinux_1_1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | af17f0a338d2fe6781abcf9f7386c0a67e98c7a918ecf666a5ddc215d932c5db |
|
MD5 | cf063437ae0130d104224bec1b578028 |
|
BLAKE2b-256 | bb3d77fbd144086bf2e49aafb3b498f4e97d5fde6a16f819a3bdadc0e5912358 |
Hashes for rapidgzip-0.10.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e995e30c77ddd0ca18d7ad4679887eac6e07e8e98105bee7337a93245de1e687 |
|
MD5 | f5476e8bbb73cc60c7503f3092dde378 |
|
BLAKE2b-256 | 9ad5b1289947fe7e3b3d6bb9f404bf40280afcd4965f25a9048e55556c01cdee |
Hashes for rapidgzip-0.10.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f563ffc341fe1ca0901544b61dd7f4e238ea8560fb88c5cc14e66c71b7d23c3c |
|
MD5 | ed147aabbd820e9238d3b87b98d45585 |
|
BLAKE2b-256 | e0099d5d94046d61c781242cfdf4aabc9b105beecfa8c464653be569d6528286 |
Hashes for rapidgzip-0.10.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8d37c8a08cbdc4941fdf366edbc4c4dd6e16ab5d87854c15c17480cc57dde683 |
|
MD5 | 075cdd027aea59570824d11b5d5e62e2 |
|
BLAKE2b-256 | b00aa5c08f2d1b77ca3602f2018c4dcee25f8a9090a60ed6e2d18da1a8016869 |
Hashes for rapidgzip-0.10.2-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2611eb9d46db9a55726ff65bff3cd610921b04f0ca8c13cfbc453f5fa42c6577 |
|
MD5 | 6fc97c27e2302b37ae5f7ec057e47d27 |
|
BLAKE2b-256 | 60c79eaf4c7877784ee9c4838271f6d00ceef5c6b4937a395f5bea8c0223095f |
Hashes for rapidgzip-0.10.2-cp311-cp311-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4551867d66d336e61c18858f74a8613d07a9790798f9677cb776aa0d8bab1e3b |
|
MD5 | c7bc63a36097166be26d3f5bd00cb4fa |
|
BLAKE2b-256 | 4ce9e426c0227170a1dd066168f943e99927b72a8ed195f95d45b4d965222162 |
Hashes for rapidgzip-0.10.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a8025b4997f4ed6fd1b6d6140589b5d40cd0f8504596b0350cbe2ed2a284e6e8 |
|
MD5 | 831185d43b4d27e39e72ab5750bc0b8f |
|
BLAKE2b-256 | 3cb135e372846cb958f190bdc9c2bd6be2a25eae6408a33950797ad9a27cd305 |
Hashes for rapidgzip-0.10.2-cp311-cp311-musllinux_1_1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ae8473eba16be87c83216a31f83e577159ef5b940e4cc9217b41a6a2657b577e |
|
MD5 | d1614ebf3bc525ef906e4654ea11c462 |
|
BLAKE2b-256 | 7fa56f006ecc7440ae1514ad23422c840b740bf17a5cd63675997f895cf1a244 |
Hashes for rapidgzip-0.10.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | af47de5fccd91e852c5f5908ce71c4560cd0545c384c606325c67110feb4b422 |
|
MD5 | 057aa164d45675c643bc5987d49ec89d |
|
BLAKE2b-256 | 677f26d93d8e72561d3ee5c3f8bfee6880c0dc960df897ee9d6cb42235624ce5 |
Hashes for rapidgzip-0.10.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e77948d2cc1e497328411e77d49297be1b84ccad6b936b6a9d8fe4e7ff1d9e91 |
|
MD5 | 1b7d18211e16cd2d550d8b84f0444def |
|
BLAKE2b-256 | 9f0c9e5a68e53bdc902c149d7dd4028619535a48d1c1d235a5fc783149ccfd75 |
Hashes for rapidgzip-0.10.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | aa095dd42d69363c3816706d73086b7cd65c2bfbeda5d69dbea5c6408e206599 |
|
MD5 | b6e75c17d59d4ba95cc3c568aafb7109 |
|
BLAKE2b-256 | 05bb5f1a2b6798a2de33341e747504890b6e98aeb01757c6f0fe863649fcf311 |
Hashes for rapidgzip-0.10.2-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 294d39c09145515a42fe3f411929f5e0a4c5e0b88f7f01a63cd9d7b82844c55e |
|
MD5 | 72762bbcbd35f5dc670150c382d2ff23 |
|
BLAKE2b-256 | 99a9988b9bbb5a0157abad3e75fe1f2c30d6080c5511c83ca1d10cdb37bd8490 |
Hashes for rapidgzip-0.10.2-cp310-cp310-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4be7d3a787131584b200ecf6b4050dcdb62dd3a2e503ea790942cffa5beab21c |
|
MD5 | 6cd651e923c47792a51dfcc6fcd5a1ba |
|
BLAKE2b-256 | ee6a251200b8a484f6acd30be8b6e3f21204c44252e39332d140f1467f2e209e |
Hashes for rapidgzip-0.10.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cca8bf76e0701e36b95383b58c0543770a4503f3c5940ed086573f24320a2887 |
|
MD5 | 18e37d5e05a067e7869eb70f2dde8404 |
|
BLAKE2b-256 | f90116c8b1faae847920761c46f17b9b1f6389bb9035cdc7904e81525d1f210b |
Hashes for rapidgzip-0.10.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2563793356ca094dfc9cd5c2b675f0ee39c60bda72a900e72f0df6cfe41e8a5d |
|
MD5 | b752f6b54c69bfa35ebad1fd08b64dba |
|
BLAKE2b-256 | 9428cd5b58b0c916531c3ea9ff1c1f86b3658faf766346d578e5f0508ef89f21 |
Hashes for rapidgzip-0.10.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e0194837f28b763f3d8fcc2e9a26620dc63a28f95e76564315070b611fb27e0 |
|
MD5 | ff54682441d494578ee2541a06a8ba76 |
|
BLAKE2b-256 | 9999969552a94ed6dd57fc9a0270657b5ca95b5fd3b277edcd5efd29374864e4 |
Hashes for rapidgzip-0.10.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 51212a0c10f4c4fe41b7fc900e1f790b9a0fa65bc69bfa8b8edde169c43d4bd1 |
|
MD5 | ab76c171aa5fa297c5046e9c085a3bc0 |
|
BLAKE2b-256 | ca693c1ee82abd86a5d993ae083220809b20c3619370f524143b685bfad1169b |
Hashes for rapidgzip-0.10.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7cf2b6977b5c3ce65c096ed746b2e20a9e01dbc8229d0f796515eb7723de7fa7 |
|
MD5 | 1ec53abe164893091babb2bd3659c9f5 |
|
BLAKE2b-256 | 294ea2977d0900c7567c283c88dec48df03d13ce084e2d50f8b9597cef05f902 |
Hashes for rapidgzip-0.10.2-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 75ff05c08a06e34e0ea0b0850a9f2c32b9c7f4f682ac33387659370fa7e10645 |
|
MD5 | d9961d90ee7efb9f778a6e2dc847d223 |
|
BLAKE2b-256 | 3a4b40d4632f680744c6b82232f8393803ddd69fa67c5603ef9b141d73b77e8b |
Hashes for rapidgzip-0.10.2-cp39-cp39-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d94a0154d9c59b6065aa227b5e0724e970c11d164d52610e7a2401a25c4dd9be |
|
MD5 | 44212c002d443d2aaaa45f50e8babc98 |
|
BLAKE2b-256 | 86230e03df1524c600b6664f47df5f61dd6fae1e382dd0828bb42c9f56b81e82 |
Hashes for rapidgzip-0.10.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | deb115130cbb23f16df2f534084249532bd4e98e60df211cc0b81c06be3435dc |
|
MD5 | 5f6f4def31bd70655dc5bddb24648aad |
|
BLAKE2b-256 | 44604c759bc092fb10c67d38db5c0d69996469da55ee0c7445330458675f84b0 |
Hashes for rapidgzip-0.10.2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff7e74dc6d21c2b414e691bd52cb68580acc3447ff4e6d1e7b921a5ab70d52eb |
|
MD5 | 116b29400b025962c377108c48c9285a |
|
BLAKE2b-256 | 0b3c9ba52fe17f10e995bdf69ac5b9896222ccd67fc84fd30b9cb6c0d7c605fa |
Hashes for rapidgzip-0.10.2-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4bbbfb1aa7840e5d1b0fd5aa1a50fb8302be0fec5ea3d2e6f6e8d0bcbbcfbfcb |
|
MD5 | 4027a1101fa30de41963e2a6bb485fa5 |
|
BLAKE2b-256 | 9a1a4c9f080de9fdb7b4bd6243aa568dfc3f3cc0ab19dbeb9bdd174460409d0f |
Hashes for rapidgzip-0.10.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e4a7b200919ee704b9d6ff2860e5694e8e5226bab4009734455b275005b7a55a |
|
MD5 | 28be4517cb39c7cc5acd43e7b5b12114 |
|
BLAKE2b-256 | e9f2bd38c1417463d93aca0ba22b316121115bafa93ad49d49a403a76de7cb7c |
Hashes for rapidgzip-0.10.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3107535a2f37ad8a602e39555129b31c0b483f84db9f6cbcbfecd1bbd8faf97d |
|
MD5 | 2b0b0345098261a063743271cb9f4938 |
|
BLAKE2b-256 | b06b064efd249ed82de3cefed5eacbaec7366a646d0043a329d6278d81bccf9d |
Hashes for rapidgzip-0.10.2-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d09dbd0ce3d7bc11101a6b0ddd1da746c3ceae72e500219a754fc20375154fc |
|
MD5 | 0e2856025f26ad43daa04b96c023e472 |
|
BLAKE2b-256 | 93ab27c41cf6e5d7f6b903f42b13ba86dec9f9464cc28b300d4b48131b53b41b |
Hashes for rapidgzip-0.10.2-cp38-cp38-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31adbc5d0248c3d8f1a8a32c0831713c252e9407120edc67dc7c96e0934e84b1 |
|
MD5 | ff6691425ea8c8ffeb20dc3277c04a9a |
|
BLAKE2b-256 | 9f2df41589ec301656c7dd9af01077e488c69c08712dabe90b9b6132725f858a |
Hashes for rapidgzip-0.10.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 854c19542fabad7fcdca16c50129eae3ede2d7a4231b828e96d38e719452ffc4 |
|
MD5 | cc803768f556a761e86a9fc998518983 |
|
BLAKE2b-256 | 4e0700e1dfe20423621f4787758e10c8d103dd9920acd600b57de0769a526303 |
Hashes for rapidgzip-0.10.2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b53008039e3b501766b3b3d4d705b0bd5979fb3a63e1e2a80d5ff4a7a51904a3 |
|
MD5 | c2f638ada0a08750f246b1e53ecb274f |
|
BLAKE2b-256 | 70cf27c4d580f486f99fdf186bde67924c9b736cc42083ef3abde3c08558294a |
Hashes for rapidgzip-0.10.2-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d8fd675b0afe8ee94f7856b75d353528163433d62ff57af314a1cd576fc03d54 |
|
MD5 | c754bef881fd766605d01d82a3c77b51 |
|
BLAKE2b-256 | 3104796bd34c5865301b4593428fdd6d73e49bad87a07ab5faf35bd14f2dc3b1 |
Hashes for rapidgzip-0.10.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d7947c284e3cf7b03bfc12565974f69c05e75732dbad31c37edfd5bb5a74787 |
|
MD5 | 5b295620a91e3c535d49037f9fd3d03d |
|
BLAKE2b-256 | 55fb011b619161a20bbd82cdd174caa2535940689e0d291c63ea8e90b5072d4e |
Hashes for rapidgzip-0.10.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ada7c66d8a2a8742a2df5e6550886766e1b03f0d08e8449b8453c77440ba589c |
|
MD5 | 1ac226cfb816f7ce8fe599ca83563cf8 |
|
BLAKE2b-256 | ff627e73640f3735a18ad49c86db169d6e361adfc7c9d9c3e19bc4f9be904bd5 |
Hashes for rapidgzip-0.10.2-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 876f77ff4530f39e90fe9003c55f7835361f5efc7a7b4cbf95916ddcb20f7af6 |
|
MD5 | 866f55c1b5e25220be796c2686edd0df |
|
BLAKE2b-256 | 9acaea6198a1d9894bebffd33e05193185382f3fda545ca92f55ec3f2d3a0766 |
Hashes for rapidgzip-0.10.2-cp37-cp37m-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 32343970a40dada0616876253eed909c26462407686a947c1ea326c7a8c9fb4b |
|
MD5 | bd20ace438a3f1f0f9f8a2e18c1fb580 |
|
BLAKE2b-256 | c6947eb44e83cc5cad14ab4b9f2a529cde2c27ce74bc9d671d594c89e494befc |
Hashes for rapidgzip-0.10.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3b7269b1c410ef4ed44dd44c79e27cb358d495e2e31e73dbe98b642121d9138 |
|
MD5 | 525ac7a57f20494228a19d622c88b33c |
|
BLAKE2b-256 | 9cd5cbdc2fab4384be01b37dff6c9af5584888b39312b3c2a1e09f2606ab2200 |
Hashes for rapidgzip-0.10.2-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3cb653f97de256c1833b52ff25ee8dac605b4006f86dc07c944c936918296074 |
|
MD5 | 599f7d03074a8981daddd98d4e9fd079 |
|
BLAKE2b-256 | c5bcb7ead2c326ed0f424ef162b536b87d192c304f502f4119b8c483d3339ffe |
Hashes for rapidgzip-0.10.2-cp37-cp37m-manylinux_2_28_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 163766ee3daabd9495f36725b9481b9cf11f4f477b60698386c1dab0f43470df |
|
MD5 | 58582495a85a37ec94b5e96009154602 |
|
BLAKE2b-256 | fa384a1a85b94a9c4304e0973aa3f7c1db3293797c92eda24eccf3e1489cba9d |
Hashes for rapidgzip-0.10.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8900818ddd35a331ea0922459677203093f37b6724ca75869b7cbe8e394fcd20 |
|
MD5 | e55731af1d3b38a2dbc5afc1763f20b4 |
|
BLAKE2b-256 | e7671a790ce63f588aa4c90b472ebf84249fc55e4fa7a206c06df78fb11b9478 |
Hashes for rapidgzip-0.10.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cbb6862eb33d8907501b305ea2f24183d9a3903ba25345306cd3bf7b747a6b2f |
|
MD5 | 7fbac2445646b84117d00365da71bbcb |
|
BLAKE2b-256 | db22f519e6cfbc2ce6e91dd247ca840f2cc1c4395a8ee3218eca6ce589cb0fd4 |
Hashes for rapidgzip-0.10.2-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ada38b4875f3887e969576735661fde490167908fb178f330c4b158cd3462038 |
|
MD5 | 78a40ed9792f89a8c3780a6b90176b1c |
|
BLAKE2b-256 | b9d85f010cfa169912d86dda75b0b2e4e62aa0883f476b7dc2c87cc71146459c |
Hashes for rapidgzip-0.10.2-cp36-cp36m-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5155b0ba267120b085f30ad130e84828ff302fc43d823d9b142f3c752674b6eb |
|
MD5 | 447a34f03e18b992606bfdffc4ff511d |
|
BLAKE2b-256 | 81b844a12b9807b970b6c7490c68ea7747211226b3e140216df65137334d4047 |
Hashes for rapidgzip-0.10.2-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | eb536b7628c99886b4ce4169abb71f8e467efa44f7bf4f0e4e54c1da5ae973d4 |
|
MD5 | abdecd32203b2359a571325e7b2daba1 |
|
BLAKE2b-256 | 36eaaaada1dd91cc15351b9bf4cce66f99455603a19d8e63e4c849dd43cbfafb |
Hashes for rapidgzip-0.10.2-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7c7575e9cb90f1254ebf1da98287ba3a0fae4a9d62ee8af6122c0a04cbda1a7d |
|
MD5 | 35e95a2dc1bb771f7e98949b1009e753 |
|
BLAKE2b-256 | 6d8b284b25efbc56accfa89df35f6dcf55e47fcc6a772e28194c0ec2ae3a4da2 |
Hashes for rapidgzip-0.10.2-cp36-cp36m-manylinux_2_28_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0afbff59b862139678881ae1ba528e207fc09b0be3b824837a795b3a320c2042 |
|
MD5 | 1155db60c34c077e2b212a92f4cf497a |
|
BLAKE2b-256 | f46fdb3b4ebdcafb67340c139c88c2041f733831a3d0011278fb9dc96888010e |
Hashes for rapidgzip-0.10.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 85d4dd831ca251f90a2f2c69e59b825f7131381807bc5df6bc8832c6d433c036 |
|
MD5 | 008fbd7bb1cd13910af9bf4f25a499ef |
|
BLAKE2b-256 | 017cf58b1927380b39966494dfd089ddda5d7c116b8ae6dc3509ed894b978a2a |
Hashes for rapidgzip-0.10.2-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e33923938c982a696d27115fcd6e985402569d8af059b91174620429f5e1d59 |
|
MD5 | 71a670ade0be3145720f477343612bc2 |
|
BLAKE2b-256 | a54f16ff33ff67ea7f3898c67b3e310fe795d1fbf7bb0e8dc41dae202dd1b907 |
Hashes for rapidgzip-0.10.2-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d5b51ed2da2a51c14bc7194f75e720cfa9326239e0922ba1e5ad9d02b1a70386 |
|
MD5 | e139f16d80558c8379ffda62ee932200 |
|
BLAKE2b-256 | 7b847b25743028261d04acbaf8bc1573049980fcd150cb54c5242a815017c0ad |