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.13.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.13-cp313-cp313-win_amd64.whl (299.6 kB view details)

Uploaded CPython 3.13Windows x86-64

mlcommons_loadgen-5.0.13-cp313-cp313-win32.whl (277.6 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.13-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.13-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (517.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.13-cp313-cp313-macosx_11_0_arm64.whl (465.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mlcommons_loadgen-5.0.13-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.13-cp312-cp312-win_amd64.whl (299.6 kB view details)

Uploaded CPython 3.12Windows x86-64

mlcommons_loadgen-5.0.13-cp312-cp312-win32.whl (277.6 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.13-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.13-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (517.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.13-cp312-cp312-macosx_11_0_arm64.whl (465.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mlcommons_loadgen-5.0.13-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.13-cp311-cp311-win_amd64.whl (300.0 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.13-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.13-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (517.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

mlcommons_loadgen-5.0.13-cp311-cp311-macosx_10_9_x86_64.whl (475.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mlcommons_loadgen-5.0.13-cp310-cp310-win_amd64.whl (299.5 kB view details)

Uploaded CPython 3.10Windows x86-64

mlcommons_loadgen-5.0.13-cp310-cp310-win32.whl (278.3 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.13-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.13-cp310-cp310-macosx_11_0_arm64.whl (462.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mlcommons_loadgen-5.0.13-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.13-cp39-cp39-win_amd64.whl (293.3 kB view details)

Uploaded CPython 3.9Windows x86-64

mlcommons_loadgen-5.0.13-cp39-cp39-win32.whl (278.7 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.13-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.13-cp39-cp39-macosx_11_0_arm64.whl (462.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mlcommons_loadgen-5.0.13-cp39-cp39-macosx_10_9_x86_64.whl (474.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.13-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.13-cp38-cp38-macosx_11_0_arm64.whl (461.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

mlcommons_loadgen-5.0.13-cp38-cp38-macosx_10_9_x86_64.whl (474.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.13-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (518.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.13-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.13.tar.gz.

File metadata

  • Download URL: mlcommons_loadgen-5.0.13.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.13.tar.gz
Algorithm Hash digest
SHA256 c58c0877d3d13908aa746f568063746120e7575dae0e05feadee627b712f6ea3
MD5 fec443a46dac5d7a52d7e3393a212753
BLAKE2b-256 6c8a0069ddea1e0705ee6428a487d02275fb1366097f7342992300325d5e1e2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1439c245d61dee2590cbfbee62a0a574a4932dcc69b40a4a5b8030a7e075060b
MD5 8c13b43e45777c9b0d08ee5759fbd32d
BLAKE2b-256 f1ed31af4385ed587e3264176dd4ef57ef773a58fb0bd49befdcc7176ad2654c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d18acbb2d17f70c7d2642e58544226bf67f182258f6402b69c791b868242956b
MD5 5af4a9f752d1f3b8e5b5003c53ce563c
BLAKE2b-256 2ff5223ca7c6e89a2d4c494da0167c62d79d22c613bf966edd49234de3e563a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 969397d639b54cdf1030be46f3b3101487e15d5dd3a997ef9fb7f179b2b240ce
MD5 e4ad140803ea245608e8f09c2f35258a
BLAKE2b-256 deda961db935cdf91b30d6cba3b30bc607f6222458b20554568162a061b0a170

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a94d0d913ab1796b85eb996f62c20851a7918ae7f9e4317407a0413d51d559e9
MD5 f924571e90867bb3d3428a8ed6f08102
BLAKE2b-256 b60471ef769fe9dfb032f914cc8c82b6a9e929bf63a3af811e595992636c7b9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 057d4caa7f66198c2d2d30a138122df4f15ee1513b7dfe0de0223374804df509
MD5 6232def39b561674d4f8c0d11725edf9
BLAKE2b-256 8bd124268903382aadb104bc198d2894b1bfcf05e271116f7cb579ac1e335180

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1d25ee05228c92cda89b9b4204ac752d151d43bac95de3a044b3701ce545c5ba
MD5 06f6b32a9e87a89b1c948742d6d0a52d
BLAKE2b-256 548ce2a605a75f62cff6bf53183ab94198961c3115cb2f4fc9007f09a5218641

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6caf521f5574c6c3ce8b8f864c9f431a1dfba158c85abac4fe8327a31b94fa9
MD5 6a15619611397051b2f1ae428c7e3947
BLAKE2b-256 51f50744847e348a39d36ac16a4034ed0be5158f363b2da7a9a4fbe48f7f66d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d5c2f6201faee5ff93266d1b6a0f38e69f8b3e487abb7c734cbf74fd6c5eec28
MD5 6dcb9408c08508611c111cc20806833c
BLAKE2b-256 820128f89399d101b3fda6fa9f03592ad1ccf4357002fbe47253bc1814ab5ced

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9261d7be5f06a9d58e205331906441a401da5ff74e951e575139885b44af816d
MD5 64603af5642420f9ef1eae40a678c52a
BLAKE2b-256 cbc2121e6885d7893044734c8d2e893f167c175ce2e8bfd428fcd15af71c2ecb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a505fdb73b1e8a056457874f2687f2848060f1541d369c35c693eeef6dc9ec82
MD5 8782ab9431f8d446a8d2c22e76924718
BLAKE2b-256 f2bbc37a192c9a91603bc1dc2a4c85a1fd3235cd92c8993b0cc10cd16377f394

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d935188a753df4bdd4606d232c236edf86a5b4407ef411dc7e8983bef23e60d8
MD5 f8f38cbbc57413c48c68a936a401d675
BLAKE2b-256 07aadb9b95dfeea86e58865a3e3d1eb9200f6c52dd7fda12148ef800daecba58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1c60478f4d022a7abf88d410835804cce360a0ea6e9b1ad815a3aa2515853aba
MD5 4b5551b26ff9989af7bcd2c66907cf1b
BLAKE2b-256 cc7cc081061b37cba9846c28c035f52b9845b68337bda990315e9e7821b3630e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ab6c8ad81d0f66fc46cddff9aa536274efaa222882a36c3c7146cf523697846
MD5 b3fab10ff893b973a4ca0ef1473663e3
BLAKE2b-256 b92be8d509357e06f480a1a96a878575b95539b909c53991de8f1a1f9df6eb09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7e985e1725d745af0691aaed344760b4018d9cf91657ac9d8b8795861ddb6e17
MD5 6a037cf152a4da39d5fe8946f7fd687b
BLAKE2b-256 9f07e03e2ace0fa292dddf6bc31a88d42a729ca45c5725303a12f67717d70959

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7449cce6c75de6f1d15a3fc300b457ad88e921a8e44c6cc37296c88d95c10b20
MD5 9a1db17d0847d7b018cbb4933fe74b9d
BLAKE2b-256 64a8606c4563d22220c944ab1f1a224ccd8837b530bed0aec6b19ecd793dc0fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6662ef449f9d376f9854acaa3d1e002f108a4c208d4f62186593d4cbe41b7274
MD5 8936a06a5b714ee34472f78111ca2b46
BLAKE2b-256 9efcb967294f6b0bccafb69f2d48a4b60597edd3c233376fa80b671573ac7a0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 11abcbde675769e46859911737ab82a62a544253f97791e847a426e0ab079830
MD5 cb108e60eecf32d84342eab473ac6c75
BLAKE2b-256 ce37f19252b5665255af976b98f7756230d93770d7e6505d183b3c2e1e307fd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1dae46e55571fd54a86ae904683b95d836f4d9cc04a9e7878afe457bf4aa4a7b
MD5 894fbf932ab2d2afec66cb473af175bb
BLAKE2b-256 407c4633394fb802f5fb87fffe162e73c9eb02f1d1292ad6caf5992e6eb7958e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ab6f382cf645311812ad639c07641a75d4b50ad4fe524df53895a96f325bee8
MD5 858ec3b2a999cc9f68db753bd5999cf0
BLAKE2b-256 616f9b7b5d61a4c198323af741a7f0612e952cf66a1a0cf158702d0d5e6c8e37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aa57271ed2d45c8ebc0bb2216eb231ee13ae2f33df9af961eafaeb25b7c3469e
MD5 0dea69cb0e43cb36495265062c9ec3e6
BLAKE2b-256 b2fdcb2dc0b405a73c3d25d4914b1b708f4f9635f30971cd5e827e6ab68b4e1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dce5da7e9df664bd2891ba5913d181e449625c2f3dd2affaedae5fa58b82e702
MD5 faa7a953bf2fddc1c6327639749d6866
BLAKE2b-256 750b80016413d7fee3820a99fb2cf9f941a419c12b31d8e7f20190f8e6dcb690

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d96fb32159a45b251abc0eebef00086e1a19e1a26368fdba14c79ecba04137c3
MD5 78fd7fdf0f4f6e086946aea168192e95
BLAKE2b-256 8eeefeb1282a1fb56ce679fea04dd2453ac102733b65c8cd9724396c34a3e5f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6d8eeb03566993aa24f3ec15b08fe204d427e68a3899db110cbdff422fb5626
MD5 ac6cbac0679feda55ffda01d26331386
BLAKE2b-256 b0cfd482259448817fdee6f810566163ae07349355aa68a80935d10df67aef51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a138e28b2c612d5190f71304591d82a3e9572c72bf55404c9d96bc3bf1b7ee3b
MD5 0d80eb1575a086fec9c9d17b0fc3022c
BLAKE2b-256 42ab20744c3431baf7c38110a7bbf9bd3873d7b5f57880eeac675bb1215a1f2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7c739328398f2e9849803904eccc3d7e79d9faeb0e859f6e5597bd0065bcb1ae
MD5 d4de26835d7501160a98bbe2c3d05e23
BLAKE2b-256 c437c2b9c2141aed5b8de9fb798de823f65e508215dba817e10ed80ca9201f00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a8a003c4ab3018598a8b3b57ff85b244de4ba87eb5d76dc1c472314c60aa2098
MD5 71db2ca1c75e6b6d45a28836bd38f2f5
BLAKE2b-256 fb344a8be36e6d34edc8a877d2fae25df0c014fc876e71f1f85e7160676352c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9ad10072c7d5fcd1618f09035efc96b05338431acbad864dffe3c5324005d54
MD5 553fb022ad4c0db7170c77a9bdea40cf
BLAKE2b-256 b52c9471b9da62c912199b3cf91dd22107a41c973a24e61e953ac369d4110ae8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 27f0f5864ae8e5694818570cc9728a488f16b20ecfc1bf3b08061f6f4663dcef
MD5 6eac989d6e1575640d829d04ea562276
BLAKE2b-256 43cce6102df96bba6a0e1076a3fe13f2b5b86e747ac023e4d97abf0ebcfff757

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a9ad725980fb0fe0c34b4d53c33bae902a78eabd4bfc5d6d2ae9507ec851657
MD5 70885cbabc95797af9c83b8a3caf70f8
BLAKE2b-256 974bf79db0bce66c5dbb339a35b6f08c6218808dad95a2500ee9030b73926d58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7623f052b675faa8015f24a9e9e3ea0c77c91f9102f41f499b60cf91d6ec25c9
MD5 fbf52ad1a0845bd8f66a5aac9b0ea933
BLAKE2b-256 259e95e79b798a6e16d10e6e962028d2110653f4f94764771333909434ef182b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 feeadb97dd9a1f7ecc261773ea2e187358c877e4aa31533f11807d657e89461b
MD5 9016d19306d34b72a8daccf58605c031
BLAKE2b-256 4b9e309d82ffb7b88198ca0edf0d76244c6fdd57a5bc449a5ae633b1d4c93eda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 61940031dafaaa3814351f86cffca2ad4a02b3a92d6fdafc4dc7e35fb0736040
MD5 018b1a7a56e1d322f5ab61b9a9f65044
BLAKE2b-256 066497b69be9b935de77b663b4fd2151d7dd8cb04bf0c67b6e79d98dee632203

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b052550dee39780bf9bebbc967cbe7413bf21a855f3846423715456dfe137560
MD5 18d377e94d051b65d2f7cbfd5520736c
BLAKE2b-256 2d9cccca507fdec629893fd626e79522038f357895ddf8cdbbda166cba925f33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5b31cfd0f585775a5dfdb77b528c8529eee4fd4341dd07d20474c9e058611c34
MD5 0d2e35979ce42446df1132548ca6233f
BLAKE2b-256 d1d8328377c2fddcba53ba7ecd298d34b02c8ae06f91725ae62f29b8e9f5c28e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c31f54c45ea68b65b9937f8140aaa151664dae05fb368d9f6ab503da4bf26fdf
MD5 f5f45703058552522bb8ed27ae313369
BLAKE2b-256 f7f915b67b2a1df27ef1f227d7b1b8b299fd025e63d4676fef9bf78ad6ecee0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6a22c005a21da253e7d7e4b4043b2bf2c852ecab3d10782ec8078a0e84bb758a
MD5 b9b2d045eea966cef465f728589262ab
BLAKE2b-256 c74a872397a7864fdba1f3be5d60f874004e01156961f44c4b6758110345b5f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 022ff2de0cb21e73e871b52c2f6f6590e01f30f2c7ac204aa96dc6a78dcc5f7f
MD5 87e0ce9807ef4e262356f63d8c7fc1ab
BLAKE2b-256 a1a23dcb7447a70ad3d80a5ad25054837d95f6183d26a7088aa38a21affd059d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e275dd6243dd241c225c7895ce91874f6b553ae79fe974fb1598417d6c56acd
MD5 3d2ecb44ea5be36e3f54c3690d5129cf
BLAKE2b-256 069404e768e31761f063bde51626a1dafcd85aa8edb64793c7ba20dfd72eeedc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98df8656ccb1a07f81b703ac38368b0ed2edddfd9a255568594ac0da536d6398
MD5 c963ab0bc624cb3f9e045e1b0f6f525b
BLAKE2b-256 f4fd11c43aed898a5930246b8fcd2aafed00f676279f06c0f1236429823724c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5fa8e76d604c4424d2a0259c0cbc1ad95aefbe4d7996e5fdf35ec16a99465043
MD5 ab74fa1dbec6a6c867f81a20a940eb3c
BLAKE2b-256 e85ae7ad0170081c0221fc16ec32deb2eba3261e8efc213dedc1abe582df91f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8804b95f595d7c1b6015c061516be955fa942e7122ab47897f9e6174438b5659
MD5 3dd6e3a4bb4c641ca55a21edbe42b925
BLAKE2b-256 890a102f5de5d6f14734ea057807a0dae6c133f12c8062064834c425eb4dfd10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a90ba793fb7766bf229d09102922eb43ea9a501d16981278938c369ffa9a8a6f
MD5 920c3c3cd0212140c994e95fe69db028
BLAKE2b-256 ca4a5ea1a7bfdeac3cfb126623a21a6f7a98351000d48bb3139fd5077490d709

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23e317f72bcbc3c0932fa369e3b5dd781fb12506fac5cd9d6b153b3decbecd6b
MD5 4a5acf2c0d90ece9b147efef34bd0bd5
BLAKE2b-256 018dd42d992b511d36777b6a106984389a18d1b7e67945ad6e90683a1f6be815

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8fe7078a54ee2248f511c182f84f5859662d2989f7158fb5897cc15c2ec7e436
MD5 05aa15103e5286c10295055602043af4
BLAKE2b-256 b3c83e6e325a0742045e5b31f04be94b5900880a5c4d2024b18c6e82a4ac6e2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78a22d4c882e91518191b88f567ac7290b22532283806ac384ef93f8fd2cdef7
MD5 975621768b7f8a158940a7bcb2c54bb0
BLAKE2b-256 bb0e11e8c20d45c07142cef16e9cb0e3308965b5e85561e48367aef47d1518a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 458515a94fea24eeec9c9a193bad35081569e60aa8658f26134d0cccc5f59f1b
MD5 9a447555cbab5111b39df61a45fb5053
BLAKE2b-256 e24e4d84b867712b2be3b8f414116f14252ae7b05c657d7681b58ac03ebc1fbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 130e35f7f5e3dec40040a284bf47d2d3277bc846574adf79050aa17685bfb038
MD5 442214cd88b04f7839d627b9d3635926
BLAKE2b-256 e75f71e6b30d377311e075bc4c4d582f9459329848bec3ce70806c964c62b8a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 133abe3c07a57e33483640b918eb953a39af90e7792c64053c7bf2bd1f73ebc2
MD5 422a8d1d60fd5d92b806810c1c48cdbf
BLAKE2b-256 b627d8a99a48b182bf84a1cbcb63188ea84cc80a245f65d916a0abeec710f0ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f1302b10eafdb39fcc419805c4c708035f1c3faba1f8d489b44c6ca6d11ade0c
MD5 b6f315033f4260729ce1c629ac986591
BLAKE2b-256 b7d1fa2094b90308ba4f0fb9026d747fb5a3459e0f79301c0d8957e73efe5cdf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 54479c7c65c7786eabd41796b1ac9350cc108ec763f2eb51418eda349150522f
MD5 e54e5e0e10925ec93b236de46df1a4aa
BLAKE2b-256 f3c6d3255c98e6bfbf4bbde4c256d4a5728f8e9fee2dfad905a25a831c944938

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ad20a7940af6d2889ca641dcf9688a8306fbbbdc193cea233e73dbc9dbb18e5
MD5 f2a256c984ccd4bb8c507219fe1d473b
BLAKE2b-256 c48a8cac62b2b1b37b633201a5339a3ee04f31cffd56541edad151d3d8f5ba4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d96355da623a2aa33b9c0c690b4cac76562fa806a96752ee59a3ddacb211b5c7
MD5 0264f73a80fe116a00637c1d5ee25e49
BLAKE2b-256 acee7589217836d8db93dd9b057f41b440abe4c5c3193328fc2dd36efb552ea5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7080c0b8e95e4613fc2c0e26c17bbd95f40b08338675f2c73074cdab05d705f6
MD5 b2477d37d2ff1ef634ff361277c414a0
BLAKE2b-256 132ebb0268ef80e35b8d5996b965389eb92c462362e4b41979d9718e614eab91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a7f30198ba6ec4ec2373b8917eaf59e9d7b7790011e24fe6e7146d9e53d4e76c
MD5 19ec6651134329cca949d7962f58e35e
BLAKE2b-256 d81cf652bc35bd79c97f59de4e741916f95a5df8516a5d366fc9cf40808ca3d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.13-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 69c222fc9486fe0cd97556b7e6c9e1ee553345814a420ae3f3ae52d91af93d38
MD5 88b5c5f44361c21c4993ccf0f1ce53be
BLAKE2b-256 8462ea2d729f9f11d438615ed7aa9d030ccf4fc1da73f3c7eb7fca1d5e45fb66

See more details on using hashes here.

Provenance

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