Skip to main content

MLPerf Inference LoadGen python bindings

Project description

Overview {#mainpage}

Introduction

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

Integration Example and Flow

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

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

Useful Links

Scope of the LoadGen's Responsibilities

In Scope

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

Out of Scope

The LoadGen is:

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

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

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

Submission Considerations

Upstream all local modifications

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

Choose your TestSettings carefully!

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

Responsibilities of a LoadGen User

Implement the Interfaces

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

Assess Accuracy

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

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

LoadGen over the Network

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

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

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

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

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

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

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

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

QDL details

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

QDL Query issue and response over the network

The QDL gets the queries from the LoadGen through

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

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

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

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

QDL Additional Methods

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

const std::string& Name();

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

void FlushQueries();

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

Example

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

Project details


Download files

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

Source Distribution

mlcommons_loadgen-5.0.14.tar.gz (78.7 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.14-cp313-cp313-win_amd64.whl (299.6 kB view details)

Uploaded CPython 3.13Windows x86-64

mlcommons_loadgen-5.0.14-cp313-cp313-win32.whl (277.7 kB view details)

Uploaded CPython 3.13Windows x86

mlcommons_loadgen-5.0.14-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.14-cp313-cp313-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.14-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (517.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.14-cp313-cp313-macosx_11_0_arm64.whl (465.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mlcommons_loadgen-5.0.14-cp313-cp313-macosx_10_13_x86_64.whl (479.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

mlcommons_loadgen-5.0.14-cp312-cp312-win_amd64.whl (299.6 kB view details)

Uploaded CPython 3.12Windows x86-64

mlcommons_loadgen-5.0.14-cp312-cp312-win32.whl (277.7 kB view details)

Uploaded CPython 3.12Windows x86

mlcommons_loadgen-5.0.14-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.14-cp312-cp312-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.14-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (517.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.14-cp312-cp312-macosx_11_0_arm64.whl (465.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mlcommons_loadgen-5.0.14-cp312-cp312-macosx_10_13_x86_64.whl (479.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

mlcommons_loadgen-5.0.14-cp311-cp311-win_amd64.whl (300.1 kB view details)

Uploaded CPython 3.11Windows x86-64

mlcommons_loadgen-5.0.14-cp311-cp311-win32.whl (279.2 kB view details)

Uploaded CPython 3.11Windows x86

mlcommons_loadgen-5.0.14-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.14-cp311-cp311-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.14-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (517.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

mlcommons_loadgen-5.0.14-cp311-cp311-macosx_10_9_x86_64.whl (475.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mlcommons_loadgen-5.0.14-cp310-cp310-win_amd64.whl (299.6 kB view details)

Uploaded CPython 3.10Windows x86-64

mlcommons_loadgen-5.0.14-cp310-cp310-win32.whl (278.6 kB view details)

Uploaded CPython 3.10Windows x86

mlcommons_loadgen-5.0.14-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.14-cp310-cp310-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.14-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (516.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.14-cp310-cp310-macosx_11_0_arm64.whl (462.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mlcommons_loadgen-5.0.14-cp310-cp310-macosx_10_9_x86_64.whl (474.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mlcommons_loadgen-5.0.14-cp39-cp39-win_amd64.whl (293.3 kB view details)

Uploaded CPython 3.9Windows x86-64

mlcommons_loadgen-5.0.14-cp39-cp39-win32.whl (278.6 kB view details)

Uploaded CPython 3.9Windows x86

mlcommons_loadgen-5.0.14-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.14-cp39-cp39-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.14-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (516.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.14-cp39-cp39-macosx_11_0_arm64.whl (462.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mlcommons_loadgen-5.0.14-cp39-cp39-macosx_10_9_x86_64.whl (474.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

mlcommons_loadgen-5.0.14-cp38-cp38-win_amd64.whl (299.5 kB view details)

Uploaded CPython 3.8Windows x86-64

mlcommons_loadgen-5.0.14-cp38-cp38-win32.whl (278.6 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.14-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.14-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (515.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.14-cp38-cp38-macosx_11_0_arm64.whl (462.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

mlcommons_loadgen-5.0.14-cp38-cp38-macosx_10_9_x86_64.whl (474.2 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

mlcommons_loadgen-5.0.14-cp37-cp37m-win_amd64.whl (299.3 kB view details)

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

mlcommons_loadgen-5.0.14-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.14-cp37-cp37m-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.14-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (518.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.14-cp37-cp37m-macosx_10_9_x86_64.whl (471.4 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for mlcommons_loadgen-5.0.14.tar.gz
Algorithm Hash digest
SHA256 95594ac6cf78254bc80806873ad5e3b9d8662953b5f38c7209631a00a1ea8d85
MD5 fb24e795ad20a5b35b2470535eae55b6
BLAKE2b-256 cae10137af80e0bcd972ded68a971ec87fd971094cbee6e038b0d1c0a88d7823

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 295e08ca24299ad9d40487b7eb1199b424b92eda004f8f8d0b6b246c57840a0e
MD5 0f154d3b53a1d4a144ff0dd3a67f23f8
BLAKE2b-256 b25e41388863fdde89eb0e0a6af7b3756857f1d405a8d889ec91e62d3a9b82bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 00d1a9e70c2e26064beccc964de6931b1330500ef98b4935c437cf8211b76781
MD5 4f1152b9b7a875d227f46660b19d2a5c
BLAKE2b-256 0f31446fd426b7203837e776adc4986381b5806952e4f606a74e16a27e91d609

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f3b784d1b44c765c57a4f2f8ac4c8d9b98549226f71e9e20d192f7d9c71014f
MD5 726ed4c602bd0d9232097becb3f2bf23
BLAKE2b-256 c68b87a8f4eddfe13cd8f69ea0d771e54b38334c0a53e3ef4ce10f873d0c18d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2e13ce5f346cceff9f192e79658f7855f99e6cdaf707ae6cb8a795ba243a004e
MD5 47e539b7f6efb280059ffe8a0ee9868d
BLAKE2b-256 334db6212db47ff9f6427de5c3af7e1d1202e28a4e7c4a8a57b5ba05a9103d7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6c01e2db5dd002192d3bf90a684334c55327411b7b77abfe5ba0bed87edb13a
MD5 c0ee3a3869df74560dc939f43fff8739
BLAKE2b-256 a9709e9a3ce5801710abb0579ff7648fdd054f2461b6d190e25aa872dc64f50a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 04542c922de2edfb2529600f5c7557397aceb273ec1a729da825620956736c5a
MD5 6d199178bccd812e3aa78807cdbf136c
BLAKE2b-256 f33679ed98b3decf06d0ea72e07bc7c4f026edafb354f450b1dcd34d4a79f36e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77a4164bda159c472f13e01488dcf76d3f005cf30f6e58a237353e61910420be
MD5 578c7740c968462b1494a22da1c59b5f
BLAKE2b-256 283def82674063ef6cefa3ffd8c73b585eda03132ecf1dcfd3073ff3be97f2b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c7c46a1391e207aa41142136385a6dcbb5ad66ef12bc25b91030f37097327a14
MD5 574013c52a1a3ed6dac11ae1058a303e
BLAKE2b-256 98d606e29745bfdfb3485d0b30e3693fa9d440a8144425e7fb32ee7dfa43127b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 549af1f093ef617cc7884ae96ba61efd0e76783d3ae2325e4c1f1d0f10d182d2
MD5 8eefbce07532fb2da04a471821f0b8b3
BLAKE2b-256 8374e1088463c1ffcba322c2b2d886818811d6316e3f5eb2cf1547160e606c8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 33e221555d583905f89ff89b275707ec24f89fecc89cc86d2769b8244dc974cc
MD5 9261dddbdd0f70ca74164d505003d9e5
BLAKE2b-256 990b982bf4b1f8bf3a02939cc4b673b32897fd8813f3eb4e038f522a78dbf8eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4977ed3fab4e174a3d853c3dae70646f788f816a61b080abecd395bc74814e97
MD5 2a17707bf5398394381fe22694c84b1a
BLAKE2b-256 5c7300f12cf67402fe48dd0e8d710880caf5af1c861bfb2413a96668e9830674

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f592c41895058202e7167dddec357fdb23a14426b2a011db43d7e6ec56d6c485
MD5 d64a5d9da74916b756a6b0de43848e88
BLAKE2b-256 b3ae0c361205ed100a15406c57a1d40f9f821563bd3069939b2e405cd0be1778

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43d4d43287f4953a5eb0634754d8b99391c27de05bcf7dfe92471d8b922d9054
MD5 7b18ca8dc545245465d2b9bd0bd13591
BLAKE2b-256 d10b2505422839770cfae70f56d234970d3bf018324bec46f5a07292ac09f76e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 248082ee1fda6b962e88458bc24b239ce760726504951282d868ea471d221e54
MD5 96bdf2a25d95c9db0c48a8b4444fc8e0
BLAKE2b-256 8b5fb09e523c231856e53dd4d051895c6793a4af57051cf50d83d50fe95da167

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdb5c9392076e638f9f106d38f983662e572c36055acf7fe5e3773960d1a52db
MD5 8f4ab6539c3e551aa73dbef27b20a36c
BLAKE2b-256 9523b7ea1d4e6e01c36c02f4777a2dfe15d4d438b016dca0bf69a6764fabf423

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9faf8ed60248d86c00f84bc8a062916dece0ea8dd0fd616546765232e76bf47a
MD5 153b37fd736603060b9a528633159db7
BLAKE2b-256 57087a4cae9915fde89ebbaa66213e6980154fe8f7e93523a483639994c46608

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 61969b3367d5de933c13b548537f9bc45f42813f2c6e2dc40f55f70c5bd54470
MD5 b368f98b90e56e2c765d29ab9a40986f
BLAKE2b-256 d7e7ee7bc532a34323bb280127fb4c6bcde92d12deefcf2837d1abd8d4ce5caa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d616d926e1ed6cf936696c1490c8bfe74f285dfd490be2c0110345680c2c0b7d
MD5 24aa3f9a188ff3623dfdd12861a4f0a8
BLAKE2b-256 5ed8248d55872c3e44ba0c681808ae28cdbd551c4dbd0549347ed6c9ba92cb04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4730b81980939e5a6d9127dfa5f5288372fffc3b2edfe34c01b2dfef85402d4c
MD5 83a740875c36102bc9e3f8c7ace579c5
BLAKE2b-256 3ed845a16ec966d1da178c944797ad98efbd1a792aba95293300e030b3be8f96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5d79a790faf698857d6ac7bbb6be2ebadf97173cefe837ac95668b4d3acb29bc
MD5 be54ea12faac405769d70fadc27bbb3d
BLAKE2b-256 c60b49ae52876991d11272e89c050837a1d7f122b17792af421aaa36a9198041

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26a9c15fc8e6d6b0627aabc47d7e0b65fd5e5e05f77a0efcbc00fc3700feb005
MD5 d22a9b1f19acfdd2ce66bd7ac10faacd
BLAKE2b-256 988defab43ea55333884ab7c34b24a468951bc9d901aa3077968c63385548d0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e966e35fffe51f59fbba9bbe42a990d0bb4e6de33f046ded0e8dbd8766fe4696
MD5 4b48f004e1043f6a48ba0365ab6166d3
BLAKE2b-256 64a09657b1c12406f707c30d4a1d9024aeaadf1d851d2b46162620769f7f4713

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dde99a06e81a19b3932e3cf78d72a877a9f218cb6b21361699cfb56c6f18043b
MD5 30bc766bdc121f13c12ce4c78fc1b77a
BLAKE2b-256 8e7418cd2ca8779f637583e26b6de494fd3a54e2752dbca872c4280875691ddc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 49235984e39bd49bc93383c5fa94ba112b9ee5b3e4b2808b2f9da38a88a80c7f
MD5 2127057a07c8275be6241ed7282809c7
BLAKE2b-256 0713a41c61405d9e8b5376491914ddeff5acd1bd617e6747f44b8fcf6cb0f6c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ac6aef5368add192167ac733285dba113977a36045c171f2a6f5c5e82bc39778
MD5 b2d3c951b992dc080894a716fc59587b
BLAKE2b-256 e04f6c7e5d5007eefd3833262063c81b25ea85a4a267c5f247384b7421237c61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c271e9718cb8f36fbc49f3294349756d6145e8934914156598f5e27ef6aec607
MD5 f5fa0b83386b2861f67d3b889b2a6842
BLAKE2b-256 4685eb3ae78917bf6b0ad7df13862fad4b59d842a8d9d933e6589668de45cc7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0a22dec0ae1765c26e0f0cdf1176f713e4eb446dcd41102a4337684c45d76d3
MD5 582937bd1adad2902606731bbe962066
BLAKE2b-256 9ddba487ebbb02a94634bd36ed405acdb13e3fb2bf1166c2871547ad0efbd6d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 125adf82a80065dc0c125ade5445c46f0add64286e14fe36f83872abd6907c68
MD5 8b05aa94cfd64972312a3d9660c0acbe
BLAKE2b-256 0de16e314007379f766eff855647b266f9ef966c7d98427601016bebfe3d640d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7f81e072eba405a4733c7371e94be83cb11532c822afa7f73e4b881d2ac44d7
MD5 afb72971128daaf2fa6690ff09173dc3
BLAKE2b-256 994bc9bef9ca56c4980100c86341eec9b03c597348849ee9846d3461f3062a3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 00c210643a00e05c4a84d56872fb1aed0a3a875fd9d1e52860d99a7ca79baeef
MD5 63430b499af1074c3c78c9318d4072e8
BLAKE2b-256 cca774e61a4e443d2d1c488a6e98ebed878bc7e7b1c41add1b94e10b452f9794

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b39e7952a9f21bb971d8eee62976675d7b596b6996992014f289430f1f87351
MD5 549bd28c770344cbed8861253d7d3879
BLAKE2b-256 b61fcc71ba94a55665af7d230f27a891712aa6e7be65b69a1e492e7335dc7b0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5657659fac0da8c1f6fef8a23b661b5ff2c704e5df1670b039e6e1cd6a2fef2c
MD5 30573382d3bf2094e8bd8939882ca62c
BLAKE2b-256 abd4534c01e5977867310cd5f1eb97365620a882e8096274bfec23a2749cefb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 774aea0a3ba955e2785bab1a3e624db231dd29051f9db033c1e1b8ebfa202a61
MD5 9ee0068cc9f081b1fa3c8b31f13922a9
BLAKE2b-256 33d6b996a17d24dddf7a9314851dab860ebaff3e99476ceede12b16170414b46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ce44cb1e0f32abb651752baefab0f36f21cc75109a040f87548390eb458dcee3
MD5 c7b81f8670055f02b46615d22451ea79
BLAKE2b-256 68249c2f9ee9b96d4d21c5ab301cdb94c824dabc38155e02d513ee39196dd34b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b30e0e02cd16f06117b3795496238f0e82c26b1a226671fd10c6fcb5029f9063
MD5 c49d0d1cd6b1147fff66f3e43dccf358
BLAKE2b-256 41fc7ae8f9ba3d530e2492d77337c14316214939f1a56156f7d4d92e530ba265

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5fe5d0459bcfb9fe47217e330f1f323ca865dcb72eb2d3922ad11905c91f3248
MD5 c2f33994db1d81d362dd019591ddf014
BLAKE2b-256 94cd6321ef89166ac93a997c90918018cae733753168128c7c0a69b6adce3e27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eda1e2391b7e00695f5ac2bfa69229600c650707a8cc4055283449305b523a09
MD5 3d44bbf88dc282004688d731ee9d70f6
BLAKE2b-256 7e02500fe5117eb7c8816e378d5697b158e5db1349f4f57d03f5726f5b8f5834

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6d106040484c084c87d3e0dbf5b16ef5c2d0d136a5ddcecad17ac9965485c984
MD5 311b52bee27b5e9295d87693d644bb89
BLAKE2b-256 929eb9d02158c88e5a70c38e6ae41cb7bdc4e639f47b6a8538936bd260b0489a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4aaa98564e56e98045ab8002ac59c9f8efec81108977179febb25d3835291da
MD5 f88232484960734885f2149b3bd66545
BLAKE2b-256 086bddb2245540a1d749b129beed3385979cd6ffbb28b4701e4e48757d5e7fdf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c27e86f76fb17431da40bfdf12479169f6a17aa30961e08e91a1a11995ccfa6b
MD5 1e5d146db01532216cda05eb7ef45082
BLAKE2b-256 898da6b73d410c9674700e8eb883ba03ce47cb31c67eabd62f145d9c5b989147

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c58170815b47346476e07748b2156e0a6cdee0f1e8bb4ba59422d5a40f83c932
MD5 4047548c3003500dd9e5175a094fc828
BLAKE2b-256 37956b5b4740c062ba46cab738d3b1df05d881f9e5c05e6568c61982b8c86b4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b1ec39f9cd16f03c09fd217b25eb20000db3825c95d763f2064bd027436d4341
MD5 739dd41123fda963a4fdbd6da2733a8d
BLAKE2b-256 3ff463e9f06d75cb2180ddca1d3a2965f93f4b5f69478967ae68edaa5cf691c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed845374d6945c34078b47dfd2f8e49742a5979d9f2297e8cf8d5c1fe6c3b91b
MD5 e6cf25807bc1e819bc44e4b8eac6f858
BLAKE2b-256 99d4d3f11be659c69eb9a963a4fefb8c225cf34832f57fd217a8a55fa1faeb78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 050b89fed6ea3bd07bb045978e969b1f6c0363c202c9733e24b18e8418cfe299
MD5 fba5f93aa0da847b52ee56a9e792d54f
BLAKE2b-256 1529d62a57f0caadca69d8ce79efeeb568e508b01579806e14f5bcee1a355a3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8def34cd1f5ce6baada4bd01090e2ed8cb1b1c6879d3e2b88be208226a26f8ac
MD5 693932e551b0fd7acd92f590f4c7ffaa
BLAKE2b-256 381afe262bc8db7268720c982957b28a616679b797025a4661f7c814f283744b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d31cef8d1990e8a7661a67295acb50a4b58efe1e315d9b7a2311a582d76c504c
MD5 1eff3606f24757b14fe1f5cd791889c0
BLAKE2b-256 c163f19a68b4b6c22e3c83a5d1070d7cf1ea5e7b8fb69f02e19faedf8565409c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f57b26d01d262dda8478e958919ac39ff813ad22d934fead3068a985a34044b1
MD5 4bd8a6b732ea8df23015964728694460
BLAKE2b-256 69d06534c6166e8478370282519d49ebdb2b0eed0a1beecb160b4774b3f93e33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ea0edf04a79ea4f72f354fb99b44628731194fa3614e3bb9b5760675009faa3d
MD5 fd536f106ba219da1891b198ec9e280d
BLAKE2b-256 659d075c43b2720afba0c5134008532e86fb846283c37a6c697bc9c14f5e85a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a4e877a6892ac60658f6aef875a7b5cf3df46cae012e7dd3c03391bb3a2d07ac
MD5 06193536cbf08e7e9ea606352e9e9a8f
BLAKE2b-256 498b6f808f386bbedfefb4d3da49d59f937e75829b44727e584eaa6aaae898de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2976bfb4670780f40c1f19c8a300e98a1622d3209b1389af7cd148ca327c7d70
MD5 bce5bf5c3fcc7e85ab9cf6e5feb485cf
BLAKE2b-256 3f3a01162de8e85293aeb55a56a8a119ce90f36bb8e0cff95495267f2f48e767

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a95e95821fe173d04deec5b6287b1b486cb0b8e6a1d6d5d13ce04b68860640b4
MD5 99584a191b57fa9d5668627bd5b9c4ec
BLAKE2b-256 1a2b5db35e6c93fdde2bfcdb0fd15f664aa6b55a16819af4ef9170dde3a7adff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 48f6e03c70ac74628b2c24b11ead73d58629611db2607c9ac0f84dccd7617a66
MD5 6243783c2c21aedfa9d86ce4612032f6
BLAKE2b-256 62d1c22b30a82579dde427d2b64567cc6eb19c1421c7fb2022a84cb447c9a799

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4bf2f7afde3c19e286374536bbc4344369cb39bbc584958bf1941d37b85b9e2
MD5 8fbedf0611fcb9a0d2d762e4581be71e
BLAKE2b-256 6fa0aabd5bf943eba9be816f9f658468ccfb6274a8884f329d25bf2e728479c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 09f61596f372a694908ba4eb16091fb14cabbf59598fac418924303a3bb3b841
MD5 aed48fd06052757feeb1af99d8274297
BLAKE2b-256 7930e91f5c4b8c58d5bca5921292542ab95a92c5e15c81f513437714ad2cc2a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.14-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 46f6323dfc1c797d7f993020a66a7998708692e257d59b35ec13f7bfe92ad7ea
MD5 fd4bc93d60fef6bdb9308be0cc66d6f9
BLAKE2b-256 e927d97a70692a346e5d1da0aad8ade145373fca68ef67a66ddf76759ac9a4cd

See more details on using hashes here.

Provenance

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