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-5.0.1.tar.gz (78.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

mlcommons_loadgen-5.0.1-cp313-cp313-win_amd64.whl (299.3 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (518.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.1-cp313-cp313-macosx_11_0_arm64.whl (464.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mlcommons_loadgen-5.0.1-cp313-cp313-macosx_10_13_x86_64.whl (480.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

mlcommons_loadgen-5.0.1-cp312-cp312-win_amd64.whl (299.3 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (518.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.1-cp312-cp312-macosx_11_0_arm64.whl (464.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mlcommons_loadgen-5.0.1-cp312-cp312-macosx_10_13_x86_64.whl (480.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

mlcommons_loadgen-5.0.1-cp311-cp311-win_amd64.whl (299.8 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (518.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.1-cp311-cp311-macosx_11_0_arm64.whl (463.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mlcommons_loadgen-5.0.1-cp311-cp311-macosx_10_9_x86_64.whl (475.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mlcommons_loadgen-5.0.1-cp310-cp310-win_amd64.whl (299.3 kB view details)

Uploaded CPython 3.10Windows x86-64

mlcommons_loadgen-5.0.1-cp310-cp310-win32.whl (278.8 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (517.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.1-cp310-cp310-macosx_11_0_arm64.whl (461.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mlcommons_loadgen-5.0.1-cp310-cp310-macosx_10_9_x86_64.whl (474.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mlcommons_loadgen-5.0.1-cp39-cp39-win_amd64.whl (293.0 kB view details)

Uploaded CPython 3.9Windows x86-64

mlcommons_loadgen-5.0.1-cp39-cp39-win32.whl (279.0 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.1-cp39-cp39-macosx_11_0_arm64.whl (461.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mlcommons_loadgen-5.0.1-cp39-cp39-macosx_10_9_x86_64.whl (474.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

mlcommons_loadgen-5.0.1-cp38-cp38-win_amd64.whl (299.1 kB view details)

Uploaded CPython 3.8Windows x86-64

mlcommons_loadgen-5.0.1-cp38-cp38-win32.whl (279.0 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (516.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8macOS 11.0+ ARM64

mlcommons_loadgen-5.0.1-cp38-cp38-macosx_10_9_x86_64.whl (474.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

mlcommons_loadgen-5.0.1-cp37-cp37m-win_amd64.whl (299.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

mlcommons_loadgen-5.0.1-cp37-cp37m-win32.whl (280.0 kB view details)

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (519.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.1-cp37-cp37m-macosx_10_9_x86_64.whl (471.6 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: mlcommons_loadgen-5.0.1.tar.gz
  • Upload date:
  • Size: 78.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for mlcommons_loadgen-5.0.1.tar.gz
Algorithm Hash digest
SHA256 e9dfbbad7d063e3e0c26dfba5f29f9be96a5bd269b97881cc7ff1fe29b272c82
MD5 3398f1c074ca2563cf4b08d850bca7ad
BLAKE2b-256 239766c15c9b32cd7e41cd69c7ec568e857673dbd6b11176ce78cdb84cdb4186

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8388b0fe629ee232b390ece1840d8a4d12290b51534cd21ea4ff0749396f3c50
MD5 35f293f2ea79a33dd68dea2497924ce7
BLAKE2b-256 aaeecde226749c6e471605980986fbb4f4c4a57fab55cd8304ca5002facb3033

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9073f6c541b87a3a1cfbb68479ce57ad70239a820b8f2c1667818dd7aac1c249
MD5 25670c94c29a3f77495197592ab2e5f5
BLAKE2b-256 94c9008708ef2c101e966dc1229d1325893a03cbb4cf8b9f5517e723ff5a96fb

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 701884e34abed9e4dfebfe1c2444b5b27c09634ee06cf39a33f2afe4b9ef8d74
MD5 4180e59cd2cac0ada6d2a87691a63398
BLAKE2b-256 0480eeef379dbdd3f6a7044971ae8a0a82d4a985770fe57399c4f0ddf37e55af

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b0ad63593d067f392f9539a29134b359a74ff6ae4cf70d7719e1bc7d1ad6f01c
MD5 7cc5e8f2fe8486baa40d0bda82b6616d
BLAKE2b-256 10496c5fbce0db0ebc38204eaa10d0fdad92ea8bd28a3ebe8d250d574f727463

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3206c24868574b9f6f1cc9d51c6a3885910957b965bc02999ba5e2efe628d39c
MD5 fa4002cee7026d4817f549276ed64f55
BLAKE2b-256 4c22545dbd4c42558d52bf453248dad0bba1f97f6d041d4796314f1e9bc0e43b

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1e87876d922fbec67c86aafa76d22e236d0f03a5bfaba6b7310aff0803f32020
MD5 583ce12825e2ffe0140fe0891fc9dbc4
BLAKE2b-256 d41525da3a6a58f0158d44578ba775596d98176b1fd7d64dc035e11720fffa20

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29214f45df54a70ba31d5a9c55cbcd7051d7077ceb438859a41d504405c8a62e
MD5 4b4949c3cda529c9a0e85edcbfb7d2fb
BLAKE2b-256 d9bf162f6418d88d815bedf1b7e3492ec8eef117366dd13e1131eb96c39b32ed

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlcommons_loadgen-5.0.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bfb876febacd00ac8a95edb7b47c96401f2ac315f185fd88a0a69658aec4c98f
MD5 95301ffd481a555169f2fc5080132efc
BLAKE2b-256 fe78225e77f2ce27126e9037bed40e0a05ace0e3e0c5c938fb80bec92af74881

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-5.0.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ef3881a19d9260395487e993f5cb3a2eae36a1fca16cca7e73bf0e1a78a057f0
MD5 dcd74e3a00805fadffa2d9e0cf3bffc9
BLAKE2b-256 8d9bf8eb5819de61a6aafcd2a3f68d57601a417f4d51023395046af45ae2e9c6

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 66b24e556a2b51be2d31d256cd21c9ab7a5738495d6e0fafac6e8931bbfd1083
MD5 378120c2974188c5394c6b0eed4da772
BLAKE2b-256 7eb281acba0d80ec6bd362005928cd4a42179ef16c34f4dbf0914d9f8e6703e7

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4f7b7395c6c1b9826693ba05817d37d124d95c6aaeffbf86e33d639d41ef128
MD5 6a5a651cabc64a498fc56ffa0977472a
BLAKE2b-256 7f9073843bf4746f89dcac1e807e819e7912e50036941b34040b713cd37757cb

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 066cc5f5acd05793730511e3ece91deb552d4aafddcf932414ed4ed23af22cde
MD5 c03a01b9bc2d2bac4c079e7d906e5ba3
BLAKE2b-256 2e5e767aaf9fc4875d36dca9ff08807188e04cb6c5eea8771cedd1a1aa1aab25

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 58f507af7bb263f60a34624fcb30aa9c06353024aa0a04a493ebf764291ffc00
MD5 bc5c47b4c26a8b82183780ce92972d0c
BLAKE2b-256 785af6782d25c5b53395e727b6fa9411afb13566beee12bde995daaa27825ae2

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 89806572b528e80ee0f4bb1f0438f81662619fbf60ce4b024dbe8aae03a201f3
MD5 9e19f00a9f85a45b499992773229ec5a
BLAKE2b-256 23e43bf8d4fbf27dab4565e648fc7885cfa340b135724e33f8cc58ca05381a73

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e636bdb7af1d98211324a220585cba3fbc756872c5aaee463fe8ae7d381105e3
MD5 74e8155001216cb08b64c703182b5732
BLAKE2b-256 5aa0d5c7eebd1643a408107dbc807eaeb50f358c90e06668f3245d2816e0acb9

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlcommons_loadgen-5.0.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 95e5fbedff985e57455073f90b277395c176eebfb33730c4f0615ba5bf9315e4
MD5 4ebd76597110e2ea33f96beda14e7dc7
BLAKE2b-256 da790cf035b03af47b6176f0af0d0dd4df9476349ab8ff1f89e8b4a69351a0b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-5.0.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3b7e521fd465fef81f38def01ee4aa30ef32f99c7c6b2252cc944f8111189edc
MD5 e382a00d47cc78c92f8abb0e5830b39b
BLAKE2b-256 e461ae6bd09e2f1e01d384249359d47cf6bd65bb0583d8b0f086c5440b32162f

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1ea4b484cf27b18ae904335ba104d9c999cf24ebf75d2e3531b39cd66b8fcd92
MD5 32809c598518c8e2643d4197ad38dc99
BLAKE2b-256 efe4bddaa3afb7db3227fe469ab08dde87610c6711f3cc7d4e7ad55f893cef24

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7fc3574e6a8383aeba053bd9b69bd893db1354369c616e59b1992b785c52d174
MD5 a1f043ecbdf47ca7285e8e9796afd7df
BLAKE2b-256 666d0b214f021205e87f69dbe86b9d456235fbba29f703eb8e137fff26357cde

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a9563a2335b015e563a9a80b52e030a9b4ef0ea806bf19662b8f47ea6d4800a3
MD5 7d1c1ce7a9e2969c0af7e968bbda0421
BLAKE2b-256 013b27543f2a04747c259aa21f91b39018d16fe99b6015b7de1da95bc0809ed7

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 972eee7fa4d8e261d39ae0cffcfcd3d1eedc145bff784b6637395d6dd3df8d5d
MD5 b5323b3f82b4b7aa5ee9a4f6bc342ba9
BLAKE2b-256 c16b47896a356db929a12de6b9ae8fa4145c26aaead5ef738a5477bf57ef16e6

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 acca9b065965b383da332dee2df0442eba98f21bf3d341c1cd552dffdd6fa999
MD5 79c9a7e9ff927cc8f5eb1d3ffabcd98d
BLAKE2b-256 3cc8ad4a4f8b05019b7c6fa347b920916d5df7d9b7440c38b21f29774f3f8f8d

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 208ad0957fb7252c921d857b1d26b0f9326637c49c3fa292083f6b99bd030caa
MD5 9ee55e84326651d3ffa009d27d4f7c25
BLAKE2b-256 bff1b76186972bcf5d6a25b117df10cad4bba1a76ea65adb7f04e6a1e4ba6c61

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlcommons_loadgen-5.0.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0cc0cb567cfa308515a948e5b0f65742faa2f4ebe3377d121ec5077454796477
MD5 50b5813d5dcb36fca9754c1b3f9b836f
BLAKE2b-256 b16b8dde31693e1aa57a4d80e38e593b2e2ebad37bb754700bea7852774c852a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-5.0.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c2ea0b2dc64b64dd39742ca500a6681ef738f47f268c873e993a75d1030580f1
MD5 e532841c7b9e367334e06e2efefd4a66
BLAKE2b-256 76b86770b320aa1775be28d163cf5d773862fdc103fca335df8b62bfaaa33113

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 21ad70ba2b350129cdeb4b0d93d726bd1299908edccece72957b13c36180e306
MD5 24906e5db6ef971123e08cdeec33b6f4
BLAKE2b-256 4951ed10db1d786f26dea08633460edbc4cc6c25955314c342335d0f20d0deff

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0139f7268420e8331cbf1d6bcb24b19f7a1e2cae8e15ea05b026a695f9f4f04e
MD5 dd6757db745db5f8d9bdd7c143d7d90d
BLAKE2b-256 e53481144142709bb334428787245f3b7f66036797a0912cd7b13a3413967136

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 89851d52aef2efe078868baccffeed552974188f98760d6302a953b65d15133f
MD5 48b58dedb93b51e39a465878a8d44782
BLAKE2b-256 ea7b63c7dbeb4a7b72f41b81541254cfa1763321956d30d40c585fd32c4fbe71

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a3070a2f4d07f8fd042d65235e1fd87bd81bbe5fb1eac09aec6d1fcde42cede
MD5 68394c0b1e1182b1dae9d0740cf46fd1
BLAKE2b-256 b918e986c892bab088c9b5e30c458ce55747986cea4fe021f736eafe1515e228

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 88dad8d706dbbc45333081248babf911a63dca352cd8bca8599a5753090a0c3c
MD5 0c374f0949e208beaff36da824da136f
BLAKE2b-256 47cd7983238b8eafffe53b0d5dc46e40a8dfde92b201db00ec11714d61926e4e

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32522ce264fc03dab24bfad891dab75502dd044e7f3c8fac096d2c7ee89a4099
MD5 817d10382ffa09cb910dabd5b582c709
BLAKE2b-256 dcf1f34ba8d4117967ea8e0c8e3b018caa565b85bd71f98bdb1bb6b8272363a7

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlcommons_loadgen-5.0.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db8e09cee6d424ef86e2abac5b47833f27673da7217d1463385b52ba5dc4db4e
MD5 d17cbdb4064e1846d14f466b2db8b301
BLAKE2b-256 32ee751910e7f290aa9787905ea9c6c1c05863a52ca48133ea3c92a937fdb25d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-5.0.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 017646552332bcd75aa4becd55051c19941e5d049a3a0aaf9cdfef7dda9287d8
MD5 fe1ae07a95ee195ce09473ced6e79191
BLAKE2b-256 fbf385ee404fbebe8c7d7a93bb42609725978871c0b7861b9872d868b41af063

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9eaa88b9665f7b3f768ee565d29c35e1fc7969c8de29d028aba3630fab55dcd5
MD5 62f20ac9773b753d8ea570400482a1ec
BLAKE2b-256 b5034bd282366f81f5a8681a014a5c649a0efbeddb6dc85c1b9ed938f95b4307

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a4e9cb4cc3455ded0844e6d4ee470769e49809a524823d3b49fd6270fbbec84
MD5 d849360f0bc37e63e7fbdc47134320c2
BLAKE2b-256 1d9f0c592fb3566787a84964845d81b6fb853488f339735b93947ee67a4591da

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 62f32b0a26a60c45b74235f9b4de20923579a49703dca39309fc2eca7e9a8ef3
MD5 910dd623a05789c3911b76abc74db9b3
BLAKE2b-256 563068f52473fa15f7e834b958c39ce6b51b653ed74467ac474423cffedfe1c0

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4b850c67475b655f7caf0aafcb161a3d4163ff2b8287f2b3a67e116952ca4c5
MD5 51947e2f2f46e4c6695c2247ca2c9dd6
BLAKE2b-256 cbffab73bb09cda292717fce05d57c38f7cd40f1a70aaaa33223618486a2176f

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 226c39426faeec0245e2a809d2ee312aecaa5f02a678ede7f30748c422eebc5e
MD5 e90654ccffa9587eb29c2c83df93201f
BLAKE2b-256 b63ffc21295bb390a8fdebdb7b01a44a34fda7d58504016f2ccd50557dd62e3b

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ebbd81ae200176fea05feb4604a0f2437962f9accbf68b73c501d1617d21654
MD5 4e65718ad7ea0400799afd3fd49b50f0
BLAKE2b-256 6bcabed55c26b27714f929894c7957f592002fc840a638c02292191faf1f567d

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlcommons_loadgen-5.0.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0925ba0dbdd85449884f313b5339fdf9b41a0cb428a4b22a9ea3c1d40f8ff855
MD5 177f8ccb8396777dae00d54d8f757712
BLAKE2b-256 2387da4191e4416489444f6a2d58368d7548b9048f260c54b38a60594ac506f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-5.0.1-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e4ff58a6d175c96ee9170654c9cfdde14d33e20d8e9ed1de1d8ac36a92d85464
MD5 688bbfa44328771d762d442f367528d1
BLAKE2b-256 fda5eba8ba0021bc2e492dbcfda5a100a9af04a4631d43daafb013c164f31d1b

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 21ff27c76215d5bc37be5699b9bb418a2086917ed644ece3851f367492f6c9a3
MD5 1df541470384215e9ab62ee91597e04d
BLAKE2b-256 95f0c1ea94f284a5cb5fdbb6cc5e617d48036b5858b5869e0610a8f6c1ce6957

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62f54670a31230de39d7830ce15f479d2bc517e7b32281812629c44583f7b7a0
MD5 0abe5d8c9ea9d2f7b6ed805f32e080f0
BLAKE2b-256 88040243841c6746aae55b3d81af00cfb30afb86e492095e1f874e0bb3ba0b9e

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9fa0c68a80a44478a65ddb264b9220e0eda6f36021823f09b0b52e9797ab4f7c
MD5 7c52024a4c0e528ba3098ae5f4577a94
BLAKE2b-256 4fbfb460590c516d79c6d55dd8d0d3f71873d2e47f3acb775389c161ff3bdc2a

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ce8d994c24b57e231739273b14377c08706cd528fcf7cb7817a37992a463f7f
MD5 727115af6804fac6a89b38de9e591947
BLAKE2b-256 f2c9d6efe1b841ebece92960d156ab0b7e54b24f899377a4e86d22c6ebc97551

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 078bccc0255c0381cf890b15d92643791c6974338e1b876ba0841ec9bc539dcd
MD5 896e4931569ad291e5cc3dae332823e8
BLAKE2b-256 a2746b9f15e9e76d4860e5ad814179092378d60556b6649cc9788c6735c42eac

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e8afb4f77566ba2f48a427b14e4adcff2673557f46aca853a495ac0a108bff6
MD5 6b411f6ddbbb2387c395a8f9f7232020
BLAKE2b-256 23f03182f75f6343bfa908fb0e1b59d44b8235585e006eb3f7afa16d9cc8f632

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlcommons_loadgen-5.0.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8ef4fdf69279782f7d4d0ad7ec20a9e6eaa4c39a55b265a6102f7bfdcae6144a
MD5 d0611c01fe29dafff751c00aead0f359
BLAKE2b-256 f8118a5c9efcc2de8a2d7ef0485b7ee84a83a58c9e65faaffb8bd69794e05fab

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-5.0.1-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 76709bd8a1ac2474b3d5129d3cc534c1fb03beec05eacc5dce88956ac09da674
MD5 7fe5174e77d4d33e443ea52d47de373d
BLAKE2b-256 23b4837209c0c3206586da2c2632a87dd21a8edde75cbffabd64147b6ea2b6ed

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 732d92ac7b09b9e9d96072624f6ff1773fc2f9410d110db89edbe7d8cef4b541
MD5 72c02b64e8d62e7dab7346021ea606c6
BLAKE2b-256 67274cd02986114a06a379b0e803ff7019b5f4d2939d4c6ce242d242a735fb3d

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 52b893cd008f436e18d6e9492473fffc2fbaae27cde98b7196484870e3801269
MD5 9495711c50591ce3400011dda6fb1db6
BLAKE2b-256 301ef9fab5cd54f092a041364a4e36c20275a77ec0e9a76665e99260d89578cd

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 771a8ec65639fce4af1c0aa9a1987241f72b3d7387d603dd8df9e431d12ed176
MD5 f45ee2c7cf0298c1cfeef170cf604e87
BLAKE2b-256 faadc9b16d3f4e62de12c040f2ee5485adef79b20f7fcaf88cdad8db5b73f724

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83aec7f457c9ab2d19e18f4b505dabd6107ef38254e181674f2c4630bc3f39c6
MD5 6ada950cfe6896f19c4b2a9126854fe6
BLAKE2b-256 459f72fe2115cef8c7e584e305fae0c7e09707b5d154d4d105cdd83d15c477a2

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 00ee3bcc662643ae196faf39a318d6f3c5923d005dee6eec802a536b26d1544c
MD5 2dfcf3dab775c3594a7e0b85b853dd06
BLAKE2b-256 b1c539e8d81c1834dc509d5c3af8b26494acbbbc448d0548a515132f48bb3019

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mlcommons_loadgen-5.0.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5da0e936122a6e4d050bfc9cc43aa20647aa4905beb9b5dacdb945785ec54245
MD5 02d4d8f543a1dc2db6d59eb7be1bf128
BLAKE2b-256 0ad10ec85b8d87f09a4f1b8c0b1493988687f55aefe2f02d7ca16354e11459b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-5.0.1-cp37-cp37m-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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