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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

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

Uploaded CPython 3.13Windows x86-64

mlcommons_loadgen-4.1.24-cp313-cp313-win32.whl (278.2 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.24-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-4.1.24-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (518.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

mlcommons_loadgen-4.1.24-cp313-cp313-macosx_11_0_arm64.whl (464.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

mlcommons_loadgen-4.1.24-cp312-cp312-win32.whl (278.2 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.24-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-4.1.24-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (518.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.24-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-4.1.24-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (517.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

mlcommons_loadgen-4.1.24-cp311-cp311-macosx_11_0_arm64.whl (463.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mlcommons_loadgen-4.1.24-cp310-cp310-win_amd64.whl (299.2 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.24-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

mlcommons_loadgen-4.1.24-cp39-cp39-win32.whl (279.1 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.24-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-4.1.24-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (517.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

mlcommons_loadgen-4.1.24-cp39-cp39-macosx_11_0_arm64.whl (461.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.24-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-4.1.24-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (516.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

mlcommons_loadgen-4.1.24-cp38-cp38-macosx_11_0_arm64.whl (461.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.24-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

mlcommons_loadgen-4.1.24-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (519.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 20efd3b1f9ddc21e73d2c46a6f2dfef4a5225027cbb7de325984d577a5f98748
MD5 1efe81ec3cdf8041bc41b8516760e2db
BLAKE2b-256 02147e36d1f3d60fc0d111f573810377f4cbe352b1a4e419893e151bdb73d388

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b7ca3bde5d09b0292bc34fd74863b7c433519dacd58f1b370227f2602a08b078
MD5 64e000b66d4002403ed1d42ab2af281f
BLAKE2b-256 b6e3b47eee65fc23b0903813b9267ec2631445a7ed7797188682e2daa2d8a8dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6fde9f77f95622833584664e352875b3887451c2254d8e41d4271d83256e2098
MD5 8c028901bdf7ac46acaea61972155a9a
BLAKE2b-256 413909994ba4d6ab012f6b6cb1367aa17a89521110578c3cfefdf7c54c509fee

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c507abca7f079c839a4b067383607cfbd91d9785efb7a23ab16d967ccef0c4a9
MD5 dda652d346b82fb21aa91a57e59c377a
BLAKE2b-256 14bb7f357ddbcf37f87428d59173ac094bd21ea928ee9b2f1720bc28a19a74c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0801bfa1cac738d4d0a8bed200efbf96ef82b805bc95d919bb7d1deb8d0fa137
MD5 b8dc4a72601666a2d4e1315a0735dbfd
BLAKE2b-256 92a15429dd909bd150f2de1046701b5c56f7d6a01e8652a2d406ca0cac72bd4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a58f0aa7e9c0ee71ef20ed640fb5b58e59a0db3f7403e5832ab7b18524088a35
MD5 9b25ca1b373b46e263d52b1eefbc8d58
BLAKE2b-256 38e5b561c45ca589fd4e2746d4a1b4ee58b69b2eb7d7b166ee80134da754ab1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 097ac5e861284ba36210e4017287ce027fa159bf7264e25a6725633145919dc6
MD5 6b191c70423ad7a535a4b1bb7fd6a04b
BLAKE2b-256 2b174e33bb2c5802b42d0241ccaa125d8c04bc8b808c4402d5db7fbc0ffa6895

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 082942e2ca6b284b86f4aacd3b27e9ea43c68a219721f8b76f5dee30979c005d
MD5 9037564bddd0c839c417a424c78e6cac
BLAKE2b-256 cf70e2ed5863549e3d33ac89821bcae75fed5d7bac9cd5ffed867f3af0c580ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d834614d9357f4d8477876404db88ab7d8c8a1c133db305d1c814ccb1dd9098c
MD5 cc8dda2c8c674309d804cd0bf901dbda
BLAKE2b-256 d7be197e63aaa7fdc70324787accd214f583271392e88e5e0bbed67b24cb4a4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47453e9fbf59ad1aab18faad7a7d21fc4bb320637d1ce9a99da6defb2ea0fce6
MD5 c694d80ce1d877c13eab84837d7cb9f4
BLAKE2b-256 d50ec746a3e6361be4995ed46276e86bd816fe40275c9dfa1408d766c2814e59

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 295cd1b0b2c79f65357198e2bf2c07aaef3e7e9ead2ff4902845742c76c81140
MD5 9a6c7a5498970d7f618bf67f8227522d
BLAKE2b-256 dd58154fd746fd0dd063e45ece5b4178f3391a88764f94bb96da52a3ff0da1bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 501cfa8989614c7d798b92f7b6a3a4a29ee88cbd2d92cbacf2c0dca894719c13
MD5 810d0f155530bd5414bf1b0d3364ab7a
BLAKE2b-256 82d23b1f1f9963e87ddaece508e1d73c0bc1905627fdba92c8cb0da7b45710b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0fa16b59b36ae572bc067bb2b5aff668d9147bd8ad0adbb7402a496e37a02b5b
MD5 3655134a17f2947284c9b29b592b572d
BLAKE2b-256 0c4075477aa5a1161d004ae35d2f2e6b8c0ac631c98570aa08f30daee4755348

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 923bca7e48e39885eda7a037a7f04b16b4e48bec13ebd444476ec5fa2b0cfcd2
MD5 3257b6818696485af91ca703066987f6
BLAKE2b-256 7d8405c341b8def6518847695f447f7b039808c2d07815aa74bea72393199892

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ec3b7f36fb5da70cd8d475c830b073ba2e848364fa06c83e410ac0eaf4c3361d
MD5 f479dbc153c900a876590ed0c47521bd
BLAKE2b-256 cea14be79567e29065fa673676e4fd79c45bc55ce9cbe6c081b79260e830ba11

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b1c9be0770e016ae6263f22c4522d5a47ded5736c1ee005a7b0d1274c2c7433d
MD5 b9554c38f0b50d68b77a127159c0cc76
BLAKE2b-256 9243e00daafd892689a2eb9a84c0b6141b6648aa21f967472f646263d24e4861

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 754110b980d747d8daae47bd5d842193b1ec8e756713e64288720250ce6b8205
MD5 6e50b31b79a177f128fe8160bc34310b
BLAKE2b-256 b7294bab30fd44240d6b9d79c3b8773e6a17b5b5e60d107f9bce6dab50a868c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a765d94a285ab14c2b4c17e16172256f9339b9244b8dae5f56c02a8f3b41d238
MD5 bf30b13e592e023b721f76b47b49fb63
BLAKE2b-256 b3bcc9016385cfda29788a5e2b34e7714db373b37e1078b3eed8e4b53a0c2f4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3334039b45b47adbc4163ac5facdacfd7d3fb61192222a8eb537216931d6396
MD5 3983c95137df927afa362d96d8a2ccb8
BLAKE2b-256 51a6ec6214e16673b599c73eea7f4ee904e075a0b1c0edd5139ed21f90cc3201

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a55ae0c08e3b54f7a6d69618549ca8c04e257dcbdd50d45db866daf307300f9
MD5 263004c7d2579a3baee1af530ec72888
BLAKE2b-256 5c2d46f991ab9985cb04b40a0613729273588025e2b27385e0becd6a432168de

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ccfcec89dd5c17c65fcf27bf76a15d2e8912263837eb35aeff0e396fbe720dc
MD5 2ade7eec6f691965b35997a3b9317db2
BLAKE2b-256 6d699152c1e7e9a20746ed71e313955b8fa1d28c66bd707de3670cb79e64a3b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a4ce8745ceaf1a1cd1fd6c5d76ea2b81262a0ab1c5362f9dccd36603ec1897e7
MD5 3e546d88c53bb864dabce276ca758dcd
BLAKE2b-256 a2701fb99d12c66814fd4f2f13c320310bc2722e8523fc4e94eca1229fbf91f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0f1b3e5b284185929bb2dc797a038629c51c77eee947c4ec2683695cc91717e5
MD5 de25dce7ee7e3ad6f74c794f4180f199
BLAKE2b-256 ac0cde001b0aa6978c5b7acf8613ac8f4d8673ffbcd1c0d1e8a07e5b448d73c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14e1a24949989fff7f13348c27976bea25564d334a5fade11d059f6c3c432c7a
MD5 34d3859d6608fdd9b6f73c80eca7655e
BLAKE2b-256 caeeac7a52c8dd87ea31adc944a7a12758caa173d9bb65b27f9f35a65b994df6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7376df29990aaccb8be948acca46fa6505cabe253e261de887bad71d37a9364e
MD5 d12b7729234d46ec0f1b8ac252849052
BLAKE2b-256 94e77391a7f83b7d60300a3c82a5e77d16d6952dd6601b477165fd4f567cd1fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3bacd1113b393d0cb105b637bacada2c2339b1484a08f7cbbe2323e7d24e84e1
MD5 135ed23e06e439a995bdd2835e94eade
BLAKE2b-256 b7e5400def62e0391a5c6ca278d5b3174ef27fbcb080ae659479297880054a08

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6fe4d5b1a7df40f432707d043486d1e92bfaf60a17aa115916af6e7183c13ad9
MD5 dd47b563eee1503550ea650eda5c4cd5
BLAKE2b-256 75fb662c8c7ed5e3202e017bfdd47c42c4c7459d99a2a3f759e0d72ce09b704b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dac5bdd7265c688fff42a1df42d0b8e548c6e66a19f8a7c31443b46a8b248d5b
MD5 38a8992fbd16ce9f34700cbb1b63ee55
BLAKE2b-256 df132a55b58c251e2aca65de29394281319c4cbe8cdab2d632078641c17352ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 318c0364be7ed5a3aaa0731bbbf73b3636dbf9764f060702dac3e558a2a621d4
MD5 aa32331f6c848ee8b1dd5d94919be8f1
BLAKE2b-256 d2856216629b322abefd137840fe5574c61ca68e8a6f3a1c22b9f875bb4e52dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0c6ca47294b60a9c713f9183001d63fd1d440020577dcbb0d4d57285a3caf52c
MD5 c7135d4c01100ee8cc65dc9ddfbf5967
BLAKE2b-256 c098d5a3784c308fa31f56dd1a9977721f4605a274569f0a8ab54ecc3aca809f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 072bea66fd668087ed0fcbbae185310bc5aa239dfa6089cff39ed18420278045
MD5 024b7a63ac9a6752508e33b1be34b38a
BLAKE2b-256 69d59693276dc2c9d97baada826cb57980d887c4b6997fc677b8b067746b1854

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3ccc5e0e452a584eb354a4783f80a5dbad774559c8bec7854f7050b7e5d2d9a0
MD5 9ce08f021c9e31c85fc411b92336bb34
BLAKE2b-256 4e6f813805eeb56c7fb95c9d74cf5b4dba0ed45d81ab4d8cac829e4afb28619f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 048a5cb4578ecdb6bc3752d441e904dd61f24885a8207ead108813e75faf9a9a
MD5 79b9137f05454bf60cc45563b7ed5d5a
BLAKE2b-256 33dec8645e9de7654d9f11e282f3e9726cf07f302ee4124e1cedc4c0fcac1e7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ff690dbbfdf95a80ba1348d23881ba48767650b58e878280875f203d3757e427
MD5 f7edcd6dd7ec558dbb0cc09a602d2951
BLAKE2b-256 32279332de004a8416c4b2d9c0f9f8502830cf60168a9c33176eca507a0185ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e0895dfe37341a82efe60fa8315acbdd3557d25bf3617a5c611e1db46af2936
MD5 c5f45f542a08b32d1f9f6fa07a5f22e9
BLAKE2b-256 912606ae6cde0682c811f1dfdf722db66004489bb21fb5b5c49e4648128cf1b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 16fcd75c578c21812e9bd69a3820f3e5fdf75586b076153f754ab3a779c77101
MD5 d36d02b75a601e58f9e605f4fe45ce5a
BLAKE2b-256 af6246af82d8f4daa604b77112539625c095883fb4ad538e7324fbb4bc3264fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d54d0b7e35eb5d78c8a4fd328ce270011545c5bd9d0f1ea61978bcdc6ee34110
MD5 d8eb3c032bfd70166955ada9a8d38a6e
BLAKE2b-256 455f79aa68bdb28bc500eef78584eb9c00fb4ac459b4d5ad05bd8c7fd0c476fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9dc57040145410b6c7e3761c400cb89194c5e945da1a8159be5dca57e8af0e5e
MD5 b20c742414b18157e376b2729c34bac2
BLAKE2b-256 e0b74fe1f5de65c286274f396af7c351ed5e0c51c3bbb52d32b9ffa63e8dfc53

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1d5a7974abf0c49aefb835ecc84116fc67a89b517e0d3281ff18ee21355c4ce1
MD5 0a3b6b5b9c59b7723bb23431a70ab1c0
BLAKE2b-256 f1e22bc6d7ca7bc6d147d818e43688ee9d64db3737036edcb4f45b9999f559f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95a84f660d1a27b6859790802c92f60141d124f5021f79e542067ff2bde4fb4c
MD5 9bdae3fc3436534e2340075f40a1dbc3
BLAKE2b-256 b6c6aa1effffd06eab4c96121d42f82b4b2308269f3381848e5416730e86178e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cfb279ac34007a0525a7effc686918117d4ce807363048144d54f569970ea680
MD5 0112b3e9e1465ae201ade816bae02463
BLAKE2b-256 7b2d233271800a2293d077286a6175c21775952041b3f404bdf7799c856679d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b487e17b72104c8d17e079bdc82a78df8afa9aa760a94d45927dfe10ef4befdb
MD5 58ef5ddaa2a44580e00fd49896e3fb2b
BLAKE2b-256 bfc54812ea125e0dc0776197aac1ff71a059001662526562fbf5c7f81354e33f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0090b9937359f49957fdb4230ba17e54dc3da3c6483705d965002135b95ec46f
MD5 af9f0a4a429b1a26840bc72e96c924a9
BLAKE2b-256 d27dd8a74c701eb75a67eddd3b30fee41f62edfc97567df41c610cf4d3e10eaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b5b80e37fb35f3757c445d3553e120daee1eff97f351700d2c8ea300e9878cff
MD5 a36c0641a63b891ba05672607fdf25c6
BLAKE2b-256 4a65b17f7f0cce6f8ac9712ea892ff2ae6295fbaed8848b390bb09607825d557

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50e7c194c97f77702589415fbdb3f525c90c871db1a564ce30d3d79a0b0b811d
MD5 57c2e614126c97f9f593c62f72ba220c
BLAKE2b-256 42e38c0d5331dd2cb305ce639eed04224f09110b32b083304f44a737dd3e8056

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 275be527390b0018ab0f960d02f6a8517ee032187903de13024d79c76bdf9823
MD5 16402171e94b166334918c0b2fa176fd
BLAKE2b-256 36eaabf98ba809447c5ce29895bb7f3086de55a3b7c1c60c225663d23826f223

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02c7a4c6c531630d14a116873bfaee150bc3dfe2e6d5e86fc5520a7ffb60e43d
MD5 a7c103cc41f8c0fa7fcb94103f7c9d9b
BLAKE2b-256 3e1e21a4cc0d7c64d497e9ea373be5286e0f7696e926d6352b00fe6c9e0f9a16

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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-4.1.24-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.24-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0dbc8d1ac8e5a3fbbfefd53390c7ba768faf47d2f52bac21b184cfdda60d3b57
MD5 195bd811857295b70ebe562e6d29af1c
BLAKE2b-256 62a30dff09665df367bd86c45885ff1fc88620f7ad70d4d7cca0665e4bdd7741

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.24-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.

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