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.17.tar.gz (80.1 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.17-cp313-cp313-win_amd64.whl (308.9 kB view details)

Uploaded CPython 3.13Windows x86-64

mlcommons_loadgen-5.0.17-cp313-cp313-win32.whl (284.0 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.17-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.17-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (518.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.17-cp313-cp313-macosx_11_0_arm64.whl (466.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mlcommons_loadgen-5.0.17-cp313-cp313-macosx_10_13_x86_64.whl (480.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

mlcommons_loadgen-5.0.17-cp312-cp312-win_amd64.whl (308.9 kB view details)

Uploaded CPython 3.12Windows x86-64

mlcommons_loadgen-5.0.17-cp312-cp312-win32.whl (284.0 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.17-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.17-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (518.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.17-cp312-cp312-macosx_11_0_arm64.whl (466.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mlcommons_loadgen-5.0.17-cp312-cp312-macosx_10_13_x86_64.whl (480.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

mlcommons_loadgen-5.0.17-cp311-cp311-win_amd64.whl (309.4 kB view details)

Uploaded CPython 3.11Windows x86-64

mlcommons_loadgen-5.0.17-cp311-cp311-win32.whl (285.7 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.17-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (495.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.17-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (518.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.17-cp311-cp311-macosx_11_0_arm64.whl (464.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mlcommons_loadgen-5.0.17-cp311-cp311-macosx_10_9_x86_64.whl (476.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mlcommons_loadgen-5.0.17-cp310-cp310-win_amd64.whl (308.9 kB view details)

Uploaded CPython 3.10Windows x86-64

mlcommons_loadgen-5.0.17-cp310-cp310-win32.whl (285.1 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.17-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.17-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (517.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.17-cp310-cp310-macosx_11_0_arm64.whl (462.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mlcommons_loadgen-5.0.17-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.17-cp39-cp39-win_amd64.whl (302.3 kB view details)

Uploaded CPython 3.9Windows x86-64

mlcommons_loadgen-5.0.17-cp39-cp39-win32.whl (285.1 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.17-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.17-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (517.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.17-cp39-cp39-macosx_11_0_arm64.whl (463.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mlcommons_loadgen-5.0.17-cp39-cp39-macosx_10_9_x86_64.whl (475.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

mlcommons_loadgen-5.0.17-cp38-cp38-win_amd64.whl (308.7 kB view details)

Uploaded CPython 3.8Windows x86-64

mlcommons_loadgen-5.0.17-cp38-cp38-win32.whl (285.0 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.17-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.17-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (516.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.17-cp38-cp38-macosx_11_0_arm64.whl (462.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

mlcommons_loadgen-5.0.17-cp38-cp38-macosx_10_9_x86_64.whl (474.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

mlcommons_loadgen-5.0.17-cp37-cp37m-win_amd64.whl (308.2 kB view details)

Uploaded CPython 3.7mWindows x86-64

mlcommons_loadgen-5.0.17-cp37-cp37m-win32.whl (285.8 kB view details)

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.17-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (495.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.17-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (519.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.17-cp37-cp37m-macosx_10_9_x86_64.whl (472.2 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: mlcommons_loadgen-5.0.17.tar.gz
  • Upload date:
  • Size: 80.1 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.17.tar.gz
Algorithm Hash digest
SHA256 06410ee545d6959221c7b66e3f3c536c305b3a833dd5f691642f1764d556b990
MD5 992519f741da054cfeff34f6cdab70f4
BLAKE2b-256 d159d45a264c323ed0da56f0f10eaaffdfbd9b67e5cc62d5f99f5e8c4560da78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2a7adf8a03245558e074fba654952184987b526e8a1e484b677e5fff36180e2f
MD5 44c77ba70300037b7e04257399263b8f
BLAKE2b-256 922253f6af4ed9bf3c016efe4fabbbfc002f610784e5f2f1be44cc33b1b27505

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 136b3f99838b2f02f98bd45287d0ba52aa7b811ae7840ca4f506e8748056099f
MD5 1f8bab317da4cc03a279075df77dd162
BLAKE2b-256 03de397bb7223468e68e37e5f903fe20253a1f7431e1333b9958b62980148981

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ac00872baf3a9bae652fb3716fe49400dc73089e77f8e6d4a482dcc08e5a6911
MD5 e764d72548686b87d9bc4b55c985e37d
BLAKE2b-256 74f5081b56092ec0ab9f1590dc060dc29bc47bb0fae09b31bb7dcd402e3271e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1eacded8cce3431e414ca8d845ba1fac0c9899f0c793e80dd64f2de66e03c695
MD5 8bb9a5a6a6e89d2bf737ed83803eed52
BLAKE2b-256 b7ebc44e9ddd43f937ede7d91eda3dfe80d2ea4eb479bd3af9b2085df38196c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3cfbb82a86b60f72dc41002fcebc6c7f9a925e0cbb1a8066b9ff9158f2e7e1c8
MD5 062c094830dd46ab7aac0511708f7091
BLAKE2b-256 3e8c8da49bed8eac0ab1154a2a581ff36c3d1decc9e8fdbfcec6f2b39dd392c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 15ef54863c537123165ddc14ddaa66377bcc6c5e3ab5779c3dd74ffa37bb4009
MD5 8c13b3e168aba06b71c42b071b414e87
BLAKE2b-256 2fc9b191849db4fa96e15a13056fb07aa893dfc48cee0d9217b416dcc0cc4fe8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bdee774e31da0aedb2611814cabba4f030eefbf1e530ec4b5a29fa50793fad53
MD5 4a9e0f46c65a82f6501d9736a1db1af1
BLAKE2b-256 4dd39c1ef2fb55825ab65239d793cf2e72a98794b8d72afdd59272576e8de9a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6ec175e5c7264b0a49f232144fcb6d5c0ac9eda8416d3ba6cbeb866a78d46274
MD5 888db58325ca672f50249be05ef02ad0
BLAKE2b-256 9af021b1eeebbfce1845a0805608c2084c1c5e89901b70c85509038addafd6a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 aa6417e219ba821fc20cb6a9b1e2282c1b336cf36f1567671750eeefb5a1a8e0
MD5 dd99a54c405f0213a7b1353443d81bc8
BLAKE2b-256 8ca399e4218498fab0765cb9360b42b96673e8411de72f89136727c69008f8fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8c005e75ad48b0f28a4785f95f90e8fbe0e5b3096cfacb8519ee56906124c0f7
MD5 03c88fbc25756dbdfe27859f51b0498f
BLAKE2b-256 cf379077521514e079af0f3cfe06e19574a25c83aed2b15e5cb009b18c2d5945

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 add4fc405c8ce52fb85b2e792df5196cffcb8b2391c75b9c4d77e50f6c04a2cf
MD5 cd425f8d8be1fcded373be7e096ecd08
BLAKE2b-256 2a3fd56416e46a98dfbf642b44c77b764ba1ac3543c0e64e715fe2f719a76815

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f11c5c8d81c6c7c9af6e9ae5fcb677c7327919c844184e2ef59c73d1bec88712
MD5 fc0de3f8d0b1e601956a267c48937b81
BLAKE2b-256 fd792ddbd448027a8a3c0475817f0c7a92bc755c0e845e63b827d2c5af13b061

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f128eb8d760a4d7e8107be097639ded7d65b48e6480682f65b7015f07a0179cd
MD5 08e1140319557b2feae360fc741a7e7d
BLAKE2b-256 a578d9285ef4dedc7dd7904ac0772f75338e8873b9d55b595b9e9b5a26d2a640

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cd509ab9a8b8a392b22a4fff2a67f38e118098aeca560575dad2c0a3e8cca354
MD5 b23af3d819ce16fa66137744739e641e
BLAKE2b-256 e8685364a13fb2c4ff994639fc0b99f15b9147e0b3302b7a645bae151dffcd82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d4a87b7257036887ac8b67ead08b98c1d0ae8e1ea14f2cc730549b06ea7a331
MD5 2d24b4a4cc59db681004c641e4527457
BLAKE2b-256 1375032f91fd318d6bba44bc86e14e58e510d19dd170632ed75517ea394067e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 66c561c554d9702835bf2d04a099c51ebe514261bf472a04b2394e47a4f69f5c
MD5 a5cf9bd21538a5ee7d8fcc806d55b37e
BLAKE2b-256 22eebf856d877ec03d9a66eeebfbbd193b052c9bdc6d89f1d865f3102f7b1b0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 15f32156725ddd476c16c39ca8bfdf1815cdf30d5f001549f56d2c511608eb57
MD5 e379e345a4151dab8e1c8f5377fe9f5a
BLAKE2b-256 5940f14a70d6d157ca9da8c6c39403ad026834c9454b060a75f7d42ba6330bca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2c2eded9bf7119999ba1f9f5368d55a4be76f2536e307d8d9a1ebf375b604f6a
MD5 04b1c26e3511586f4b44441772edccd3
BLAKE2b-256 a85897a261044d3b855ae4ec119e475140030dd8371e77b58baf32ff73a9e489

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ca6d3af74994efaff6b449a0ab2c3508b48066372cb9c02d493d8b854a1a035
MD5 67682dbb288d4a06ecbe5caebec20a61
BLAKE2b-256 f1dd9eb9d4bb12a6e5e9421b7b25e73a542abbda49383bb12e819b790652cbc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 10760817c6a4d4ac2409d2616551cb0faad8518719dd032f14c090de3cec7193
MD5 3adbfca765a6a5f52946d7611ad597ab
BLAKE2b-256 5acbe3057abaebe0750475470f4c39df76fdf17d47bb63425edb0af16a457687

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53da91c40872f841a0fb6b2394f5d2a98f14326d19020f867de7ca6976751bc6
MD5 5c1e760e816e7cd52b1398a975c614e9
BLAKE2b-256 c1ae4c5bd2f9eb3dfee571ad31133fa8c6b333808a24bd721debb3cdb71a4ec4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b0d547599135ab41f4667598684ff6e61171f5263c4366a04756a8f154b1a9ea
MD5 649c1375407ab01910358a56c8691e25
BLAKE2b-256 a727df487022185e6eac2b0d8d34b041688a1a74dc87e9dc1301b06f306fff11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6830116e57cdd17cf39afc0414a4db30e91bdbea3e2b42b420dab69fd4d181de
MD5 83322291a216d2a7fb51f97728db1302
BLAKE2b-256 22b222c53ec8585007de4335a07e135374ca4703a4188b45488c84ab4ff97634

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c7dd9f11826912d6d8c53c5e896c4d825579c90bba1af7f659ae3790b5b01b22
MD5 93f3997f8133be1f4293168d66facd18
BLAKE2b-256 bce3fcc897f81970ffd1bd6ef84809a59a3b2aec8bad001508432b0ffaf44624

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5dafa79d55f7a41c1364e959aeea98552d5f3f36cd94eda8857d02fa41908d85
MD5 8ec792dab5884cc646aab683c44a8b63
BLAKE2b-256 00227586618bd9f555f4ddcd2d06a2cdd709312e7f54dadb9f7e77cb0638e802

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 102d203afef2cd8298feaac3387c88906a9313ab3e4b5b64225478aa6b727ecb
MD5 1c392158ef95bfc9e6468c98201c891a
BLAKE2b-256 b934572a7f3008dcf1cc9a2b358886c6e78c28cb34e10b7e953a5612dea65246

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f82f80ed07454e935fe6092dd5dacb157fb6c43896edb87e7d6de67a9524839
MD5 0c37f51f4b43d6a664827e9b2dfc6e2f
BLAKE2b-256 d3187e2d637004bf7a586ab02b3300636b7f52d5d35b5561645372ee0558e9d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 40563fb372379854ed839f2a3076e4d5d95800a2822738524355c7cca6f728e9
MD5 c39dbaa6c7bf5b5c81ac7e5b243b4fad
BLAKE2b-256 8b61e40d3df895516918c41f7637b4e64d449f6b9feb1ed067ed2367bf1ff337

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 955985eb28dafba35138b2c00df69487c77888acd2eabc4f752c09e2264b67c2
MD5 5d06f3b1ba5ce10e20481946466d1a36
BLAKE2b-256 b69c90a12655102c79af3c403dfdbaadb47ec85d818dc71f1c0e221995d11705

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8f91300eb589615dd60b63d75511c9cc16b955f5a9cfb7ba864664766860eb3c
MD5 a58ef79ec6d3489a8c777612a64b7276
BLAKE2b-256 f552757eaec2a42b52aeb6f7327c1f1ff472aa71704633af03177fb596af19b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3b83609c2922df65179531cd3b590f3ec7d724d9c1044f1f456546db6d308ca
MD5 0c985f9fbc68babbd96cf873303f8b9e
BLAKE2b-256 892266b561b030be3acfbd370a8c15aea03ab0f5b6888d7076c9847af49f187c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6c2519efe8a4e8b90b878a02a42a7d5073962f120507a94ebd6badf99ea45e87
MD5 17376f0c684542f841042c6c8de6752e
BLAKE2b-256 1c8ad9f468d651ec74e493bc6c201a218d6ce636f67567aeb0d7ce1e5722e052

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8839dbc7fd0f7432097bb8d6718bd2291bd49da347020d47ed1b8e45fd875e7e
MD5 f504ea01c8b39c404a67cf4183685e5d
BLAKE2b-256 b3a9bfc901c8ff3249f4541c007a33443c83723a5d83e8af8907adbc1253225a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ecc63367ae47ed9c49dda8bb526530a8241223686197076bdca1a76bfd5e7823
MD5 bcd21f5a76323692ca7a533edb2a507d
BLAKE2b-256 f97829a7f73687cb33821ceb5cdc4f2c0cfe1ae9ff5ae74bc3155fe7b2d608d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bf07fc80b013f339abc531df26ffe5abb96c8f84f797883142bcb33a313193a
MD5 20b0269ef22ce5b54e863294947130bd
BLAKE2b-256 3d79f15f64407814d286ec5a2c9128ab4242f3de8069e8fdcd44e1c3b1f54639

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e7201ceccc56b7c23df6a590c9b76536210b0978364c234f4f0d4a468f1430c0
MD5 eb0b4ee70d04da57bebe4f1b96535327
BLAKE2b-256 943aa09712a14c1b3fc44ff7dc1cc0f80dabcd38d0d2dd951185db572b522d30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae26c0dc81cdb7ba41a3b6dd3da6bbcdd1a56d10dca48ac566b1d689ec399889
MD5 1bcf2b05d0fe4932eb544aea21ca05ad
BLAKE2b-256 9039774e2858987dc647963ca846239b05cda317ebcee3da269f81b6c876802c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9b16edce9d05275be79bfc55d9182283da9f9bb20b5f72b873ad5f809a1af72a
MD5 0576f24a1c852fa8588fe0e3a079463c
BLAKE2b-256 38ee089dc3b3f752640fe6fd8504550e8431147ee311e73dd961a31b46b33a24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1ee948fa39c1ec0fba723d8fe6ef30955643c7a29172d73166c638222cd4ff9
MD5 d1052e4b183601d6d47ae88e8849dcf8
BLAKE2b-256 2c2fd44bd31bc7ce36ae98803ece13c1cd0fe5068aa34f1bade25aef7a55c0b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8b391332bae99af92eef301ddac8be3d16c33d05bdc7b14d06245843be7be057
MD5 6dbac13156bae2d94f38911bca489c1b
BLAKE2b-256 3c39bf1872307bb053a32f943d6bb5e6316bea3c579aae6f43b596ff1a98203c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 27c93824bfadbc08cb81159973113e2f164b2858f005a5f256d422ce02416097
MD5 a94adee166db8e0bb03971625ba6f920
BLAKE2b-256 d4e942801fc0d8f81cd8ab04dfe97010de6945da1956ae9fa0f947e30531437f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1e3de68db8a8a4c2241ec0916c5515408b636eff19db3f9107f044a59e885912
MD5 12de58f4dffe6b714d38711738b1ef1e
BLAKE2b-256 09fe90bde7dd7a6c709eaa4b9b92bbd427a4ba92628146e5b2676a71f3ce10ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64f0c46498dcda2dbb146f1bbf3251ace95cb4d01eae1dd8c4413ef05878fa38
MD5 5ae50a96d1dc641e8bc4137ab28a98ce
BLAKE2b-256 1c1784ff043590d5220d26c044f37cb85949f96c0c7aca1f8e3368d7a9f4bdb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a16ffb0a0e4a10c8bacf3e2104e2f2870caf09f5504208c747e10568ebc1ae10
MD5 dfb5a9ff5e48baab9c6785f1e834dd29
BLAKE2b-256 dc11a1d20dbba02f686dcb0521525c1f67448feb26830155636f61e7dc32dd12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67a4abb4b77d430329956d83394e5a6f9459e8e031d82d7bc574f251e16d409d
MD5 65c5564709b6ed072017331eb0906c43
BLAKE2b-256 200dfab2c0423e6d284f9eadd466033ecbfaee296c274b23aa8ac9cfa12f8bfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a11450447300acf8be02a9fb690fc295589c70249fe677074f5aa8c9100915b
MD5 58094c3b071a7577c5bd3317cb56eb71
BLAKE2b-256 dacdc7365a1528c7580ae0f8e300b2e9de0b0bd483b1294fceeb2accb6773fbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3793dd4a6fc9e9189b0ab4ad16d20765c4c02d41a2599a7684b086455279e90c
MD5 895f6bb2f45b5dafe526009cde4da01e
BLAKE2b-256 175f602e48b90944a20b2cfddb1fcda3789102cd8fb1fc17eb37557c63131424

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4b0998fdf78234bd1a041bdefb14af562cce23975e4b5d032e756986e6958732
MD5 269ff9fe08e92887fd4e6779a4c33904
BLAKE2b-256 8ad22a22e67f1362eaed688b0f2022a345c2ea5753f635eacf91b8ccb0a0825f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 011d43d86b5d64deb79e03817ab2e431aa1128392653fc22b755336533d33117
MD5 e2c9303a1c81835b2c8861add36bdf70
BLAKE2b-256 9abe3db62307feaf40c0cba54ac0eb03dc3891cff45dfc699775ba5b20fc142a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c0ff9832dca3b7ae7f6e77552810332f64c46917f79bd4ae889defe82f4ace9b
MD5 b9dc4332fa0696d06db3c8abd5ade137
BLAKE2b-256 3d9e29f3799a36f15ccb840a0ebb9785b7d70e9d3bac4e9c1ae92a479ca068ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62442bf6e52af389c5c1d361e6f23df4fa6ba1b67aa446983ccf8bf4c4e9e4c8
MD5 1e92ae896825e494850936f3559f3820
BLAKE2b-256 612a6d6eeb943f6c5c2ad54d6766b0e7e8735c0954a03a4aaa34abb6d1fd4434

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ea9f5d5f19b6b90084cf11bc846a8552fe7b6f19b2ed0f75ee5a1e7c5f465457
MD5 d60a3b019fb6cf5e18374e031af7d6cd
BLAKE2b-256 b43e8da1044c064cdcd9f25ce6bbf54e53cce94e87dd42077e9ccbeae02453df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb02336db78cc8b41414685f5a64329bd947a7c97781c1a6daf67979b77d0205
MD5 e3c148f67c684fcc7586d8b12df77525
BLAKE2b-256 bf919bf8d4e1cbf1a212677ed91cf430c8ef38c83efc8c16b49acde2476d262b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c7e3ac25a163806112521273e5776a3e38ad4949952cb3c332cc6ff6c703f024
MD5 50a630c05ac9bc80d789ee009625b7df
BLAKE2b-256 88466f879e3b4dfb7bd84c5b7cd07c8b128597e3a7af080d6d553e46cb98d561

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.17-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a90a2b211cf169d9012962b022e35ce400d1910664a5f03c90d24796e605899a
MD5 9f398ab48248706fe060bb448e30e142
BLAKE2b-256 e90066d1afd92061d968747db4018f4f19f01220bcf60e79ec1255766169e2f5

See more details on using hashes here.

Provenance

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