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-4.1.28.tar.gz (78.1 kB view details)

Uploaded Source

Built Distributions

mlcommons_loadgen-4.1.28-cp313-cp313-win_amd64.whl (299.2 kB view details)

Uploaded CPython 3.13 Windows x86-64

mlcommons_loadgen-4.1.28-cp313-cp313-win32.whl (278.1 kB view details)

Uploaded CPython 3.13 Windows x86

mlcommons_loadgen-4.1.28-cp313-cp313-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

mlcommons_loadgen-4.1.28-cp313-cp313-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.28-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-4.1.28-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (518.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

mlcommons_loadgen-4.1.28-cp313-cp313-macosx_11_0_arm64.whl (464.5 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

mlcommons_loadgen-4.1.28-cp312-cp312-win_amd64.whl (299.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

mlcommons_loadgen-4.1.28-cp312-cp312-win32.whl (278.1 kB view details)

Uploaded CPython 3.12 Windows x86

mlcommons_loadgen-4.1.28-cp312-cp312-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

mlcommons_loadgen-4.1.28-cp312-cp312-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.28-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-4.1.28-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (518.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

mlcommons_loadgen-4.1.28-cp312-cp312-macosx_11_0_arm64.whl (464.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

mlcommons_loadgen-4.1.28-cp311-cp311-win_amd64.whl (299.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

mlcommons_loadgen-4.1.28-cp311-cp311-win32.whl (279.5 kB view details)

Uploaded CPython 3.11 Windows x86

mlcommons_loadgen-4.1.28-cp311-cp311-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

mlcommons_loadgen-4.1.28-cp311-cp311-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.28-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-4.1.28-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (517.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

mlcommons_loadgen-4.1.28-cp311-cp311-macosx_11_0_arm64.whl (463.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

mlcommons_loadgen-4.1.28-cp310-cp310-win_amd64.whl (299.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

mlcommons_loadgen-4.1.28-cp310-cp310-win32.whl (278.7 kB view details)

Uploaded CPython 3.10 Windows x86

mlcommons_loadgen-4.1.28-cp310-cp310-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

mlcommons_loadgen-4.1.28-cp310-cp310-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.28-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-4.1.28-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (517.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

mlcommons_loadgen-4.1.28-cp310-cp310-macosx_11_0_arm64.whl (461.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

mlcommons_loadgen-4.1.28-cp39-cp39-win_amd64.whl (292.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

mlcommons_loadgen-4.1.28-cp39-cp39-win32.whl (278.9 kB view details)

Uploaded CPython 3.9 Windows x86

mlcommons_loadgen-4.1.28-cp39-cp39-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

mlcommons_loadgen-4.1.28-cp39-cp39-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.28-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-4.1.28-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (517.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

mlcommons_loadgen-4.1.28-cp39-cp39-macosx_11_0_arm64.whl (461.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

mlcommons_loadgen-4.1.28-cp38-cp38-win_amd64.whl (299.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

mlcommons_loadgen-4.1.28-cp38-cp38-win32.whl (278.9 kB view details)

Uploaded CPython 3.8 Windows x86

mlcommons_loadgen-4.1.28-cp38-cp38-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

mlcommons_loadgen-4.1.28-cp38-cp38-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.28-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-4.1.28-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (516.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

mlcommons_loadgen-4.1.28-cp38-cp38-macosx_11_0_arm64.whl (461.5 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

mlcommons_loadgen-4.1.28-cp37-cp37m-win_amd64.whl (298.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

mlcommons_loadgen-4.1.28-cp37-cp37m-win32.whl (279.9 kB view details)

Uploaded CPython 3.7m Windows x86

mlcommons_loadgen-4.1.28-cp37-cp37m-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

mlcommons_loadgen-4.1.28-cp37-cp37m-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.28-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-4.1.28-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (519.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

File details

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

File metadata

  • Download URL: mlcommons_loadgen-4.1.28.tar.gz
  • Upload date:
  • Size: 78.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for mlcommons_loadgen-4.1.28.tar.gz
Algorithm Hash digest
SHA256 2e1858f154776035eaa88245b28114e90a49a91eb9e7095d6b74031cd15f1951
MD5 898e6c146980ce7ed5b8cf9c6c628ab2
BLAKE2b-256 ff4358ab0ed86db021bb4e803de5bb88ea099fb689330605cdc83422fd7d470e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28.tar.gz:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 aecb5046b9d5813a8d3cf9eb3fbd27167936f5974c14e6681a7d462792b4934c
MD5 680746904f1e3fa26ebba07011895e02
BLAKE2b-256 7dfde3ff10536cf9cd08566c5c2e565a81e1009e610adbaba63408c190eee6a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 89dc08af067755351c2b1c617f11cb656ba57bf4ec022c69985e4c131712d015
MD5 a3d7cb0d232b596eac5cc28b34de927d
BLAKE2b-256 c7b3d722fa47a458c27a0429167e39cf5ef70554b70a360dce771fc1c4de5db7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp313-cp313-win32.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f6d0eb607d02424740da22f00ad460cf953fa964d1204c30bbd1a7e1d826884
MD5 4a4a8387ddfa44a2128aff09ac1a54a6
BLAKE2b-256 3d6e8aa31dc1cbb51f07da59f22567105ec351f4002559c7a8b3ceab3a16aaa3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9d3084afa2f22b2bc4239aefd81b654427a8c9e0db1974ef4f107a7441debebb
MD5 0846641d9c4c7dcf7759bf6e7133be75
BLAKE2b-256 98389e6c7dc64df5e24e4eebce0274fc52486c399692d847b74929f75b26d2fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bdad53578023d1cfc84579bcf3a5caeec1f5740e3af0100a4aeec5c40cc6f19b
MD5 1e37598ed52326bfe3b3e0967c3e84c3
BLAKE2b-256 230b217195f537cbb04b064a87f02980aa8e3e4a3522facb003f7a7e90de589e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 30d167426356a059208b7621edf158bd217a34778d096fc49fb6d967ef51f039
MD5 fda4372534334047465e89e2c93bd3ef
BLAKE2b-256 df390e35666e273e6a7d01a8a9ad861d15df1a18ee52c36d99f4acd77514b75b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23f3e790ebe1baed38f153a9e59d0883f7c3ce2e5d30ec2598501e18ed88744b
MD5 5a197647575b2d6adb1a107573c8a9f6
BLAKE2b-256 7b54b911863928d64c6a1a96ea4c1c4d63c6eb47b16ed2ddefcb77e91dd7856c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7b297f62535e9677a3b252af01fedd631a619711d5e022b8a5a51f8bc9452def
MD5 789930c67192388e52d1a58e2b257fa0
BLAKE2b-256 91581188038c536ab2eb03525ba1598ce8e3d339b03bcb5cdaed3b205eb64acb

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bc933e93c6dbc340fd45c73aef6a856a3b1c3a061cfb7072467d37b9865d7bb1
MD5 f94d7e776ce764405587a9a38f438962
BLAKE2b-256 e3046dc5cc5e6a0bf4139a6d171ca0ba34ae475db760f7fb2770260235ae24fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp312-cp312-win32.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a4666b1a8785ab34a30f87cbacd9a808a598941c6ba7cfc51b89fb8d2980b7a
MD5 c752cf83388c6e69c2697e5dc0ef4c5c
BLAKE2b-256 9a18eb3aaa6f8011add9c68cb5ed775864a2101ff60db44b7e1e8a9b0fe368d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 67d327c98d080fc30570b83aeb239e3c37959688e0395a0740f80f4d4692209b
MD5 16a8b3c38fe4b163205b49749f415051
BLAKE2b-256 4142a1fff06a5e70eb91b085ccb635b3edc60e07fab0f4fc76401a4b8134df1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f456e0150601571e0c7f16e673fd26468b2f3004386d5bb762d767cb16b12105
MD5 b244e912991d417403e4b566cda83356
BLAKE2b-256 921e890d95f2f8aa7c7fcb6cb6c3065553de25dc96e6f5e83df10b9dd51beac5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9282bb76ece46d76671d6335289d1c5d474d1a9ef7abc8f358c5aaedc34e6e7c
MD5 bf90d1a563533153ca61a3e39d11eedf
BLAKE2b-256 de7d68b98a408b2a7db7af5ff74167cdc0537bf81721f98ef236209938937f64

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11cd39a9e6b86542c5126d5c561b793ddd315fd0cf5b9c7996e0ba5098499604
MD5 c2dbcb829b1ddf023f46ae6adfdc3930
BLAKE2b-256 e293bfc1902e421e4e1b5c76e0205bcde85933b88175226dd5b6c5eabb1547a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2ee16b47b5a11218abe103bc1bbdbe5527b3b0ea9eaafca55fc344e77ef4567b
MD5 7ebdc47a0e14bfb576035679cc31f8c1
BLAKE2b-256 35da01902ae8741a18b098e692e6a6ea27d27da5d2eb9f5301089a2e96e9e02d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ab2cbfb60139cb46291904a6a775aa016a1dbf7bad5157abb348a97c99131e03
MD5 64f97d0894ea93947859cddc6aa7b770
BLAKE2b-256 a0f163ff8adde19f7d56e361587757fad7e987619e0d566a97f9ed8c4b5c5cd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp311-cp311-win32.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0cace21e2170281cbfca00727c4902105677e52d285142cff7ac46ada0abcfa4
MD5 3d80dd61bfa558f5d64786a8f77fb64b
BLAKE2b-256 01f9b58fe1595747e741dcb664ebfc1e3e07ea57dcbedf4214a5591b6e4a9ab4

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 390e71b1f27a7c095c5fb3a14ac93f4ee4d7e0d8cbfbf807efdf6b595f9f911a
MD5 dfe940052bb172aae4f55b7016a5601b
BLAKE2b-256 cade41e7b3d95ec51c5b92b391b431c8307bfdef84a30ed4f9f21b988ffdea76

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd81e6c9696e121b100d93c9f82c065060f2ff60a948dad0c4a00e051b544b64
MD5 79a78ab4aab975f36a0f78f17f225578
BLAKE2b-256 e1efe6479f060aadba97b509acf7537a1596cb1a8eb91fcc2ec8b034cc27d620

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f5eeece5a682b07ad18185d6f426b4d50f119eff405e290653eafac7692e0a55
MD5 17ced9ebd2cd5ab3340a1ce428db89e6
BLAKE2b-256 2bf677911befbd8ebf1c6f3c6a6f5c3118cbd9b8b359df9844c106867b2731b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4b2d8ff80e7d05cda0535c5c6e3f461ea44c2a039268bdde5913e25004e5986
MD5 19fbd4070c0547d672ce788ae481d9b6
BLAKE2b-256 7d8af9a44e8a2999ce0accf6257ff3c8836abb4d8358d95e4b0a79f3b7ce88c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ef268b687a4cd4553097d1d60b3a9720bc92c3fb2c8ea4ef00c9e5785352a347
MD5 8e9b203accec9741220636cdd20f861b
BLAKE2b-256 abaee61fa701037825096d29fb6e9faa3dc255cf4c8630bdb220e57cb177ca9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e5538279fef80ca3b315bfaa53db07f7b973d3a150b859e0e6291268e86a76af
MD5 2e86341a7aa703b15cb3c54f3e452823
BLAKE2b-256 13bcdb6ee28a77ba683d2548b8d679492595460caea5e02da9eb9e51c2271292

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp310-cp310-win32.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f0ec7cc81d921346ce8fb3184f36aca31fc4424e294c5e018f95379342744fb
MD5 f8d5438e5460bc1e1b342508bf8e6b43
BLAKE2b-256 cb74a8f5c85945fa242861e36b9ffbb46871947583b8f729f23d4a4b7f9a22b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4bd15102dfa03bf0357f5457f22369116ab850a22cbdbc2ca2fd76205595db27
MD5 6b7931a1bfba365eb7befe73cbadbd49
BLAKE2b-256 2369a0bf5e38ca3ca33b079934810bc96c6aadfa0a1c4c59fe7e7fb9868a2bd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9df71bb04a46d0811cda0d6d85b33237adc491ab280382c15ebdc2d43628a08c
MD5 664dd40eda84050e91ca6e1a94e4e1a1
BLAKE2b-256 5f2b3cc3fb773a7df4ebc3f43e91ad2946350652f720023b685be39fb61ca4b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 495b54ee804cae190146638f3eaa1f1d810e1ba1b55be5829e825cdb7f691eaf
MD5 7113c72429abe3680ca2aa61c0df8f24
BLAKE2b-256 b3b231e01f08d56dcb181b69585d40d82b0dc407154dc410e3c86816b374cb1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 80615290e37bf5dc70f6c1ef17be21111eb94c0d2426642ba2a25baec934b585
MD5 2d9963542c5555ac0f86eb21a043bf44
BLAKE2b-256 8a25d0a2fa1ecd801d244d6579962390abcd89c70aab3ec6cf5a865a44f40ce3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f28c399c568b5faa4a095359a99d51e88769cd1c460f69f0de8a3e945e0fe6ee
MD5 c5a2763918e40b9cd37fe22411c13574
BLAKE2b-256 db5ed264c19cfab16952abcdac3e50ff99a9639f0fcbb2fb50b4ad7e56087444

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8715526113135e4bc774b54003ce3b9f3c248088ea28a4eabc6fa89a46bfbc7f
MD5 3615acd8b02bb02e7d67061d7bb19f1f
BLAKE2b-256 db5ca9c18d8b267cbec2acf2786e5d5e5fdf2c8cd9a8dff5ebf00ddcd2358dc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp39-cp39-win32.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d834c9a5629d62870786faa02a655088d9c0480668842ad00073c47a83d3ad4
MD5 d6861d48b84c39457349ab09d2850b42
BLAKE2b-256 5add0582f93c97696aae3eef85d0ddf3554d42b9b042a9979f9c2516e3f977a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd7c9e3608ee8edfd44079e730870aed4f85e929ef5e4768122940d21b829c51
MD5 51f360ae846a3a90a5d83e22eea30a1c
BLAKE2b-256 2510c402a14004b1869d18bd175214eb832d5f46640f0c2f33b877458473cea6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04534d20612c76f56bf87f898287b98469e15add68bf6b96e807afe7803dea34
MD5 1baafdc0de2033269a8581c7651864b8
BLAKE2b-256 1ca99d7d4a6d511b83da1bd0c42d74fa6f88efa4093a98d4294985605e112b2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 42610245fff600aa3396fbc23aba79506da1c0d52d97a570a772fa42f852cbfc
MD5 722a5d8086971e5c57b5a680cc61128b
BLAKE2b-256 9e4b1478a1517649bb39dbdbf168d06f30107a73f756de07d847767ce5eee535

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a7289414775beffd046bdee0858a42aa2c6c04e800b1a7045a32dcc459f84ba
MD5 2b672196305220c19b769215f2e61ee3
BLAKE2b-256 44fa4ddbf97e5ec4affca51867377743d97f5959580e777d241010acfb215694

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b4470c32766b4bad0b31877b6f56e9d89d0d9448084243327fe0ba9c0e6b421d
MD5 1b491ad8164e8005f043bb47c8eb4c47
BLAKE2b-256 ba4d0950557bbd98a3898722dc93aada89f794e882cbad37abe75235a0773482

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp38-cp38-win_amd64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 216c066b8c8f6967b0343082d7b7661c40e9b2b6f861fb563d283c98daa7708f
MD5 56947a7b01a4ab7091bf5771a926f68e
BLAKE2b-256 56b292e1ebfe9658bffbba2d0e91304570ec48c5c0f5fe6ca7790e5654023e22

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp38-cp38-win32.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0b2c667d30b4c764abb302a8b30f7f9ff44b34629855f366c58de5f249a5414
MD5 3c4eee0f3886455a7a1b3be478678ee4
BLAKE2b-256 20c78693f286b8f6b957a93d0dd77233be329a220b2201c2d9f9265eb8fb7073

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0249de126118a1ae32544b7d52867386a7e0bb8fa961e45f0d86544c37d82ab8
MD5 ea847762353c02247a655d8b69430e23
BLAKE2b-256 446afcae5da7f3bc1377df03c2fb885e5af0a9b9d8c103db21f4a272ad559002

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f980479f1a7c970d7a146b8f868a7bc64a0b69c88236823d7d0541b87446aa39
MD5 b3beede86d25c092a01f5ce304ce6e7a
BLAKE2b-256 51a96956061926749c10185871b863addefa953d358df6e0208dc13f8dcbb696

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bbf1f39c87218c9b954839e472005b1c6b9684f469381115ab0013780f71b8de
MD5 361b38812c242e838f0b28d1f3c40ae7
BLAKE2b-256 8adac3160fe1b304eccbaf758c659f0c291dac96deb567398c17e4dc66b1770c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7586bb301d1c350824a5ffd5d08f7eabd263ba4be57b6ff9d87b0ef07defa7a1
MD5 9f56318f41591488a103f5b4d5537e4b
BLAKE2b-256 1bae52b1974830ea046d0a0bc5888e9a19840fec392c6343af5f76250e66985f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 cd043ec915526fd9e089664192139ead1912f34843383274f8d0a97cec66c20c
MD5 7646f580cc88d7a47610a0ed0519cdf6
BLAKE2b-256 cda88237ae452f6d5545f776706c6eb7744edca234a260c6bc550274cdbbf56c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp37-cp37m-win_amd64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2099f8a7e2357cf4f3adc688e3b942cfcfc5cd7a9c1d0733686b0317d4f937f4
MD5 b7dabe3bba2dfd478618f8ad07d0099c
BLAKE2b-256 bdb0411bb0be0e396e95958ebf0c331eaa6f2b12f5296b1e814957b06bd9d5c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp37-cp37m-win32.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 393edb818825cca7c7f3c296d4cdf7ed38271cc17de3cf5620b2e9a336cf1038
MD5 5fea9fcbb09bc249fb1c8848d0b6b783
BLAKE2b-256 5f376144a8453e4c4401ba578679f49e929501b1b72dfac5acbaa3b5d18b17d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp37-cp37m-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 594bbc3c678b9441141a53fa94594331d1ba23f895ca1bcc65872b2c85d2d8cc
MD5 327e3ef50e2c598c9cd955242652f72d
BLAKE2b-256 9151de7af72da0d3e6476d036a9e5d5a4ac2c5d83b926eedfc81bb7958694515

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp37-cp37m-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15bb8bbae07b9101689ff3f07bd0bf20eb51397ef347c6f453883caefca866f3
MD5 ba2e9418a3543c06e16e7198fa801b36
BLAKE2b-256 1ab216bcd6486831587a12a7704d09a3ce8df395d0928e4da0692d3a226b28d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.28-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.28-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 174e4988f40c403e4348073f399640d70b553eb66ec61abeaf3e6ee52079e98d
MD5 1c5320792ed194c54db9bf5e5ec3cc48
BLAKE2b-256 f7a1510552a6ba7134b2208974deb82978a4d3749712ab53a89ed729fc53737b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.28-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page