A reproducible benchmarking tool for evaluating vector databases under realistic workloads.
Project description
TopK Bench
A reproducible benchmarking tool for evaluating vector databases under realistic workloads. TopK Bench provides standardized datasets, query sets, and evaluation logic to compare vector database performance across ingestion, concurrency scaling, filtering, and recall.
For high-level benchmark results and analysis, see the TopK Bench blog post.
Overview
TopK Bench evaluates vector databases across four core benchmarks:
- Ingest Performance: Total ingestion time and throughput as systems build indexes from scratch (100k → 10M vectors)
- Concurrency Scaling: How query throughput (QPS) and latency change as client-side concurrency increases (1, 2, 4, 8 workers)
- Filtering Performance: Impact of metadata and keyword filters on QPS and latency at different selectivities (100%, 10%, 1%)
- Recall at Scale: Recall accuracy across dataset sizes and filter selectivities
Additional properties evaluated:
- Freshness: Time from write acknowledgment to query visibility
- Read-write Performance: Query behavior during concurrent writes
Dataset
Schema
The benchmark uses datasets derived from MS MARCO passages and queries, with embeddings generated using nomic-ai/modernbert-embed-base.
Document Schema
Each document contains the following fields:
id: u32- Unique identifier in the range0 … 9_999_999text: str- Text passages from MS MARCOdense_embedding: list[f32]- 768-dimensional embedding vector generated from thetextfieldint_filter: u32- Integer field sampled uniformly from0 ... 9_999, used for controlled selectivity filteringkeyword_filter: str- String field containing keywords with known distribution, used for controlled selectivity filtering
Query Schema
Each query set contains 1,000 queries with the following fields:
text: str- Query text from MS MARCOdense: list[f32]- 768-dimensional embedding vector generated from thetextfieldrecall- Mapping from(int_filter, keyword_filter)pairs to lists of relevant document IDs (ground truth)
Selectivity
The dataset is designed to enable controlled selectivity testing through filter predicates:
Integer Filter Selectivity
The int_filter field allows selecting specific percentages of the dataset:
int_filter < 10_000→ selects 100% of documentsint_filter < 1_000→ selects 10% of documentsint_filter < 100→ selects 1% of documents
Keyword Filter Selectivity
The keyword_filter field contains tokens with known distribution:
text_match(keyword_filter, "10000")→ selects 100% of documents (p=100%)text_match(keyword_filter, "01000")→ selects 10% of documents (p=10%)text_match(keyword_filter, "00100")→ selects 1% of documents (p=1%)
Dataset Sizes
Three dataset sizes are available:
- 100k: 100,000 documents
- 1m: 1,000,000 documents
- 10m: 10,000,000 documents
Ground Truth
Ground truth nearest neighbors are pre-computed using exact search in an offline setting, ensuring accurate recall evaluation. The dataset includes true nearest neighbors up to top_k=100, allowing recall evaluation at different k values.
Availability
Datasets are publicly available on S3:
- Documents:
s3://topk-bench/docs-{100k,1m,10m}.parquet - Queries:
s3://topk-bench/queries-{100k,1m,10m}.parquet
Installation
Install TopK Bench:
pip install topk-bench
TopK Bench is written in Rust via PyO3, providing high-performance benchmarking capabilities.
Usage
TopK Bench is a Python library for benchmarking vector databases. The core API provides functions for ingesting data, running queries, and collecting metrics.
Quick Start
import topk_bench as tb
# Create a provider client
provider = tb.TopKProvider() # or MilvusProvider(), PineconeProvider(), etc.
# Ingest documents
tb.ingest(
provider=provider,
config=tb.IngestConfig(
size="1m",
collection="bench-1m",
input="s3://topk-bench/docs-1m.parquet",
batch_size=2000,
concurrency=8,
),
)
# Run queries
tb.query(
provider=provider,
config=tb.QueryConfig(
size="1m",
collection="bench-1m",
queries="s3://topk-bench/queries-1m.parquet",
concurrency=4,
timeout=30,
top_k=10,
),
)
# Write metrics
tb.write_metrics("results/metrics.parquet")
API Reference
topk_bench.ingest()
Ingest documents into a vector database collection.
import topk_bench as tb
tb.ingest(
provider=provider_client,
config=tb.IngestConfig(
size="1m", # Dataset size: "100k", "1m", "10m"
cache_dir="/tmp/topk-bench",
collection="bench-1m",
input="s3://topk-bench/docs-1m.parquet",
batch_size=2000, # Provider-specific
concurrency=8, # Provider-specific
mode="ingest",
),
)
topk_bench.query()
Execute queries against a collection.
tb.query(
provider=provider_client,
config=tb.QueryConfig(
size="1m",
collection="bench-1m",
cache_dir="/tmp/topk-bench",
concurrency=4, # 1, 2, 4, or 8
queries="s3://topk-bench/queries-1m.parquet",
timeout=30, # seconds
top_k=10,
int_filter=1000, # None or selectivity value
keyword_filter="01000", # None or keyword token
warmup=False,
mode="qps", # "qps", "filter", or "rw"
read_write=False, # For rw mode
),
)
topk_bench.write_metrics()
Write collected metrics to S3.
tb.write_metrics(
f"s3://bucket/results/{benchmark_id}/{provider}_qps_{size}.parquet"
)
Supported Providers
See the providers directory for supported providers and their implementations.
Example Deployment: Modal
The bench.py file includes a Modal setup that provides CLI entry points for running benchmarks at scale. See bench.py for the complete implementation.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file topk_bench-0.1.1.tar.gz.
File metadata
- Download URL: topk_bench-0.1.1.tar.gz
- Upload date:
- Size: 479.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e77694d4b15b0d892e80ef9b749cfa4ff56ed6aa542b44072df5779ab49b3e4
|
|
| MD5 |
8f54158a4e146110511233bb3a1f4010
|
|
| BLAKE2b-256 |
fd0f8bc77e7606075de077defb1c0fdcdf2dc13f52ed322082c4e5b008e63d71
|
File details
Details for the file topk_bench-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 11.7 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a0116e40d7b200dc2a60bf14058922807cc3d98bd44c1d0cf460e3dda1ddce3e
|
|
| MD5 |
1af9b9de4a2fa483eb34f3b0e07c421e
|
|
| BLAKE2b-256 |
71f35bfa4e1f953ba57ecec1b9507105f034297f3a008709f3bdeb25f7a3128c
|
File details
Details for the file topk_bench-0.1.1-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 11.7 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce2bbfdb98938b2c8578c04d66760bc01b9a72a5d2e5a6e24668420a01f0c522
|
|
| MD5 |
d813ea5734849cd3f9780ac2bc2b936a
|
|
| BLAKE2b-256 |
6cbfb53ea0f800c426eb2cd8507301b15e2515dddf7a1fea5edf7e86f42da74d
|
File details
Details for the file topk_bench-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 11.4 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84d9d6d27b992cd817b3f598251bb96e79fb6ed4a5cb2588594ff45edc17cc99
|
|
| MD5 |
39d29efc7dccde5d77769414fba6e372
|
|
| BLAKE2b-256 |
499daf8a82045330ddb4d5d0b7308eb62bbd7ebb34d4e72f9dd2c61e8ebbc5e4
|
File details
Details for the file topk_bench-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 11.8 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c7a79c9e5238408119290ae3fd393759327a0859e3fc49da2f1b8cba6bf51fb
|
|
| MD5 |
387bd156dd0523d896f966383338667a
|
|
| BLAKE2b-256 |
2dadd97d0b8fddf766cc01e38cd9b037de6509eb347c419c1488d9c1d857e77c
|
File details
Details for the file topk_bench-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 11.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5685e66074201d99de80f7d178b1676222d17e39735e9df5596053913af78182
|
|
| MD5 |
4bf98b8129bddaf250ed874650446a65
|
|
| BLAKE2b-256 |
bf2a9d1d6c53adf4ac8a0d85bbe24f66381f5ba4cce7f3a80684041e339cf5ca
|
File details
Details for the file topk_bench-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 11.4 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9da1c7b507d7053de2e682360e58bb9b94ecdca26b1589b8cfa8b8f9955130c4
|
|
| MD5 |
b0a90554e5c8722f80fbbe51e1d6a18a
|
|
| BLAKE2b-256 |
e163ace5d74ff63528d2e32478136d9c3e79460d617819b995f693e87cd2f910
|
File details
Details for the file topk_bench-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 15.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
030826115d10de211f5af7254ccb5d8695cede8730cdcf4cc7cf9efd18b0fb48
|
|
| MD5 |
3e0587ea281012600e25ee21e6614368
|
|
| BLAKE2b-256 |
c5f9a41d2778db4669f747eb042ebba8b546878644378f293962ef4eb9d133c4
|
File details
Details for the file topk_bench-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 12.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1fa0403b014f8d2a3b176ace89f304fba16262a5c57e683b41e63c898804983
|
|
| MD5 |
a4ecdbd0d4b722175836fefc98859109
|
|
| BLAKE2b-256 |
b8b4d397010e47e3e3614c9f5b94a98e8e6bcdb03fd6e3a39c621a86498091df
|
File details
Details for the file topk_bench-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 11.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec2141f1ced6a2b1997b7aead2ab63d1fb888fd64bf49e7ef2f6775f5287bce8
|
|
| MD5 |
d434f18d1a5af3199404ed9cc685a75d
|
|
| BLAKE2b-256 |
d91635f0dc1e97de602c3061f271aea64804d6fd2adc051510abfa8849ac0cf5
|
File details
Details for the file topk_bench-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 11.6 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
834e9224aff41b00d29ab6c73824a1df740367ef303910cf24e99fad6538b981
|
|
| MD5 |
c7f32292949fd96b9050f2ad855f8a53
|
|
| BLAKE2b-256 |
7fce69dd74e617fb4800fc109cf96ede7fc3dc8aaf5dcb8ed3ac8827bd131231
|
File details
Details for the file topk_bench-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 10.1 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49bc2ffc2ed32063fa22c1d8ec0966a3340c0ff1dddaee4014226752fc7aef6a
|
|
| MD5 |
a7cec248a57bec29f7102a080b67173f
|
|
| BLAKE2b-256 |
ef2976d41dbf7f8e9c06cc82de69f9ff793e56360bcda5533a4a38beb74ffd65
|
File details
Details for the file topk_bench-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 10.7 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1e49efb832e759d51fe68b057a530dd6384353ddb277f9fbb488344be6cabb3
|
|
| MD5 |
efe325909e8a6f57d38ddf86da17d276
|
|
| BLAKE2b-256 |
4d2c81bfe456e0f0a1679ececdef3affa0f9eb0173a8e1403864b2bfc57fa9c8
|
File details
Details for the file topk_bench-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 11.7 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1e74ad66f59961c8e573233022d980ce0e8970d55ec99c6e9b74ad2c6cf06cc
|
|
| MD5 |
75871117bc7a5972031ec9450e618c9f
|
|
| BLAKE2b-256 |
43027a965a6e294bd9aee16cd7225e71dfe5c573ba9b7fb5c9eb14d6b8dd8253
|
File details
Details for the file topk_bench-0.1.1-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 11.7 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be7dd7d0615f4e68f81a903e1f4f69cf95dc5f50ef7bbeb126d12e8a8d7ab512
|
|
| MD5 |
42c6e86a3992c0227d31dd54ed29ed75
|
|
| BLAKE2b-256 |
bf222e896da293de3b1f851925d8c01af96ddeb66ac326ef1185559c9563d82d
|
File details
Details for the file topk_bench-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 11.4 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c87ae9f8913fa7361806c77e3c114c206fe8abe81160ae18d13e34de0f6eca77
|
|
| MD5 |
ae0ce30e4c614889dbd962dd905891fb
|
|
| BLAKE2b-256 |
db3b73046fcd84cb3692f6509ab13b694fac295c78e97079d05505a021f79ea1
|
File details
Details for the file topk_bench-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 11.8 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f66105fed24116aab7bc75568ddb609fb1ee8f321ced670fc7f95ee78fc04e53
|
|
| MD5 |
49efd13b78c9d820de64fbbd218014ca
|
|
| BLAKE2b-256 |
4fe400a0c15fe19032b74e7a74dcd48c118831cfe30f2cbfef7ec5bce92d31d4
|
File details
Details for the file topk_bench-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 11.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99698234a71624ff15e4374e184d8bc09ce0ae48b61d15dbd34bfbf5756a7160
|
|
| MD5 |
250567ca3883d2a1bebab2118a2fe405
|
|
| BLAKE2b-256 |
2257c2dd92d8ecb46d45f85f2dc3ccaef4b99a4e75fd580b1ce55e42202d2b2d
|
File details
Details for the file topk_bench-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 11.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8c5c3832080318c8944cec5bb1fd74333b40cacdb59cd6ba7ec20faa6e13036
|
|
| MD5 |
d9c24ce23bcaf8de2a126a670ae4d83f
|
|
| BLAKE2b-256 |
ac8e88b4dd978355a8c2bdfd303d0c68b6cfc2060e8be569f7541ded2874a4a4
|
File details
Details for the file topk_bench-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 15.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12520aa574ea94351da51faf80cdf71bf965751148fa8a8d273462cac37afd51
|
|
| MD5 |
cce69798e9182d0ee79796ddf2e1ea65
|
|
| BLAKE2b-256 |
1bb0068d364969d7f7cc3435d82db5088e38231993d6cb6af314d15f2b4e3b05
|
File details
Details for the file topk_bench-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 12.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
860393303727e5c7a4541c59643c64c79ac8ec52ce9af63eee773c78642ddd09
|
|
| MD5 |
57a93f89cf46088f6c9cb92f84eeb228
|
|
| BLAKE2b-256 |
32807722097d6b6eaa0b42423a3783a007625a64d6e1684fcf07ad66ad9639d9
|
File details
Details for the file topk_bench-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 11.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f1159dd98baefd47a1871b7e638087fccd029838029c9473dbb6c83908518f3
|
|
| MD5 |
60d07445d5cb229fb9b2e78af9a2c3e6
|
|
| BLAKE2b-256 |
29112e1446dd0aaa5f5ea1ea0dd14e60a07b26e63079c975feb72d86020456b9
|
File details
Details for the file topk_bench-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 11.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98e392aa5106affc3e4e28fa374990bc9c349872f68b53528b7e9c4a8c095ed2
|
|
| MD5 |
428ce6fb130f7500078664b15fea7ca0
|
|
| BLAKE2b-256 |
5c67495bbe61e4a4db295f0da691bcc07028a602d37a51e4fcf754b505ddb5a4
|
File details
Details for the file topk_bench-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 10.1 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
497fc10e33b1f508af3e7eb717b041935df009ee6674efae8633aad15f868f84
|
|
| MD5 |
83e04139a92281f4c4a46cc0b378f669
|
|
| BLAKE2b-256 |
2bce2a261bd7ef42e7ee67561b59636d1baf74c2fc0b5a091206e389344712db
|
File details
Details for the file topk_bench-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 10.7 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17bf70710401445f2830e06857565435b4f262d0240f4b1cc802331e2d26d5bb
|
|
| MD5 |
ff2d11d980481db2f09e9994308e3235
|
|
| BLAKE2b-256 |
f26889b768b34394206844654fabe5fbb05cafbeaa4de62a5670cc057a5c0c6c
|
File details
Details for the file topk_bench-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 11.7 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16de1c879678f8d6833e0ecae11bdf362a739cf26d2c3cc31e75cf4404ce9672
|
|
| MD5 |
231fae6d23b62d76560d3db1f091e33f
|
|
| BLAKE2b-256 |
f34d80eab0cb3a4ff842be04aff4e3815facd6f1c2405f3a0b3964ab2d6d9793
|
File details
Details for the file topk_bench-0.1.1-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 11.7 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82dc76570a51a180f2724fb9a83861e4fa64d5a03a014482b2e44c59f252c955
|
|
| MD5 |
1506458e731c6b48226dbdf3e48e265c
|
|
| BLAKE2b-256 |
b604f8da6a8bd492518124a18bb8b581521a50459b968f203c361b59610f6f65
|
File details
Details for the file topk_bench-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 11.4 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06f294f9f4b6996da80ca3faf6990e6010f31c0a761160155dbdc1f47e03b914
|
|
| MD5 |
bf01013f5c89710dc8a97cc83bd09942
|
|
| BLAKE2b-256 |
37efa0cdfa7c83692ac94141f8df2ad75c7fa927d1a46e2afebaedd5753e2cb9
|
File details
Details for the file topk_bench-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 11.8 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c0b3aae6e1483706cbb88c57cae718c82bc87e7cb347dc7807caede7c8c2bf0
|
|
| MD5 |
b9166ae239d4cf8c2b7b09dc76523cd1
|
|
| BLAKE2b-256 |
6b9e0c90045db7b4176d0ada531f7e4a16486934305cb5383d1d3868b330ff91
|
File details
Details for the file topk_bench-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 11.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74950049b582742e2a8fc0421240a1625a028ca824442017969ed6b4eb875d33
|
|
| MD5 |
499f7764545f28d04af23016059814d4
|
|
| BLAKE2b-256 |
8afd64052e15d63faa2c8c714b0358aff9e8bca8db2888c208e46d2278cc7a57
|
File details
Details for the file topk_bench-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 11.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
372685b7de2f2e8d2d9b7c8053e29fb25f4de48cad186579a460227e3057ed9e
|
|
| MD5 |
8573ec0d3505fdce2d30a0c7de6491c0
|
|
| BLAKE2b-256 |
a71edd7aee9c9da7dbaaf34f85893948eab88ab2c160f7af459998aa21e267b7
|
File details
Details for the file topk_bench-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 15.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
704a1c478bad77cddbe32564c3ba25a30999e9491c32ba533b82d5f1cb6faf07
|
|
| MD5 |
73a02faccaf32b5ff12f6f1091204ba9
|
|
| BLAKE2b-256 |
fe1dd99db647182928e6657e64228ebbbe50a7933a9520eab474d400e77b28fb
|
File details
Details for the file topk_bench-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 12.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bcf3d7a93957f4910efd4864d78a3ea399a51e8fbacec1dff5586126a1d31f00
|
|
| MD5 |
2da01766cb53bb177ede65f8ee4a9d7b
|
|
| BLAKE2b-256 |
32a51921a96c8afa68bd0fdcddf5a6f5ce374f69d536438c05054159b1b69f97
|
File details
Details for the file topk_bench-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 11.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f98174c0a428793123cca21f4ea584a41f8cb8982414c49b28db313e5359fba8
|
|
| MD5 |
ace6bb5428d0fa29e8811e2e387a8d8e
|
|
| BLAKE2b-256 |
9c4a5d0d06d5a7be3f4cf4c4b5185581e8999c87d06b3375964d62741b9df974
|
File details
Details for the file topk_bench-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 11.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eefa028bf09015702a8b53bc8f73336795cb8730d794f6fd46045d7fee47ae91
|
|
| MD5 |
eac1ee3e7abdec8146e568d82b5c2699
|
|
| BLAKE2b-256 |
b23d13a26fae96186d837b643c5439a9bac92f2eef2819ccfb6cbc297204b8b3
|
File details
Details for the file topk_bench-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 10.1 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49116f1594f28f0023719e19d33e29d972f404a1c2161da860ad8cf6a82461de
|
|
| MD5 |
c9783fb40d6dabd131b4b33e25504eab
|
|
| BLAKE2b-256 |
d941c41dde70eb24a53d5c66e55c7403d9eeaa9d174c4662852468794cdee8f6
|
File details
Details for the file topk_bench-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 10.7 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9398b3da8138d1809ae6c8de6c14eed6ad077e0bae08b5eefd518fae389281e2
|
|
| MD5 |
c4681e15bdede83a92a3b796ee01ccb6
|
|
| BLAKE2b-256 |
bb9a59a29eaa015b400d2a439a360dd4182b26d311537d82c8c534429c623dcc
|
File details
Details for the file topk_bench-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 11.7 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2fac339d67586f61b2e02d0ad1a0a9551f6c6b99083f4414657995b92eca1b64
|
|
| MD5 |
05a6e902792a1a57a160aff551993fbf
|
|
| BLAKE2b-256 |
97e55c4397d52ba0cac0e99451999729d0bfd84d9d5c5ebab9017bd7327e6f4e
|
File details
Details for the file topk_bench-0.1.1-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 11.7 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f608c15b2b08eaa7206e7cb92a578dea6ba34fa05db8faa468036a117ae86f53
|
|
| MD5 |
dd3e9d252c6608bf45dc3156424143f6
|
|
| BLAKE2b-256 |
8e8c55a992ac59d7613f3b9cd98854e186a200f2ca013c3ca9dba00e197bdf57
|
File details
Details for the file topk_bench-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 11.4 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5421a012348ec58188224f839475d5fd3ea8f14694de3af62b62f0bc6ab32ef
|
|
| MD5 |
76a480057fac296d6756699d38e988fb
|
|
| BLAKE2b-256 |
a9746c4ab549da896c99b6dca58f88746e44d123c9f6766b429a0193828c7bee
|
File details
Details for the file topk_bench-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 11.8 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d36b1c831947eb5bebccb6380fc0cb41fa79f4eb8c6140fef6732a1b5860fda7
|
|
| MD5 |
44a5cd9510d2a0059cb9f58557c6d151
|
|
| BLAKE2b-256 |
75aa6a6b8f04b08e9fd0052fdab95cfd8f6a9aff38c72941b9f171d0e1093bb0
|
File details
Details for the file topk_bench-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 11.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1a5d26dd90d987ba01f12ee1ac1f3ae06a3d421ddbc79692c5abe54f8d27a27
|
|
| MD5 |
9de19ac5c91cdc116ca3442261100346
|
|
| BLAKE2b-256 |
e1ac99cf3c6f1bef28b2204bfd969ea5a8b0f41c8db4795bf62c78535d144d1b
|
File details
Details for the file topk_bench-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 11.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
543b866617841f7b23bd586ebcc81c00e35d980ab367713076f385cef6ad0d5d
|
|
| MD5 |
ef7dc22b76133c4eabb61cc50d631aea
|
|
| BLAKE2b-256 |
9e333661356c5f3c05df5f9adeefbf5c1d38b148f8ae61365d9b0ae54b465dc8
|
File details
Details for the file topk_bench-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 15.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
236703f4d4bfb65496f5d2505c41c91a5fd33fe834d13801d7986e40f8c9ff98
|
|
| MD5 |
a78570f51374213ff9059a2be65ce455
|
|
| BLAKE2b-256 |
23153f708d1e248a950548cde3d8c399cb4449537077dff7250bda69c368f887
|
File details
Details for the file topk_bench-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 12.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5fa36a6e34b521f025323fccd39df2c36935f07215e1a2a81242240bc8b7762
|
|
| MD5 |
d3b18269b6eb663ec51d6eee313be66d
|
|
| BLAKE2b-256 |
fa86e139f66780bd0b6ad9b2ed4d451894063c713a82b1b1b7828be959fca22f
|
File details
Details for the file topk_bench-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 11.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9900b10a72a3a8d75528533699ccc911374bfd1214006c8c4758b2bb2cab7aa
|
|
| MD5 |
d43da488a313137520d08320036ce36b
|
|
| BLAKE2b-256 |
76831d99bcc0a6bc635138d6849c97aae0178d9d850900c50d31085bee307c26
|
File details
Details for the file topk_bench-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 11.6 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7724f486b617ba6bbef516283635e6265d0238a7d32b2580196b86c7fa079d2
|
|
| MD5 |
fb82be897f2206e36ab42f0c45464ced
|
|
| BLAKE2b-256 |
85133f905cd0f3e1f5a4b15efe543f333075c66eb8f3b482af1a504f41014cdd
|
File details
Details for the file topk_bench-0.1.1-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 10.1 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67e44ee663de10c855f8f11bacf402abfd9b4fb9e59deb7447420dd1cdc7048b
|
|
| MD5 |
f141b37916e06c258c8ace4616046f13
|
|
| BLAKE2b-256 |
2fa147bfe7343ed9e77362653eb2923814957cd26a926e1f3ed25ff5971fd346
|
File details
Details for the file topk_bench-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 10.7 MB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3709d0e928e00c61c4d1d004688731bd165e04a50cb29b2300ffb31dc20c359
|
|
| MD5 |
40f863c6bb6af6e1ff1ba93e1a3d23b9
|
|
| BLAKE2b-256 |
857a8d7e544b9ad2c69701cc210a2ee872ba1635ab492f300edd008209188d3c
|
File details
Details for the file topk_bench-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 11.7 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
676dd8bdcedb46b2d8424eed6486f3fd6872042e251e63a78287096dcd8104fb
|
|
| MD5 |
bb96ab4463b8f92d161bdb5347fbe775
|
|
| BLAKE2b-256 |
89dd8ec20b74879c98468a818f2ee62b5c0d7499348cb36063aa9e1b143421d7
|
File details
Details for the file topk_bench-0.1.1-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 11.7 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0e84794620717e0a2e5537e6023c7a8cb6116bfd2ba1ae75756b42c6284316e
|
|
| MD5 |
b5f97e1cdec8a91cae7baac3b8b500f5
|
|
| BLAKE2b-256 |
74014f22c821e543e9398f38ff622443eaea8697aa293a649b1668138380530f
|
File details
Details for the file topk_bench-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 11.4 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc85668f90faa34d28ca47003af735110dc4337be521f420e8c9d577c86659d7
|
|
| MD5 |
b9e390db3af1fd2060017baf268aaa46
|
|
| BLAKE2b-256 |
e890a019de34a433636b04012612e4d20c9f5cdee5b78fd2dd09da27c5a192fc
|
File details
Details for the file topk_bench-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 11.8 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4dae420effd54ad0446a9d351465cbf800f7777b0899090cb0b9328d2ea3177e
|
|
| MD5 |
3b8a59ad7ad474bb65aad1d433adb177
|
|
| BLAKE2b-256 |
6738f4b0eb8eb214d8380010a6b8400b8f23fb753753596f23a8526d2c1cbb51
|
File details
Details for the file topk_bench-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 11.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b91a85ea4627c2c04f2663088d3cef224a2001dab8b84782765742e8de061b8f
|
|
| MD5 |
8cc0562ceb651b6300cba664cd5f7bcf
|
|
| BLAKE2b-256 |
b1647807ac114f87b28184a21fd1529c4072fac4333f145906714228eab36398
|
File details
Details for the file topk_bench-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 11.4 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32cdf40c7d031757f65f6bc90bee3bc51f73cb34c029b11fd70843ee16d5cb0e
|
|
| MD5 |
bd2963a551c30c1c663aa09a9fb9d036
|
|
| BLAKE2b-256 |
866683b2d672cb842ea1c3ffd11fd966e1b8f9f222e57ac5077c53a7f2dac51a
|
File details
Details for the file topk_bench-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 15.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
852ad76bd3b88acb6c0a2f2d0d6022aa4ccf70f97c60f85f76eea2e70ceac66d
|
|
| MD5 |
c1de59051cc128799e8825aee29df54b
|
|
| BLAKE2b-256 |
0771dc03820eaed1e908bed70eb4b49dc8728924ca6774c2dcf99d5cc56c9035
|
File details
Details for the file topk_bench-0.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 12.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1fee47b639bc084115f83edd07e0ca1e642d019bd06c41564788603631e7ff6
|
|
| MD5 |
8bafde8df3e548317fdb9dc74edbc72e
|
|
| BLAKE2b-256 |
33e88ea6847619590ae620b4fcb220bdc56f03b145c8c21969c65eb7347d8e9b
|
File details
Details for the file topk_bench-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 11.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6fef3c211a84899db4a90483d1f332bc95528c95991f8b4ee81b34225d1e9ccf
|
|
| MD5 |
5f32195d16690cbb96392fc611a166c6
|
|
| BLAKE2b-256 |
1ba2861250687aa57014bea628993567acdfb10e3c6f797498f86b964cec6859
|
File details
Details for the file topk_bench-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 11.6 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
598cffa0939dffaddf543b059be3063e769447699feb84dd24680f31d8cc2bc3
|
|
| MD5 |
66300615667aed17e7a0293b83ba662a
|
|
| BLAKE2b-256 |
aa2ac5a50a73457f340dfca235fc868d297ef03e72f7c8d5095837dea559f723
|
File details
Details for the file topk_bench-0.1.1-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 10.1 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52ac8cca335c4e8e760bd9ac3c554f1067ab4ebd8f3c585a2cdd7ed1c2d4293b
|
|
| MD5 |
ccdb9045d81d873346673ba308e626d4
|
|
| BLAKE2b-256 |
98d41a669db8275ec40e5efaa387a6eb840857af1d773abac8a2237eec176644
|
File details
Details for the file topk_bench-0.1.1-cp39-cp39-macosx_10_12_x86_64.whl.
File metadata
- Download URL: topk_bench-0.1.1-cp39-cp39-macosx_10_12_x86_64.whl
- Upload date:
- Size: 10.7 MB
- Tags: CPython 3.9, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8410d6fdc9257887c0fd5a544dadb20a97ce2592d376bc9cfcd1ace5abcc83ee
|
|
| MD5 |
230b4f013b5c9a454e4112ded68936d1
|
|
| BLAKE2b-256 |
1d9f1b93f8c2ab3f662b37186814cc838db124d891ef3bd5b61e2eed22952ca6
|