Skip to main content

MLPerf Inference LoadGen python bindings

Project description

Overview {#mainpage}

Introduction

  • The LoadGen is a reusable module that efficiently and fairly measures the performance of inference systems.
  • It generates traffic for scenarios as formulated by a diverse set of experts in the MLCommons working group.
  • The scenarios emulate the workloads seen in mobile devices, autonomous vehicles, robotics, and cloud-based setups.
  • Although the LoadGen is not model or dataset aware, its strength is in its reusability with logic that is.

Integration Example and Flow

The following is an diagram of how the LoadGen can be integrated into an inference system, resembling how some of the MLPerf reference models are implemented.

  1. Benchmark knows the model, dataset, and preprocessing.
  2. Benchmark hands dataset sample IDs to LoadGen.
  3. LoadGen starts generating queries of sample IDs.
  4. Benchmark creates requests to backend.
  5. Result is post processed and forwarded to LoadGen.
  6. LoadGen outputs logs for analysis.

Useful Links

Scope of the LoadGen's Responsibilities

In Scope

  • Provide a reusable C++ library with python bindings.
  • Implement the traffic patterns of the MLPerf Inference scenarios and modes.
  • Record all traffic generated and received for later analysis and verification.
  • Summarize the results and whether performance constraints were met.
  • Target high-performance systems with efficient multi-thread friendly logging utilities.
  • Generate trust via a shared, well-tested, and community-hardened code base.

Out of Scope

The LoadGen is:

  • NOT aware of the ML model it is running against.
  • NOT aware of the data formats of the model's inputs and outputs.
  • NOT aware of how to score the accuracy of a model's outputs.
  • NOT aware of MLPerf rules regarding scenario-specific constraints.

Limitting the scope of the LoadGen in this way keeps it reusable across different models and datasets without modification. Using composition and dependency injection, the user can define their own model, datasets, and metrics.

Additionally, not hardcoding MLPerf-specific test constraints, like test duration and performance targets, allows users to use the LoadGen unmodified for custom testing and continuous integration purposes.

Submission Considerations

Upstream all local modifications

  • As a rule, no local modifications to the LoadGen's C++ library are allowed for submission.
  • Please upstream early and often to keep the playing field level.

Choose your TestSettings carefully!

  • Since the LoadGen is oblivious to the model, it can't enforce the MLPerf requirements for submission. e.g.: target percentiles and latencies.
  • For verification, the values in TestSettings are logged.
  • To help make sure your settings are spec compliant, use TestSettings::FromConfig in conjunction with the relevant config file provided with the reference models.

Responsibilities of a LoadGen User

Implement the Interfaces

  • Implement the SystemUnderTest and QuerySampleLibrary interfaces and pass them to the StartTest function.
  • Call QuerySampleComplete for every sample received by SystemUnderTest::IssueQuery.

Assess Accuracy

  • Process the mlperf_log_accuracy.json output by the LoadGen to determine the accuracy of your system.
  • For the official models, Python scripts will be provided by the MLPerf model owners for you to do this automatically.

For templates of how to do the above in detail, refer to code for the demos, tests, and reference models.

LoadGen over the Network

For reference, on a high level a submission looks like this:

The LoadGen implementation is common to all submissions, while the QSL (“Query Sample Library”) and SUT (“System Under Test”) are implemented by submitters. QSL is responsible for loading the data and includes untimed preprocessing.

A submission over the network introduces a new component “QDL” (query dispatch library) that is added to the system as presented in the following diagram:

QDL is a proxy for a load-balancer, that dispatches queries to SUT over a physical network, receives the responses and passes them back to LoadGen. It is implemented by the submitter. The interface of the QDL is the same as the API to SUT.

In scenarios using QDL, data may be compressed in QSL at the choice of the submitter in order to reduce network transmission time. Decompression is part of the timed processing in SUT. A set of approved standard compression schemes will be specified for each benchmark; additional compression schemes must be approved in advance by the Working Group.

All communication between LoadGen/QSL and SUT is via QDL, and all communication between QDL and SUT must pass over a physical network.

QDL implements the protocol to transmit queries over the network and receive responses. It also implements decompression of any response returned by the SUT, where compression of responses is allowed. Performing any part of the timed preprocessing or inference in QDL is specifically disallowed. Currently no batching is allowed in QDL, although this may be revisited in future.

The MLperf over the Network will run in Server mode and Offline mode. All LoadGen modes are expected to work as is with insignificant changes. These include running the test in performance mode, accuracy mode, find peak performance mode and compliance mode. The same applies for power measurements.

QDL details

The Query Dispatch Library is implemented by the submitter and interfaces with LoadGen using the same SUT API. All MLPerf Inference SUTs implement the mlperf::SystemUnderTest class which is defined in system_under_test.h. The QDL implements mlperf::QueryDispatchLibrary class which inherits the mlperf::SystemUnderTest class and has the same API and support all existing mlperf::SystemUnderTest methods. It has a separate header file query_dispatch_library.h. Using sut with mlperf::SystemUnderTest class in LoadGen StartTest is natively upcasting mlperf::QueryDispatchLibrary class.

QDL Query issue and response over the network

The QDL gets the queries from the LoadGen through

void IssueQuery(const std::vector<QuerySample>& samples)

The QDL dispatches the queries to the SUT over the physical media. The exact method and implementation for it are submitter specific and would not be specified at MLCommons. Submitter implementation includes all methods required to serialize the query, load balance, drive it to the Operating system and network interface card and send to the SUT.

The QDL receives the query responses over the network from the SUT. The exact method and implementation for it are submitter specific and would not be specified at MLCommons. The submitter implementation includes all methods required to receive the network data from the Network Interface card, go through the Operating system, deserialize the query response, and provide it back to the LoadGen through query completion by:

struct QuerySampleResponse {
  ResponseId id;
  uintptr_t data;
  size_t size;
};
void QuerySamplesComplete(QuerySampleResponse* responses, 
                          size_t response_count);

QDL Additional Methods

In addition to that the QDL needs to implement the following methods that are provided by the SUT interface to the LoadGen:

const std::string& Name();

The Name function returns a known string for over the Network SUTs to identify it as over the network benchmark.

void FlushQueries();

It is not specified here how the QDL would query and configure the SUT to execute the above methods. The QDL responds to the LoadGen after receiving its own response from the SUT.

Example

Refer to LON demo for a reference example illustrating usage of Loadgen over the network.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mlcommons_loadgen-4.1.25.tar.gz (77.6 kB view details)

Uploaded Source

Built Distributions

mlcommons_loadgen-4.1.25-cp313-cp313-win_amd64.whl (299.2 kB view details)

Uploaded CPython 3.13 Windows x86-64

mlcommons_loadgen-4.1.25-cp313-cp313-win32.whl (278.1 kB view details)

Uploaded CPython 3.13 Windows x86

mlcommons_loadgen-4.1.25-cp313-cp313-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

mlcommons_loadgen-4.1.25-cp313-cp313-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.25-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-4.1.25-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (518.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

mlcommons_loadgen-4.1.25-cp313-cp313-macosx_11_0_arm64.whl (464.5 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

mlcommons_loadgen-4.1.25-cp312-cp312-win_amd64.whl (299.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

mlcommons_loadgen-4.1.25-cp312-cp312-win32.whl (278.1 kB view details)

Uploaded CPython 3.12 Windows x86

mlcommons_loadgen-4.1.25-cp312-cp312-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

mlcommons_loadgen-4.1.25-cp312-cp312-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.25-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-4.1.25-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (518.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

mlcommons_loadgen-4.1.25-cp312-cp312-macosx_11_0_arm64.whl (464.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

mlcommons_loadgen-4.1.25-cp311-cp311-win_amd64.whl (299.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

mlcommons_loadgen-4.1.25-cp311-cp311-win32.whl (279.5 kB view details)

Uploaded CPython 3.11 Windows x86

mlcommons_loadgen-4.1.25-cp311-cp311-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

mlcommons_loadgen-4.1.25-cp311-cp311-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.25-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-4.1.25-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (517.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

mlcommons_loadgen-4.1.25-cp311-cp311-macosx_11_0_arm64.whl (463.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

mlcommons_loadgen-4.1.25-cp310-cp310-win_amd64.whl (299.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

mlcommons_loadgen-4.1.25-cp310-cp310-win32.whl (278.7 kB view details)

Uploaded CPython 3.10 Windows x86

mlcommons_loadgen-4.1.25-cp310-cp310-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

mlcommons_loadgen-4.1.25-cp310-cp310-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.25-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-4.1.25-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (517.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

mlcommons_loadgen-4.1.25-cp310-cp310-macosx_11_0_arm64.whl (461.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

mlcommons_loadgen-4.1.25-cp39-cp39-win_amd64.whl (292.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

mlcommons_loadgen-4.1.25-cp39-cp39-win32.whl (278.9 kB view details)

Uploaded CPython 3.9 Windows x86

mlcommons_loadgen-4.1.25-cp39-cp39-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

mlcommons_loadgen-4.1.25-cp39-cp39-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.25-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-4.1.25-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (517.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

mlcommons_loadgen-4.1.25-cp39-cp39-macosx_11_0_arm64.whl (461.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

mlcommons_loadgen-4.1.25-cp38-cp38-win_amd64.whl (299.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

mlcommons_loadgen-4.1.25-cp38-cp38-win32.whl (278.9 kB view details)

Uploaded CPython 3.8 Windows x86

mlcommons_loadgen-4.1.25-cp38-cp38-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

mlcommons_loadgen-4.1.25-cp38-cp38-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.25-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-4.1.25-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (516.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

mlcommons_loadgen-4.1.25-cp38-cp38-macosx_11_0_arm64.whl (461.5 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

mlcommons_loadgen-4.1.25-cp37-cp37m-win_amd64.whl (298.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

mlcommons_loadgen-4.1.25-cp37-cp37m-win32.whl (279.8 kB view details)

Uploaded CPython 3.7m Windows x86

mlcommons_loadgen-4.1.25-cp37-cp37m-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

mlcommons_loadgen-4.1.25-cp37-cp37m-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.25-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-4.1.25-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (518.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

File details

Details for the file mlcommons_loadgen-4.1.25.tar.gz.

File metadata

  • Download URL: mlcommons_loadgen-4.1.25.tar.gz
  • Upload date:
  • Size: 77.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for mlcommons_loadgen-4.1.25.tar.gz
Algorithm Hash digest
SHA256 c6a3eec3ecd4befdc965ce12468257533f752c1410c58b36fbbce24e7fd00cb6
MD5 760df96cd3ccb875410fe694f9d0ea83
BLAKE2b-256 16a8e7ed51ac91e0449f75700f07a290aeb46e40d81f473ab803e98e8090fa12

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25.tar.gz:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 28e616994f4cbee2083c9affb0fae6e44d3ac3590f568a1e2569b0059e8f4115
MD5 943fb7c5aab225d41d146334d66a0ef6
BLAKE2b-256 5fe9e606b785fa85e05129fc73e87197588e94916e7834885cc08d35e015fc71

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 138400d57f78b1f6e74bf7727f69e929d3b03bfb6d20b26366fd9d4be76081b2
MD5 0d63c4d9112c0e57ccbbbe824268ac65
BLAKE2b-256 20053d0a2ffe399af6b2a32beb759d1dc255fbda1cad5b9967ce1adb432f5d88

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp313-cp313-win32.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5964975f6fa2df41fc0a371d98bf68092b38e56bafe8a564de288a865ec49632
MD5 2fb88e3da3f2542d5275e884f483f6e9
BLAKE2b-256 ea9036f33571c096ced4277720f23c8367769a3443d503f6cfa88fd1acb52d81

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9c0e687088d67d70e0563423476f2c7b94349a12e5843c3c1bc5dde886ff7e32
MD5 a0a61ed133a50c3742e9ad05e0b2e511
BLAKE2b-256 7984e154f375a7ef0613c790956b340dce4ca286ee488d4e53ddbfc990cf318d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4a1be5556415a9cb7e7e4f12d75c9d1256e88d72a64ccadb9eb2fc982424347
MD5 9517ed87fe2309a337bf75a24a739730
BLAKE2b-256 2dd9783c7c7934ceecb5b4f2e83fe94067f195fd342370d201271072ec42339d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 894ae5e1ef670ec3097dbcaa11dcfec22c60dac369099a697f3a8f702129f3b6
MD5 34999c0603f47d6ff375e4d466a20bb8
BLAKE2b-256 7ceb27b52ce6cf4f2925c5b1040fdec90c7a1567318b43609d6e532b09f89eb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 339874a7c546821dbc139d3b96cc11ab6c3ec1f0a9986a200933fb37d4ec6d43
MD5 0ef4e2a91b3978e1fc467f2e7e5d1228
BLAKE2b-256 097054fa60ad24ceff7f02174690609aee636d7b6f57dcc8e9fb5d2ccea414a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 13d94edf66ab5bbdf6b9953be885a5358d560baa3dfd4eaaeb8d3b26cbad944e
MD5 220a9797f895fed20d586f51ca06eb15
BLAKE2b-256 752535736878fab84c3577dc4a42a8e43eef31234d8f500da8d29c266186f5bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6c549f66ca297d76faef205a586523c592c95af4de014693c6305589a8c5c1d8
MD5 5bb4b8a34063f411b85da42cf5952cbd
BLAKE2b-256 e9ba9518be361154b0b4c97b4b86850854d356a05ddd8bff36b406af53e14892

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp312-cp312-win32.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 088c04a366879513b9f8840a8770240b5a9da3a4fc5a7a061f6ea791ebb6abda
MD5 4c7f0bf88afc3e74a771e49cf3a089ea
BLAKE2b-256 7b65a1c411d39bc2705285287bc349be295b37bd91156220a2d14477a9d063fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba088ed5cfd25b89685573aa773a977844a2682a36f302c2d3b3fd06dfd0f2c2
MD5 4abde6b504ad8777aded6ae7d8e67f9e
BLAKE2b-256 f002f75b29734f4ee86c29f4bb1774144561fb32eb3403893cbac3535678594c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d80a252e3859726c043ddbe51c44122ba1cb0e4515daf781f58124374b0d5084
MD5 3c8fa5d0f45b62fdd587b0716e408fc9
BLAKE2b-256 4621e90194b46017056a547174333feacb2b28ba8f814fdb2498520f9d8c622d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ffa323d753501e3bdc9180c8949da8e052d76697006c5ff70a880c03fd2d7e3e
MD5 2b7aec02be155ddf4b5e000a1be277a9
BLAKE2b-256 314218b84f89ae73007d4e14a0230788848a8e559cafd3a72f4b41f09ab67b78

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29318e06a5f05a4a78407548ac5a36fb6214b70d676495aa2bdfe8f6595def76
MD5 c71102f0db8216d630c4c94f52d3f7ef
BLAKE2b-256 e8e55df70e596e82f33965dad621329a6fdd5414b9a52715809fa64ec752fb98

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 14c8be570058c61b8b7b8ef6b37352f7b7a67c6d462895c158153d52c1f270de
MD5 d44e534294b624a122e942b8f474d6ff
BLAKE2b-256 ee37562d21e7dbe2eba084f7b1704a5125392296e5b3447ae51104c8a41e9afc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8fe4cd49175a92c2fa929e7239db42941578baaa0ab6a1bea20faf013e6db120
MD5 a2b38d311e222abc4c55baea14cb94e7
BLAKE2b-256 79d4ed04d5317e709dae44b3c197c4603bba0067c8d74e37ed3b47514675711d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp311-cp311-win32.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8374492f30551a81e0d5b0e5082f0f0180909ac5313b24366de248915ecb8cc
MD5 435fcb9b84a219641161df95c4940a1c
BLAKE2b-256 3d7f9f51ee720c0f75a11b03178c0e4399ca261af469e5c39d6f5857c21e22fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aba6555f971d0b456d93b22084ea949c285d0bffb8748c562838b3d7e84c7029
MD5 15944dcf912b2e88ad293880a66ea230
BLAKE2b-256 066334d53f1f8cf48046f5d57a786b05a0a15a20f12acf91e4b864dfe8dc643c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8990763678f3aedf22f4e2a8c963dd286f744f94d94591d2944a48208ecf20be
MD5 6c6e31afd95718c2e126cd94bfce1e77
BLAKE2b-256 997eae2dfa2abace5134cc36ceff9b29a94b69ce9476667f22a2261ebc47ad53

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fa8551669838d1cee11d8d6ffcd0465da4fd357599120be86d871d2d3573340a
MD5 654a3431a0e3ce042c61d098ae127012
BLAKE2b-256 196e94b3334d93c2c47e69e822d8cca03ffbbf49352cae9b99d89f964fd5ae54

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8dda8c797a1aace6a429ab804d6d44b38d4384790841c605a89dda048914e64
MD5 955b4ee69cc8b07b1005a86228bfb4f3
BLAKE2b-256 4e4184005cc1953a67015cf07eda983ae16f43a9198c51da12a5ed1f68b11105

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6b5d69bcb1ef45b073de9f5117249a6eee2ef88406be0c2e592cd44b6dba12a7
MD5 5489e7fa2c21325a6710900dae35e930
BLAKE2b-256 d581aeb0feaeaca3a50d765cf1a3b050efb5bccf42b576ecb5d9f4da9bde2513

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 764beff5276becc231aa850d08adc3359a201e8436cc207c1a944c1d1775f84c
MD5 7f1f538931dbf2bc5a2da55545ad5889
BLAKE2b-256 e52dacc3408f078b48876d2b01ac8b1b247ca709a4e5ce371894e0f24133294b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp310-cp310-win32.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33474a1776c31e7f4b26af05c34c12abcf59a44102ad8785c723f38ff3d0973a
MD5 1b33b9464bf791be04f7dcd6e33c38fd
BLAKE2b-256 17365616b62203d3fcd3e403cceadb68f58d0aecdfdcd414efd8a1c889304bd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 81f84b33d0fda7ea837e9ece6a35909a6694972a0f193f03ab8114464806ca3c
MD5 6ce28e67d6555123550f2f1fdce51103
BLAKE2b-256 0070c3f5e6a325ba05ca96411e19f3df5020f174a201c89e342355be7492ed69

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c39b350afe7964114275fffa6208869a99e3025b45908e8471d5e6747d9dbdc
MD5 f57f1bf46c34b06cce0a96fb8e1a2f39
BLAKE2b-256 f8f9da415f20484353497d2cf8ccf0cf639654d49d38d62a73447876e0d17f9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0345c28e594de9655246f59e9473723ae9547c1450bce88506fe9e32c5dd7b51
MD5 2ee8a0d886df2ccc86856f7b25b3a2b1
BLAKE2b-256 e007c1cc25959f8a2261d8de6960bd7c8cada09abf43fb944c401bc2a87ae22f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9393203a16cacef59e940b9a11e903ba5c15e7230e9ea1e02558a9e09d6a0195
MD5 136e9ade9de040480200c5731d661120
BLAKE2b-256 2f27bdf5f9109d84005dc8da07a02e28c23bd698627e2e3ffffb8ef959e47d41

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 68d88d4b45f8b763f1c1ef30e5b3a36a2f3c4cde7a486ca37ac252e761c53f7d
MD5 c4437b9a850f2acadfc494ab03f6a7cb
BLAKE2b-256 471efb4182658ceac0a6b540935af8e83d43580a1c0d6cc89452dde5d81baacc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e30337fa06ed37a7d3ef77eff51def2c9dec8305dd710a7c6586dca4332dc5ae
MD5 500ed9bbc31d311c7bbb46859268189b
BLAKE2b-256 4797bb4578fd23218969228135f7ca4436f76e62fc094926235151250a451627

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp39-cp39-win32.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4356f747d78f47d734a67685c8e1887283d852529befb31c4a06e175c106c4b1
MD5 2df0b44d095fcb0c4ef71fc94c726b0a
BLAKE2b-256 64d9df8a0a1a8cdd44312b243fd73325d7b0c97b32c96dca30dfeaa5b267ae09

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4cb0f4d0a2f4e53acc4e3bf37a19166a3fa79fa3bbff47198ee55c1980c84160
MD5 db2b8f24d1863608b80479ca5e95db3b
BLAKE2b-256 0eb6b566d981e362e1ecdfd5d862bf6952e12a4d38ff9aeeb804600e58a0e931

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 902f06408e1842d768da0d3228dacf9be419d2e1ec36219c2cc1f2c7386a68e6
MD5 40087d63c4b46bc90a4b913a3564bb83
BLAKE2b-256 43d6d2ccdc7aa1f2df09a6c5ca95325b40190dc78b434437cf9f1f450841ce79

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ac9e12344ff14618f252d77f7446905ac8c3e05e19c9d05407780d99898bbb5d
MD5 b24f8e25dd0f11a48205bf872294e002
BLAKE2b-256 8a379a411c15abfdb6c045e88b6a6ccabedc18432da264705bb967c52f61bbfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 990554defa007803b08141c4fbc62b1e3ba4fd8ccdd560661f1cc6c841ba2731
MD5 a94068a59f6781f3f1294bc131d2dda6
BLAKE2b-256 7b54702d4d236543b542d3f932bcd57c4c96a7dc6ce292524b8aabc5923ea641

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6035c7c1967a273e55a710a7e7ffc0de4412f2ae4f9e458bb5d22defe2aed2c1
MD5 30c0b0e471d67f7ecdfcd25c45ceeb53
BLAKE2b-256 ed0824e70dd9f411c11e7ec499ba5a2a8c29fd9472e33a45937f581ce15b637c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp38-cp38-win_amd64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2959b0375151305e98f89f198db520cd17b2316328a34d02be651579ae4d0bce
MD5 266ef88cb45652696bbc825b179bd142
BLAKE2b-256 59d51c13c80874a729342cc3a6efbfc43a1d175631d5c01ee5d5a7ad7221bc6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp38-cp38-win32.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1d29e1526a8a7c14eb9ece9ca014156534b94912edbc1750994d16f8a1fdcab
MD5 89beaa43bdfdc1220150c2024ad27922
BLAKE2b-256 5127995c79c52ee530f99c1af45cbaa7773bf7f9d29ca7db4e43940907c54ee9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0e3e8c42077feea4c9c6ab4cc5a73869a5335d5b7a4d5d20db7676dad96d4a38
MD5 784328325aa054e010ba25d9a5e85d72
BLAKE2b-256 c13544794473f5336d1e7fed725de8bc904234db62c7b71027ece07e95f8a379

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41f8ae41454785716d269e05f13cf2384aaac8ba3ef52ade816e114cdb6c71a6
MD5 861bdc4f60be356297191204d0b83c6d
BLAKE2b-256 7a4864c9b44d0dc98460cb4c18e191226bb35943ea1af28be82ce17c1bc6bcec

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 94ab23184dd3c84f0fdb7a89581575e9b14c62c0d344155c2dd13e8b8d2d9c8b
MD5 bef4d2807806d13025112beca60ac6c4
BLAKE2b-256 7faee2437814b380aa0bc19002c6e086916ba2a4e92e196a0500489ceb5a9bba

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c5a936085275eb984925fdb16533bd80a095191ac8b104f75d1b1c9dc66d20c
MD5 e3737c28f4ea45e85278e8dbd2cacf78
BLAKE2b-256 5a8d0f819402da6bbe25b6be08b985b207c4195977197f1ea447b419198faba2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0f5e6c7b17ac8c00b0439157885b4c87d4aefec2a092f20938ce4ecb38283148
MD5 812df651206dfc94ad16d2db6e06677f
BLAKE2b-256 c004484a81e8c9c06c08ea590c495e90bf96036db8b9f5b70c09dd076686d905

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp37-cp37m-win_amd64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f0c9a89da4aa115e9cc7deebfa11fe7cab744080a69ff3ba109dd3966eccc9ab
MD5 1cfd417612d1832099c4f710e221f65c
BLAKE2b-256 ef569dcbc914717335e3bd66679935dcd46edfc27bc43f0ac0c1635b1d35cd5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp37-cp37m-win32.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a01e7d8c526ab628a9a984c874737673e87c3454b88427acf0a7a1d889023d9
MD5 1eacec0a44944443684b02b7fb825391
BLAKE2b-256 adbc628f562a9e532dbd9c25d94e3cf72cc4d63fa7481d5a341bf76c75de46a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp37-cp37m-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7a315ad1f5e84f95f2118b4c723bf03634eecb903f011f377e522ae0cb41a6f9
MD5 530ac8eea139e7ca0e401ed53338f5d4
BLAKE2b-256 e295aff2e56839da815a1d12d4b62a7ba203eeb770e22aa44e004c17841cce27

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp37-cp37m-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24e9904013c600389c84917bee628c2448f4a6fb6b2291535a1df810079e54ca
MD5 d34ca62591f7a5aed9bcc053425eac9a
BLAKE2b-256 8f6e66e63fabd4784690748b50223fa47f52b34f5e04873573f4bbc21288d10f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.25-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.25-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9f4026fa048085bc3cdef32b5c2566db36836a0328d1b5115cf780ec7f6c8315
MD5 8e7eb563d4d53f78cc876f0c4284cd35
BLAKE2b-256 1d176e11f51540cc26e084dd750003d396dc943efd38f80f81a3eff787d38e17

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.25-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page