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.5.tar.gz (78.4 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.5-cp313-cp313-win_amd64.whl (299.4 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (518.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

mlcommons_loadgen-5.0.5-cp313-cp313-macosx_10_13_x86_64.whl (480.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (518.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

mlcommons_loadgen-5.0.5-cp312-cp312-macosx_10_13_x86_64.whl (480.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

mlcommons_loadgen-5.0.5-cp311-cp311-win32.whl (279.6 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (518.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

mlcommons_loadgen-5.0.5-cp311-cp311-macosx_10_9_x86_64.whl (476.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mlcommons_loadgen-5.0.5-cp310-cp310-win_amd64.whl (299.3 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.5-cp310-cp310-macosx_11_0_arm64.whl (461.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mlcommons_loadgen-5.0.5-cp310-cp310-macosx_10_9_x86_64.whl (474.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (517.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.5-cp39-cp39-macosx_11_0_arm64.whl (461.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mlcommons_loadgen-5.0.5-cp39-cp39-macosx_10_9_x86_64.whl (474.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (516.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8macOS 11.0+ ARM64

mlcommons_loadgen-5.0.5-cp38-cp38-macosx_10_9_x86_64.whl (474.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

mlcommons_loadgen-5.0.5-cp37-cp37m-win32.whl (280.1 kB view details)

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.5-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.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (519.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.5-cp37-cp37m-macosx_10_9_x86_64.whl (471.6 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for mlcommons_loadgen-5.0.5.tar.gz
Algorithm Hash digest
SHA256 f6920307bc5f52fabee578be995c19443de33a4485907e34e1273b642c644ad7
MD5 c57839aff449b3e77fb8a4cdd96047d5
BLAKE2b-256 0e53ca1118b7ff65c55d63d2db6784de95f8850da9d2520dde1cb2698b8ead37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f0fcbd9a66142ea77cbf4da2653d1af5cc3806d0a40a7aab2b0abdaec7e5081b
MD5 70ab226d303b1cf8e17e6ad05744099e
BLAKE2b-256 293c76c6eee7e313745ae48fa1c5080353adf97c1980dfd94349f163e7bfbd9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 867b9f5f88c87d34355c5fb0e866c689cfb3d7c43f9ebfb558aab2c8bc17d386
MD5 f45c4b2fbe4f9284db06d73f67a16189
BLAKE2b-256 f0ef039b5bffc5ae1148d45aa275694d4f0738e9ced0a1d7a7f55cf4cef3d74f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cfe68eae01ca739d8c073596f2dfbe3a524ba53c8180296b5e02ad8d94a9c1e5
MD5 4b04d1b5163d61b43a20d9b8a571c620
BLAKE2b-256 c974591616eb98287cccae7a7991c79ee709109db7ddbabbb545b0f7ec99bfe2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d829f2dfe27cb0f2a603d03af4a08a35b62149f68580edeb4ec1eb2f7651375
MD5 362d8241a5bb79113af148567aaeb084
BLAKE2b-256 b53adff087b7208e79867dcce550520778f2bed2ce668346dfc78c8db336210e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8abf794679a024a2916cfe58ff13b9165cc31b4468dca593d6bf0cc1e17a6a26
MD5 298d3af92a2d5ddfe30cd4505c3824eb
BLAKE2b-256 3f375294c1e737b89d801f27eb69f67c44895a052f1e678e814010e13d316173

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 79f88512fa7e12dbaf6c8bca945429ae0ca43efcfb511c94a911e4e267cedcfc
MD5 a40e0730ae501d9df370b3c22e713075
BLAKE2b-256 5abb8b35d6e9a21c8c7089416d59ecd0a434c000c6cc17ec63b9371de937a3ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd02bb5bf01999bad25a0f6bc94b34d7c9cc4b5ef29c5c8c6923fc68c936bb54
MD5 207647829f06475938581d34ca998ee7
BLAKE2b-256 fe5fd092a0d8a4522e04bbc0c2c09ad53f9d151361d7bd2ad1353979531c301a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a924ce289be8fd5c1cc23bf82808c9575364472657d0440599aff5b3e2a5244a
MD5 e21c413944ce81b4ef03098453c20fec
BLAKE2b-256 427f58aa9a6057a5343db733d530962043fa88e254c7338436c1c432b49cafc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0759f49f76cfffb637f6ecf6ca1e516a2f962a65cebfa938b8729731cf060f14
MD5 31de404cb7e015529bdb7e72399e9db6
BLAKE2b-256 ceae6c15f238182d279bae1fc84c17c54f05231dafe530c7ddf19416dab37462

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9ac30f20a7d5f4e13b941b744915f53873eb88d7204a186fc1c0c4e2614d2d2b
MD5 ca60f7f5bb876f99444ba6fe320a71a0
BLAKE2b-256 cb0296644710a4cc5c3d0e56d98a929da3f02680f4cc200bab62b5a281b402b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb218d4f75870dc468278b05c7fdc24d5048da0aaf2b52930773114082235af2
MD5 df6734e1a98cc3cb2c492eb63248f17a
BLAKE2b-256 f1b3e8a3331b38e9ee312cca5c97dd1e75dfc7f25a37c283b9ae87d304c9d95c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e138f3016cd9da8a9c485b3bd0b1acd3a532413248e724d4a1b9fda761cfc8ff
MD5 e82221b929e263d658bfdb09a1113cbf
BLAKE2b-256 3696463521d19591aed633e9d5004127d22bc2c7f4193f4a2763cfb291019d50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 668a30c5abe0cbaf5f107aa3767acefcb2fb8056a5b85daef3468b2bf7032f49
MD5 cbc7fbd9c27774e8ba4f4c358d65d788
BLAKE2b-256 d63bae94839667e2c3f4b06ceaf8abf123349b673ea1e335b99ae5b52ae88786

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6f8391ede5c957338532551cba0a1a894068bf85441706f94f273518dac9e4bc
MD5 c299bdc6bcb53151fb5e440e7da685e4
BLAKE2b-256 efbcc3421062168e9cd28869db60c8939f6777521fde29a086267f7588d01d4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4cce56a45503a0d98a1c39d9ddfe6b8fdeacefd4169b9ded29ba0e49c857c576
MD5 168c157324322a2e8e5593f450395d7e
BLAKE2b-256 d0385a5fcca721229a5ef7abb0f64a4c8eeb9598441d0f26767b4c80d363ea7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 811c01b0e28d6e74f8253ee88054c7af86917f0baac3e9f18047b86e7242ce69
MD5 9488889a81595fb2f6157babdd11cbf2
BLAKE2b-256 e9c3ecc3a19fa5ab88d6decc9e06d459272ca385e546eafd331ffff9830a9845

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bdb8cd7ba7838cca1b08fd6855ea5dcb2cf374d302401c5d30f442dbd98ab807
MD5 6f1b4c6fbdbc8782807fa3ff0ff309e1
BLAKE2b-256 a5acf446a4ebe8d3a732c5f4552bd76cd25a4f86422c6c95ba061dc3ae08fe3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e7d60a5b10221fe611472b5643a3c6ab7f8993f19aee9d7c40f8c376b0b3828b
MD5 82b3eec02f54ed6fa2d0664fa7d27a49
BLAKE2b-256 396044889b94cfabb9e352217674a711c3ddb8306ee870cf61a4084024f751e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebfad0e500dffef3af9ce52399e8dd86ddc539084c2a7abfb6e640c96dc3fb9e
MD5 a0336f00e9fdd72eeed8a45de2e2d31e
BLAKE2b-256 f7f503996f35f9ea7954e56f65a0024394941cedbc07df9155dc12db7cc9adb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1730176369e30de6a967a6166b7ce8c6f047bab25e5fd6e76e304c36bc05f9dd
MD5 c8eb54c6ac02bd6a07cef363df1a82e9
BLAKE2b-256 274008ed1a487d7815ccd386296fb33b8bf80dc4859591635a91350255b560bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e8ce3bdb9157ed9024c97fe36d71bce0ac57b2e4fca09881933757e5a440c8e
MD5 4aee30bea99874c8b8ee340c7bb13e5e
BLAKE2b-256 a3e52065a56a4dc8346393f7c3eba33ff93dfefd90ee17a20990c81dcbf6dcb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 50aedff7dddc2a957496995757e257da2c38c54fb4d3d7eb04d816ce0dae9c86
MD5 70cc6f333af43836c5b0f2ff9edd8006
BLAKE2b-256 62247fe4295bf8a519044f70be4261d979084ed16ea406d33e5c4af828572e5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7dec54725118cbceb3ca45a1db6b0cb72435d780c654856d190b11d0ff90ba43
MD5 013c897eb27150715a301261b67057f4
BLAKE2b-256 78e8f91c04efd8abadd3c3159e69e74a0a8410ac69d644c51252168ffcc72662

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f67878836ed8a6436105851172819398b7cb6e41874259a906aeca85a7c1aac1
MD5 7f5358c4920c032d29b6d888610318bb
BLAKE2b-256 0180a8b1341222df4794b850cda8f01baf0605317e1370ad6605a64f7752b7fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1180080c7490af9efc2ebabd91dd064a792ac5d7fd2634041124bfd7c40f3519
MD5 fe0d562735b003613e9998e70f2808b9
BLAKE2b-256 59969730a7f9c6b18460884571ec3b4417e03f89e13280b86289db528de6c669

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 97ff20739dd1ff45496d4e1c7471420fcab7722351bf41958ff2c44459ef0c6b
MD5 18d1cc7555af4602cbc1f772a75cd24c
BLAKE2b-256 4044f721685e59b93a871b6b2da90a6fe87c62a4f482083b38e9befd7138dad7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bcdca8c44b0164b5a65544fa59cd5fb4015fe244aec723a14394603a3453aae2
MD5 af83d8ab32c530ccd5a463108a2d9067
BLAKE2b-256 21cca589f8c0f4fbd2613469d93f1adb7b074d99474825e0c7a236d42075cc8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 92cd1f8ba47ab821b13c2b219f23b264e32ec61c840ad5c6517e99f914b0066a
MD5 f7127e04198c1911dabcbb0a1daf4ee9
BLAKE2b-256 c245fad66062a06e3a902736b5a87fb04f28ee2c63b624c81704cf5b24b31669

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b4d4bc5f6756463d18b3baa324a46d110f19b0434f71932da705dbf4680a7d1
MD5 c0bef8eb8d443f9202c58815f6de5454
BLAKE2b-256 61c09335be0aba57a5607d08a0f92d34969094df93c278f4aba5fc652481d626

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b37d8e738c6150a13f2ac323ec3978dda7b7c6ba6fbb50ea6580986632ed42ea
MD5 94808b6fd9236d2b46223316b2181e48
BLAKE2b-256 89a3ee3a39e6f95b6846569459479b0429ae37fce48a920a9615204150216ed4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efb1577fb0c22a4a98235566182a5dad18968b91cea45b2bee43f1fdbb04f436
MD5 0678715e2c740180a78e675ebf193943
BLAKE2b-256 c26ce64048b258b6a22d143ecb3a1ec482e3db28f9243b681de7efacc28ed86c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ca20303ad1dc0b12f2cb16fe711184ae423b26350ca1e20a3ffbbd9ad98a8333
MD5 327fe0706fed0604fa5113de5c7e7ab8
BLAKE2b-256 b34e616c7343630b8afdabd0b321540072a72e3d59b2804382c0c4e5d3bc24da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a7ce0e09d73cc57c662a90a03f940783162a8d57202b351d4de1aa0d5ec70f77
MD5 bdf16f55a077878f958ad9a0ccb20837
BLAKE2b-256 e3896422371cbd026e8ca717dea1026f5a899e06eb9df6bf2e9c4efcb317bc36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3f7235c743437392ff9f8e3cd1fb66ef4b87b642c3b49cc19be73132c0687880
MD5 e04960c400d5b35534a5ba11be3c347d
BLAKE2b-256 317a466c3dc166a28327d7090af42e30cb9cfa12792801ac73ef9896b422aabd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0416f54085abc6c824bf2549a058ec1d33e07fa75a71ccf821ccb9258e7d93ee
MD5 f0f2bc26514d92fc0f0bafb711fae2f7
BLAKE2b-256 d33719773d11a3f2c8825feab1b513457847e2ef35c4b37f87a0e4c08e2345c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b04a54db4931b85a5b7e2a8a18fded224c27310cfe078d6e57f67d5bbf48939f
MD5 663b4c8366207c8b7df839ae27b31468
BLAKE2b-256 d8ed9d21dcbaf2b886f6b8f1a90dd0d3a5ec852f0c5819fdde6f9db6be329f98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6a1d4c2a62d235b6c7f8c5d8141cab366f849a1f7e4747701f8a83072e86c48
MD5 773a132209f957720cacf759d797b8f5
BLAKE2b-256 8e5dfc12afb6e33be514247bc7d204d2d53c15c639c41e0e625e51e87e1a85a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8146324d2f300dc24322e12a3fe2d12c02d5ce3f6669f3f595a7318c4a1a11c2
MD5 0908e7e8ff2e597c3b5baf06bd50f8f3
BLAKE2b-256 e98b2cc231aa9de8deea85462ccebc9c00e804d4ee6c6bd13ca08046a88e9a1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad06bde463f94d435db4eaee1d62b0a46f781dc2cd7ca03e8d55dbff1d8c6b89
MD5 fe4a182c7ea8c2f19e724b8828fba94a
BLAKE2b-256 1064a779fd46d6b1bcde777211581b76fcc70874182ec5e8c6ae54aab3eee056

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4f8a9c531995d8dc4a189a0d56c202a2522ea22642e80eca0ba65cd48b57380e
MD5 20ceb0af3a309d39c0d8ca88f2f7754d
BLAKE2b-256 9b0a8914f8750cba51215c182a264d06c67a72fa2bc8fe63bc5261bfb6b894be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2221b71c61f50844fc546ef3f2dfdac5562a9c71502b87f7fbe18dc6cf439cf8
MD5 6929a778102d4683851cd095bfc1792a
BLAKE2b-256 3898e2ee7e38b761c0d9cfa1c8d43b84ecbb9b29b19632647dc08d442d338aea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 797902a7b0e6d97076599242387434382263c8c92c2b50f57bef21f0a6c63f49
MD5 32a2c400453d5bfc50bc1c321c1a71cd
BLAKE2b-256 ea5e55d3524417b53ecb9b8ca580f3edde53b3e7b4f3da003990408921d11134

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4cfb51265b0ba2b9314fa36ef6aa6bdb5abb3eafe1ed02c5a1c121bd9e9c7e42
MD5 a73aedbb558d7947a184069bcd082d08
BLAKE2b-256 31e2fae19d47150eff8facd3e04d7a5959cf8fcc1a306009bc647dc6a5bcbab0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 723911eb3cc0687fd0a44ebdb53479614bf6586d46bf514b4ea1faa6ef51b905
MD5 5c31bb97135a7592526416eda646d26a
BLAKE2b-256 cb899b7d734eabf66bf04fe0e33915070bb5f0e03b8c8ba94388a47e320a2e83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ea9cc1579ec0ea69396642bb5ee2b34bc3a590b415c05bc6513be49ba4c2515
MD5 4da8df6dbdde2acaac76bfd910cf7124
BLAKE2b-256 9c32e7824c099faeacac3b1bcdd0282d3300918e717c97b843c9329e4eb16df3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f4d9cf62cdfd55180ede0164dd87811d16f3866448b12e68bf8099b543509b7a
MD5 292a1923d8ba41cff09b12a28fb9ae6b
BLAKE2b-256 9ac663ba42fb097594f603df7afb24bb9b1ef337524b0c803fd9c0e19c6eef5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b981ebd4dfc970b17699b3e1c27c2b883c79a7aae9f07e30858d91ea909a80be
MD5 a5d310bcbc06f91f2a37647cdea5890e
BLAKE2b-256 8de1233636013983e8145fb53ef5c3c4f0d7779990cec47e1af3ba5ff1945c8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3acd4ce4f76ff07404db06b1069f136c0ac8c979a87b29926405b6493a017db2
MD5 00dc1ae909f99884f56901e1df0827db
BLAKE2b-256 d671c1ba31317749e5c47bc34389aa4447a5ad79373fff59ec4b80e24dc8ed91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3a984b476b0924844d51506dcb74b28bce1a87882bad23e679a9415352ca2d74
MD5 52048794ad02d5632d3859903935cf30
BLAKE2b-256 e29983325b04e1ca7f50ad3eddfb64b01427801e28dc4dbedbdd837c7508a776

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c814e97e23113473c6d3a995b28d2345aecd2e4e86b4e300491b8d6ae7db1f73
MD5 d300154c76aa936863ff98539e510c85
BLAKE2b-256 c71ec6013706a8f2fb7e755254e7960e5894f618e57ec8225ca03ed1a744a334

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc65fac7f597b6f58926e7cb796785aac0dca8af4dda8c7d1c9bc5fe94a92cf0
MD5 19257f06aa2e1eccd161b38fa43ab561
BLAKE2b-256 b80cdb4db38aebcae4821f3ac2c8cde4a23ebcc939dcf53c5173a7e40a37a797

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 47e509552b1b40b8efa6f73cc5b932f16fe4f83c698c6aec3c70b96c6da4e702
MD5 e48a540c40f0a4f827420b7b512e281d
BLAKE2b-256 a60b8f38ab5237c6aa64531dc4b036c70c31f329a17d0af58e2dd17c526e5ec4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4e38f5c85dec2e11b4b46337691089415557033d1e950fc51a81d13fc3a6f0b
MD5 e293e09e79976caa7374a23a7d02cb6e
BLAKE2b-256 fbc7bba38f26d9befa3c3277cd30e071830a6d35599c72bd457eecfa74e51bb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5150fce0207465bf69b0c3b9ea084e0bceeda19bfec5082969afec5093814506
MD5 818b3ca7263eecc33076b63a1d57298b
BLAKE2b-256 0dca2c88546cec1e8af049942260c2ba5d0153c2c015708fc71a51bd869c2a99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 31345b06d25d5b2351da74b58229f1c7e19429f2fc0f650b4fc6709addab75cc
MD5 ab2b6e0548c64b6d6e09bd7c9fd2ccd3
BLAKE2b-256 accab555a6f7153feea86a12e844280e8d4dee054a967d11ada90a752e2a5540

See more details on using hashes here.

Provenance

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