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.

Find Peak Performance Mode

The Find Peak Performance mode can be used to find the optimal queries per second (QPS) for the server scenario.

Setup

You can setup loadgen to run this mode by setting the mode variable in the test_settings used to run the test. Using the Python API:

settings = mlperf_loadgen.TestSettings()
settings.server_target_qps = 100
settings.scenario = mlperf_loadgen.TestScenario.Server
settings.mode = mlperf_loadgen.TestMode.FindPeakPerformance
...

mlperf_loadgen.StartTest(sut, qsl, settings)

Using the C/C++ API:

mlperf::TestSettings settings;
setting.server_target_qps = 100;
settings.scenario = mlperf::TestScenario::Server;
settings.mode = mlperf::TestMode::FindPeakPerformance;
mlperf::LogSettings log_settings;
/*
Construct QSL and SUT
*/
mlperf::StartTest(&sut, &qsl, settings, log_settings);

Note: Make sure you are setting the TestScenario to server and you are providing an initial target QPS.

Description

The Find Peak Performance mode works by finding a lower and upper boundary for the optimal QPS. Then performing a binary search between the lower and upper bound to find the optimal QPS.

Finding lower and upper boundary

LoadGen begins by running performance mode at the specified target QPS. If the test passes, this value is used as the lower bound; otherwise, an error is raised. The algorithm then guesses the upper bound as twice the target QPS.

Then LoadGen will run performance mode using the upper bound guess. If the test is successful, both the lower bound and upper bound will be doubled. This repeats until the upper bound guess fails the test.

[initial_target_qps, 2*initial_target_qps] -> [2*initial_target_qps, 4*initial_target_qps] -> [4*initial_target_qps, 8*initial_target_qps]...

Finally, the final lower bound and upper bound are set to their current values. This process assures that the lower bound passes the performance mode, but the upper bound doesn’t.

Binary Search

Once the lower and upper bounds are set, binary search can be performed over the range `[lower, upper]`` to find the optimal QPS. If a given QPS fails in performance mode, the optimal value lies below it; if it passes, the optimal is higher.

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.18.tar.gz (80.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.18-cp313-cp313-win_amd64.whl (309.1 kB view details)

Uploaded CPython 3.13Windows x86-64

mlcommons_loadgen-5.0.18-cp313-cp313-win32.whl (284.1 kB view details)

Uploaded CPython 3.13Windows x86

mlcommons_loadgen-5.0.18-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.18-cp313-cp313-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.18-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.18-cp313-cp313-macosx_11_0_arm64.whl (466.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mlcommons_loadgen-5.0.18-cp313-cp313-macosx_10_13_x86_64.whl (480.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

mlcommons_loadgen-5.0.18-cp312-cp312-win_amd64.whl (309.0 kB view details)

Uploaded CPython 3.12Windows x86-64

mlcommons_loadgen-5.0.18-cp312-cp312-win32.whl (284.1 kB view details)

Uploaded CPython 3.12Windows x86

mlcommons_loadgen-5.0.18-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.18-cp312-cp312-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.18-cp312-cp312-macosx_11_0_arm64.whl (466.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mlcommons_loadgen-5.0.18-cp312-cp312-macosx_10_13_x86_64.whl (480.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

mlcommons_loadgen-5.0.18-cp311-cp311-win_amd64.whl (309.6 kB view details)

Uploaded CPython 3.11Windows x86-64

mlcommons_loadgen-5.0.18-cp311-cp311-win32.whl (285.9 kB view details)

Uploaded CPython 3.11Windows x86

mlcommons_loadgen-5.0.18-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.18-cp311-cp311-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (495.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.18-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (518.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.18-cp311-cp311-macosx_11_0_arm64.whl (464.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mlcommons_loadgen-5.0.18-cp311-cp311-macosx_10_9_x86_64.whl (476.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mlcommons_loadgen-5.0.18-cp310-cp310-win_amd64.whl (309.1 kB view details)

Uploaded CPython 3.10Windows x86-64

mlcommons_loadgen-5.0.18-cp310-cp310-win32.whl (285.2 kB view details)

Uploaded CPython 3.10Windows x86

mlcommons_loadgen-5.0.18-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.18-cp310-cp310-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.18-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.18-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (517.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.18-cp310-cp310-macosx_11_0_arm64.whl (463.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mlcommons_loadgen-5.0.18-cp310-cp310-macosx_10_9_x86_64.whl (475.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mlcommons_loadgen-5.0.18-cp39-cp39-win_amd64.whl (302.4 kB view details)

Uploaded CPython 3.9Windows x86-64

mlcommons_loadgen-5.0.18-cp39-cp39-win32.whl (285.2 kB view details)

Uploaded CPython 3.9Windows x86

mlcommons_loadgen-5.0.18-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.18-cp39-cp39-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.18-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (517.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.18-cp39-cp39-macosx_11_0_arm64.whl (463.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mlcommons_loadgen-5.0.18-cp39-cp39-macosx_10_9_x86_64.whl (475.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

mlcommons_loadgen-5.0.18-cp38-cp38-win_amd64.whl (308.9 kB view details)

Uploaded CPython 3.8Windows x86-64

mlcommons_loadgen-5.0.18-cp38-cp38-win32.whl (285.1 kB view details)

Uploaded CPython 3.8Windows x86

mlcommons_loadgen-5.0.18-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.18-cp38-cp38-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.18-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (517.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.18-cp38-cp38-macosx_11_0_arm64.whl (462.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

mlcommons_loadgen-5.0.18-cp38-cp38-macosx_10_9_x86_64.whl (475.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

mlcommons_loadgen-5.0.18-cp37-cp37m-win_amd64.whl (308.4 kB view details)

Uploaded CPython 3.7mWindows x86-64

mlcommons_loadgen-5.0.18-cp37-cp37m-win32.whl (285.9 kB view details)

Uploaded CPython 3.7mWindows x86

mlcommons_loadgen-5.0.18-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.18-cp37-cp37m-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.18-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (495.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.18-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (519.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.18-cp37-cp37m-macosx_10_9_x86_64.whl (472.3 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: mlcommons_loadgen-5.0.18.tar.gz
  • Upload date:
  • Size: 80.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for mlcommons_loadgen-5.0.18.tar.gz
Algorithm Hash digest
SHA256 342053ac385893498b91915dde0bdd87bdcde06852290ea93ad02c24bb98e648
MD5 381704c724440ec846765f5972f1d50c
BLAKE2b-256 d2fc8f002e89d80c5c89a44204c124f8b1e2695365c699c10e11ba125b9c7a7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-5.0.18.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.18-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e23edd65ad08571d23210e74260174b8f48f539608f4106e944495154e962b02
MD5 4fe227b6f34be7eaf341261a6e813b64
BLAKE2b-256 021cd69e37e50f33fd28691b3f0a2163b6462765ff99a3b69c721b2f19f88e92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 fd3dc59660e53788315a869b5c11402c3c74d881ee9cf55500128baef6293194
MD5 69e01caf822e7732d9ff22cbb7156256
BLAKE2b-256 65cb4da616010a601ed4463c58dec5fc559f7c695e52146dd1367c633d552c59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e715e0d7d9177c0a431dc901b50f94ea57e2f85572cab9be322235b6937a98e
MD5 d4b787cb7423a6604e3eba796952cabf
BLAKE2b-256 b2f18e839d632964865a50cefa966cdc76c0fbf10db6e7cfa3ff0a9148dd8445

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6bf2393b971b1aa58048bbfd5e0a4990b984ebb72f46b9aff034c6eac44cd51e
MD5 3c7d0cba6757493d359ac00685d22bac
BLAKE2b-256 546a30bc61f27089e91f17394d489d23b95b6a36f8869765f4aa163c170c9a82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61a47b9359d2c263fa51f1fbca389546b41def04fdbfaaaab4db51a12e2aab91
MD5 42751444a1928c443f9ca77bbeff7994
BLAKE2b-256 0db7942a1c8d0df35160ddc9e06bb598ae618c7487897c1621ccdf1f317223a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b870c3bfcce20523f4e525043e74cf57c8b9852485b33ec24f4fc99cb358950c
MD5 f91d156ab40bb20c3f290672467aff18
BLAKE2b-256 d0fb75efeacc3a59c6579610e9790598e18632a2fc2f24d601d653ab141a8a4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8cd8e28b3149418a735a5d395bca21b4aecdea5a53c8b4e4eb70cd537dc97208
MD5 60225c6fa95f4471ae7007a90f3c9346
BLAKE2b-256 d1427c0ed74f0e4a3cf2af974d0809820756b8ac139e8409568785fecd54ee0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-5.0.18-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.18-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 10bdc668e65adb218d88a9de4f06923552795796ad6037442530489b23770ebd
MD5 c888418aea290a135b002b015b7be362
BLAKE2b-256 39378b779008ff9d1cd5fcc10ac22e76976932aee9e4d3418ce4679decdc0ecd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 54eef23b6b702464870db8b585af8fd42e12a8d17fcf4741d0620b12a6e88953
MD5 d09b158f470252375b237be72c072c54
BLAKE2b-256 6648b4a83cdadcfcd391effd36d6cfa4767c635ca5879c2ccb1a5a4480e11e4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 22fcacd99e8148ef479ef9d2b01f175fef463253f5f8f25b58e2fbc4e9682098
MD5 a264db9b26598ccf513274c0ba14d231
BLAKE2b-256 87932f53dbadda6023503f7a23263b387dad180a6f7d827e6a8bfe8ed2e0c658

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be798b69d0c5bee1e54344f024329c4523343efc18e76b2d0d1c3078b210748e
MD5 04fa20983f4709fc641edee23779931a
BLAKE2b-256 7477bd4e7a2d2a4a6dfb9a0c88158ddb18873fec3d4edaa73ce3972645614ae9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f20aaf3695b1ba868ae0d4bd87f5862aa6c0e223a1043cd68479d0c2b2de4571
MD5 0b07291ae71e2ec56402ddf4b08c54e0
BLAKE2b-256 5e033ea31526d7f9bd4000a6d52f552363ddbae1c72354fe6058c3c22ad52e83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 000ffa2b3d2a52731a416f66625ce33a997ee96ddd2eee065cb017101ba48f43
MD5 7d7b45dcf6e4b96bcf89da6f2333c1ee
BLAKE2b-256 57ebb0ffc3fb9f24ce1ebf9087a24c7b1cb80be98511cb02c592ea13e8469888

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4df10a415b35f337a1dff730efe12f6415c96f16b9489fbf2dc3d5908928eb7a
MD5 5fc688777bea931a1bf572dae3bd560d
BLAKE2b-256 660ab4d745aed3fe713635c170e3449b36310e840b0be488d187bf65d73f9e96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3767a7817368f60d255956d0147ba8ae0af8c9add5f75edbf8c2d527e7b96a13
MD5 eb6482d07eeee0aed5df171e06f28137
BLAKE2b-256 ed97e472f9aafed0e4501e344c4a99127d7be33234d1e91bcb51fc40c2bab276

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-5.0.18-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.18-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2a62bd99c3026bc9042307111422a119153316ed48a95c444f653fcd97c2f640
MD5 89697101b15cbb2f19d4644861e63b44
BLAKE2b-256 c9bff082012fa3773383e48b0450ad45b18c81f96a7bb606c3845345b34ff90d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 df5fb19cfdfb3c1d49232ed55d93ebf2ae84069963ad14713160c5e94dc9db50
MD5 ffe80a93925e67f8650155788f768638
BLAKE2b-256 588fea9a18e3210832f4526aaa5f8114630b87467d8302d0159ea2e9f8b41461

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d4da3b052497fc11e172002e2fa03b6faf9299f078411fa9ec0ac182bbeddf7d
MD5 c1e547398cda25560691d724738ccf88
BLAKE2b-256 6b325532b1a249ab69c75e29debf49e884fcfd91722ded5a43a7eb2ac5d6d33f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 585b2427f3298fcfdf1ee2838c493196029c2aa3b5129d6cc3376ec6781b263e
MD5 72d2951c0aa0c2c6cf408c976642636c
BLAKE2b-256 19b97a9db872c2dce8734da00d46cbec2711e06027ea7d8e188edd62ac432ffe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e05aee952aab43ebfa75900bfa001e8f3e57dca6acc3f10a784cffdc19e985e7
MD5 476e768c09a266b0078e20fa10139e9f
BLAKE2b-256 21c122571fe8878a1dc37d8a49db1ba67d8738e83c76c013d2ac5e21ebabf742

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2232a06551f490a4ff195b108f701074cb811290299faa3306f0d364f4dcbdad
MD5 553d4e8e487060c06591deb64a12fd0c
BLAKE2b-256 05e9c700cfcf2bf0f807c1a1525de115afbe720aa4fcd4c53fa59a070af80f8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 37be2440dc92586a199c5a4b84d48257910e74c4f15cf2d1c511b503d79f3305
MD5 a8667d8a384032c2ba42a56956019d5a
BLAKE2b-256 a08950bd958b0d0a9083e143dfc85ee20db3e7bebdb742a90b87198d134de4b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9798b40ab84a1d38c000895336922f57436bdb3b4fdbc385a382d22efabb123
MD5 da0e8f423ab99569ba8a95c9f0a73eb0
BLAKE2b-256 46512f95fe6fc31eec00cec5efc8c53dacd41b7c82d759bb871365de5a7cfe6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-5.0.18-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.18-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 65282f8162c94d101ed71b976618161076f1d1256769e079fda12f78033e46e8
MD5 65a21d08854be5993a965ef73f558c10
BLAKE2b-256 5a221f3c68dd0ebdc516c356ea05f60f6f0e920f3925bcfa0c80ed78b6a9b9e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b3ca773646f71398ef05243b3009544593b276f34ab63fa4dc6e2b046550d84f
MD5 32fe7566c3f5297422b0f9f0f30feb53
BLAKE2b-256 dd0d191f4069454c9d039d8ea5ee0d5937113f6f301704627abab01cb42dcae8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9f51a57eeeb3f98c001fd740082bec4588eb87f434d3eabfe83d001527776961
MD5 46f88dabc68a314734880723743c5776
BLAKE2b-256 f9ed6bbdc74be2bef976972fca673bf473dfd4a4a60a30e26ad9a0fd7949d902

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 45a0e1997a096508dddaec76334b9ed289aebc74e566fc1e3e1b983a74538e44
MD5 3fb8394f9bbb65986ff5c41aa0d79d5c
BLAKE2b-256 c8df2b7621069faa43aa7203aae99aa0d02f181f8e79278a0d44c2bf46980ebd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1684fb5085baf0b07a96a555ba65d1dbb6ca5bec0bf861b8e0bdd80af425ea06
MD5 3c382ff376c3e697d9b56787c11b413e
BLAKE2b-256 b1c3414f92988ac1919a184ec039091469c22146f2a2a097d74ce0fd16fd9234

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5758cb8033a6f6d7467659d6199eeeefe903f2fffa2a3c3ac1e3ac3f8bfe6c5
MD5 918669f6209bc73b70189f0e422f4f32
BLAKE2b-256 90fb4821978cbcbaca3a60260d3c422d233141854c014deff71fe4185ad70ad0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 311c06530f4afa1daf48cdfe00b3b32c0fc8fb186aec66572b9bad12ace0a51a
MD5 25311a5a3efd6111e1fa8dde7573413f
BLAKE2b-256 1c253baf4596843df2f5dd8f3c5e7335ac4a59bd148c14b63966d5db932f09f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 389374baf4cf00ec253d7fadf9573bf6ad33490d509ed809f38093e9af038676
MD5 74b4b7f387a17090bd2350931fc5db7b
BLAKE2b-256 28e40e4b58792028f0abc1fe2d14614c4a7ec4e718869200ab6d5b01bd87ed16

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-5.0.18-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.18-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c47e0fb7ad1aa21de1560b541c3813c4d7389ab9ba58a74df15b6fdd7661b52f
MD5 1e605c8c495884411a10c5fc0d1efbda
BLAKE2b-256 c0685b53421f39609158776ff429f98ecd0c20792b8a35c723250f3fcdebd571

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 eb5fbbdcc0ad79489e54133475bc899f46cfe46c907d83c0ba8e35415a002179
MD5 acb96e9ac73c577dc876ae2257bee4de
BLAKE2b-256 d82e280bbf92493f03e22fa72889fd125082752832ea6889e36f45f57938ef06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2d1babd50748af6c84dfc57304ebf6158f2d2d0ba1af6ee40ed1ab5ded04b97e
MD5 62ece7ebef711e9c9717cc9cb0d934e9
BLAKE2b-256 250811004e27d761c82cfcf731d06850eb7b538721c107e1133c65c7dc1f3999

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0cb32e29aaa7c1596998f62cc382c194c1a3959a31e493129ada5973d300747
MD5 c5f9d5006ef0ed95f49cd718f52d4c7f
BLAKE2b-256 4fe40e28a3bfae6a5b0a81fcfe175077ae026e62fb5c39852dafb8c0ca0f69be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f3bbefe0b438eb42fa72de60c40852aaa548ba5cdd6875b69e74bbf4a1e92ee3
MD5 bd420cb510e7cf7c02cbf3e81742c744
BLAKE2b-256 761ece8f5324f84ebc34b87d97837a156a6ec7193f3f1148d8173a047ddbdfac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9eb74e9d6bf44bda6f28c61b3c0d7aadee816141840b80ab7302ad50c0b5953
MD5 535a6883d44d86d3e422411d6cf631a3
BLAKE2b-256 098b58d36381e33fcf8c8389f3cecc662e7c386ebf4d4b49dd34cca8461632e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fa3165245801b6023385944a573f0d51933e1ee030822c6836f9a3725a8d4ef9
MD5 1ef545391343ec3fe791ab74d591ae14
BLAKE2b-256 ad44850777b9516a54c14da425bb93059002eff0fca5790a9ec11c979992237e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f32aa67e92ecddd5799577d1ee5fd1782741b65873eded2c54ac72b499f48509
MD5 cc2c3d60c44070635aaf39b5b746af5b
BLAKE2b-256 dbef167520ce8e154c4d83f414e1e2b6f5d3b5b9b3e0b0d32a0db18ab8ee2841

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-5.0.18-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.18-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 da639b80f669456caac21e6c682e08a23dfabc06971165994be024f5bbb4c25c
MD5 73afb82d80760b31b30a9ab2a9a36bb7
BLAKE2b-256 4d939269ce51a8ab9cb5712508cc4942eece9d35515858b18c96379ddde43e16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c26a2869ab822c6a82a30c8b45415ee347bacdef542a184745086d9227f03e1f
MD5 b0bb2dc977331079c24eaf5840f4be5b
BLAKE2b-256 ebd28c7be826d87d1c6f7b6d158f461329baf2d36e94255681581964fe339f70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 886413f83082b98f9e2ee5a7ef01e15f7a46a8a2f78f810d4268cd81930b6363
MD5 171b276df1c024d29f8df8ee9a6d02fd
BLAKE2b-256 fcacbf9e4d080a85482ecef31636961bdac91689326859fd3d1ed57e17e8c4d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea8b333ff0cd7a79392f4375b19d9f74ddc6895aa210069198cc48cfed0ab600
MD5 2ae2c7f60018c969956c31dbfb6a3bc4
BLAKE2b-256 15a9de2015dfa3a406aaf9741ebe08f9732fa62f82dc38413d3f4d52cda61a33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e6381b0fd368e4611d5e650d9fb4bfd0847d426ad6f022173f845cf3ce508d90
MD5 0e76908600524b50146e1ec0755badff
BLAKE2b-256 582f41590d5e9830ca9012e74e42598180e5cab590a2d0cc41be9b82cd8666f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ce95780fa3b24aee98d82473b37b046f6c16c063da5b77f54c1432623248caf
MD5 92fa28588ff203dae72b8cd61d7e4f12
BLAKE2b-256 56484ff808ca3bc6285212adc36d1d48cf36cdd2c6a6c192c246f91e1cbe4065

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 328dff1689b6d852eb4355ee072b1364ee5a0ac7f6675aaf512951b705e68945
MD5 f1d5534ed318627908ff4f98c3131cce
BLAKE2b-256 18e16b2df269759316d99958be9177cd013a58bb7e97667d345552f53dc8ac77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00b995b4b79466de7a3236f9dd8659d0632b82b3cafd977e4939250fc8fc1ca4
MD5 d2d5b0594b62fc5c2d74637625ec474f
BLAKE2b-256 1dc50f16c7bdf9d0db0db221b78997bed33c1931eab0792d26e18afaacc26887

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-5.0.18-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.18-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 24c133b8490f602cb76e3afec9a243547d55152938f294b7b4d6bfe30f66afa1
MD5 243ca47ffc6514b09ec8ec6e7d89a2c8
BLAKE2b-256 19de7e021ccce9fcc0eff75059e8e803fcc6ca0253a6e1ce7e532eca8bfa80f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 47240347f2e4742f141ecf5a98e9aab4fc6beeabd455ed428d7c814b48e5ccf1
MD5 f3bdaf07116a728273e31f533495db65
BLAKE2b-256 a09b282e1ce3a97a02ba0e02c8588c3da1d88972ad53c1441207b7d04a9fec0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ff12ab349f77ef8b244d47492ba49c518d9367a25bc6ec2e51290fafdaf9358b
MD5 0e03dcb4b6daac01bb1560ebbdd3b1a9
BLAKE2b-256 a6746e3b4722e266856d8b475c6123b6e33d7dc750c1704db185ebec79afc654

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d4cc87826303a0a8dba8b2ad25bca9a2a19eb9d3aca6c5b7f496b31b4023b8c
MD5 3e1c7d758d0d2c0e33d2b9ea928ea9d0
BLAKE2b-256 78423fea22967f17fedc805701643bd3f386b02b3ef56d33ddf30a908a806f43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e5f724e0fffd8453f2b4855f2cc42250d9e29369fbc8355f75f33b8f69ec61a9
MD5 0e6ec337360f4dd86f83ff0d9ad8d133
BLAKE2b-256 6bf64dcfbca3039e10b696759e6edd6c5b56803fe16b0b742b9161e0088a5992

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7740da55e086cb58b7bf17c94cf5be5d67851f59ef260d894b45ad22fb359feb
MD5 1bd1a0eac8a706f6a042b036b755333b
BLAKE2b-256 3d35dd453403463ee46c19d73b52963b5f8b44e336f8b5f821561a887da55802

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5cba730380c023f7ae4221bbc00a07e992e31857628576b3b893671c6f9ae4fa
MD5 0617fe8999610792fbba8b16241bdb57
BLAKE2b-256 5a0f854af5089ddc622160c1d4c0a7a0b7a45221f652b19f9a0f29b4835bc527

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.18-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bea2085f9e144c9bcaeae80114211e1505c53f886619e0933302d4da9b63c59c
MD5 59c059d6cf6c283bc9f10fc30a40be34
BLAKE2b-256 1bea6b3253fcad778e0667359fd89d5e0988a478b6a86513775ef2c2131407a0

See more details on using hashes here.

Provenance

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