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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

mlcommons_loadgen-5.0.3-cp313-cp313-win_amd64.whl (299.3 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.3-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.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (518.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

mlcommons_loadgen-5.0.3-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.3-cp312-cp312-win_amd64.whl (299.3 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.3-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.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (518.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.3-cp312-cp312-macosx_11_0_arm64.whl (464.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mlcommons_loadgen-5.0.3-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.3-cp311-cp311-win_amd64.whl (299.7 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (463.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mlcommons_loadgen-5.0.3-cp311-cp311-macosx_10_9_x86_64.whl (475.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.3-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.3-cp310-cp310-macosx_11_0_arm64.whl (461.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mlcommons_loadgen-5.0.3-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.3-cp39-cp39-win_amd64.whl (293.0 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.3-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.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (517.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

mlcommons_loadgen-5.0.3-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.3-cp38-cp38-win_amd64.whl (299.1 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.3-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.3-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.3-cp38-cp38-macosx_11_0_arm64.whl (461.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

mlcommons_loadgen-5.0.3-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.3-cp37-cp37m-win_amd64.whl (299.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

mlcommons_loadgen-5.0.3-cp37-cp37m-win32.whl (280.0 kB view details)

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.3-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.3-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.3-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.3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 739b02373dee83ae98caf5a219542c45f7c11da3db4aad04af75cc56e0ee4c13
MD5 092a61bbbab771037475afa93cf25ccc
BLAKE2b-256 1cf7285b641de68e710faada39c5c7118dda66b6ea6c9b781c2fc03cb57c7ecd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 226dc399985dfb2f5e438152d98e00fa70a5cb9a3fddcf4059d5425369dde03a
MD5 8c6f7a8a344824b0e355baefef97b680
BLAKE2b-256 cb21e04711fb75f49cf130f9fa9ef479542ad09202331e17aeed07009152b416

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 45283346e0a8c0575e2f56a167128530aa3846d2e7389c96863798b02ccd3403
MD5 d6b7396fd4ba00a4509b98ffb14bc4f8
BLAKE2b-256 9794ed37ac8dfb90d2eb560c270e16cf4eba186ec3c002fc40b5226c676eeec2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 941b753acb97dc98cf2fbe6865a956ab6b85d68a732fa6de490424f7b5377e88
MD5 8ddfe51f43291c854f7ef409f0bf3366
BLAKE2b-256 ceaea6d0ca6d265aa46a4114009a807c1219f6c8652603c41ce5e1be6f115dd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3ab587e3a0c6646d3804aa7f5ef52d70b9cd15439385b118f5cc1250b26cc85
MD5 12a23dd66be95872a9a9ee0830df759e
BLAKE2b-256 17d9b4820692b2203ac4948d4be6e2d30dbd0215c1fe1f79c5e0c33b0df7c237

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 956ecb251a89e9360efc0ba65d9914e8fb264322c50abe411acc2f1d24d11fab
MD5 a76dda67f3bccc51fd91dc198da9aedc
BLAKE2b-256 2a77f0e98886ad2426fc36565788cac0f4a44147062e685bfb58370b564d9f23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20ff1cb74c66eb03d0161bf58d2274d53feb7abfd3eccf529866d3ba9830f020
MD5 07a104e9f9c030b1490c98d57bb225ab
BLAKE2b-256 eecaa8a2e9533f1b5ce5fb738921277ee1db3cd4dd8b3f3a16ee5a4fb8ebe27a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b1ca91bb79056826ec374d499ee8989c5be18859972174cd812d4543ba869a68
MD5 212c84c894d3a73828b37fea644590ba
BLAKE2b-256 690e26be29fe29cd4d055682458d40d8269f117cde282be6bc9344eae33ee800

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b575ba2a506372af6e9a697793e793393437f684c1dbe4a38a85d711b48d0baf
MD5 73298177f4c9e8f4acb80b0632461d1d
BLAKE2b-256 18d6787aba0d8cdae755413f0a49b09f14867e8545a9801361e5746767ecfe82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 859a3dae66013edf40f68812ed6a07c22bc66f6f0d131b7779891fd5ecb30462
MD5 05b4b3a5d1f6d43d3cb6063cc7a285b9
BLAKE2b-256 d94c3441537ddc2ee082f74b8221d49cbe2160349be22625d90aa8a99af1bf5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16d6b8dc3eab1b9262dc10ce8778f977c58589f45cd1e75017e6bff496a5eb09
MD5 cb1c87f972fe25837dc5e9fa13f86d58
BLAKE2b-256 278cfe3c00b6e3bf43b19f8faece768ab44cf75a8988255b643d987572280be7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f325f20f336b1edf511f50ef01d270f2d7aa4dbc94480ef7cd53ab9c5afc6c25
MD5 51452b3c9b14db17959d7f7fda8be58c
BLAKE2b-256 fe7023eae80c897616051733348a831c0857edffd35425a347bde657c07d35cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b53bebc1692a36392d5b4433eca40c0c9eba63313e6b982d7fa00a32a256a25
MD5 cb6b077c24672beb654a9730d86527b2
BLAKE2b-256 d57f7e181f0aed4e9f2fc1a2be57d668ee90ca5d752a8b4da190861745d0a949

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e8637ba9237c820778407f5f61b20f2e736f68fc66ab933f59362aa5700bc348
MD5 65c084c7e3341e95af89083c1feff28f
BLAKE2b-256 425c0391a1d18dfcfa04bb499da1ac6783d8cce60e5b0a77afd7a1a23e08ea6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87ec490f2e59c44bf3017f757f6cd121248e9148170d6a4e57025b86b7fe75ae
MD5 351e4a1c18a7c4bb6993b7ab56a98c4a
BLAKE2b-256 11ac4f8595001127f3da24f57adf34f8e14df83754a11a7cd3b3dddd87a6e4f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 acb41dd2cb2f96a743fa621c7acc654721403f36ea3298bda8d555f53224d2f3
MD5 9a52f3a5ee2dae4a74f4cd674b21ab40
BLAKE2b-256 fd3d8a99f770619c2287419941d409c22ef9af0b1f821840cd5349c5cd772670

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3067a23a79f89ca310f6fa472f46c0346f95abbf85b999248f9db216b22e2dd9
MD5 f2f3d1ba1d17cadf8c72560aaa338361
BLAKE2b-256 30571551855f02f0ab6fe9341c8e9bfd48e1ffab8346073f07fb5c466ed72516

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f09d853fecc3007576b17ce7161d04504a6bdfd2db7e8e192ec1f54eb919f18b
MD5 2b03bfbe456cbb7474c644c091513bb0
BLAKE2b-256 9933c9ee39b2944656c2400840c8291af668299e44d4522fa99e602453ecf8b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2846eba3a7d486e0a9516d0de05626dfcf1e4d2c35c10531b78bfaaaf77ed61
MD5 a78bb678a13e5cdf079c85165cf65467
BLAKE2b-256 09133250faeda09737736474dc5337e9f5851a8596004e97b417a275324b9a4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e6c2f0385deb3f6e16b9b23e0927cda36379ea1aaee06a8b9e798903de9c8add
MD5 8d5beab7db89910a414b0e0dad37fe55
BLAKE2b-256 728bcc335696e13789697b985cd894af14360632f785b49234f32e624afd0984

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce090b14a5f9e5ec73b3d351e5ae0fd68c4774d45a5715b86cb9d56fc8d5c1eb
MD5 1ced2a7f19154d7dd03aae9e6f0c7075
BLAKE2b-256 6657ed6882d260de4a03a9fb7247568ec786006fe2a2e9591d8cdbddaff9de9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2111a0a5fd043238af46d99dea032a671b6675991f8788b967fdb91dd3db7abe
MD5 f82582da560e3ff43e965a8229d40597
BLAKE2b-256 3acce675991c826512d42dcd56c89639647b15a0e39b78f753a798b1965dd13d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 669bb4817810c7d7b5fb40cbc586de5a4842dc63421e2ce2beebd82b615221ad
MD5 e0c8035084325f7b794baf7acde75657
BLAKE2b-256 7f3879d74144c8c6eefbac457b7d4f5b8afcc7d74a1585a638f707b11b2b8206

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6cc3d52f4f582832b8b460fc1ce62bb84d01fbc6fbdc5549ac699ee987b0c99c
MD5 743d1693048e3db421d35acef6bc2204
BLAKE2b-256 5480b5ba48006f6f5ffb948131099ae010e5c4ce5806cf6ed183a614f0ff23cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ae4e92bfc20763a57d0493a2a278c7b2e00bbe8d94c0618ee3b4764279c784f2
MD5 e8b9c464b3c1603c84649185b799d3c1
BLAKE2b-256 e991a08e61bb643f0ba34f1fbc167472af0512a99986cab7e2281bfb9f12ed3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9909bd4118e1e5baaa88b7a407c702b907e35908c589b41ece21f773e3d1538c
MD5 c4f28a646dc6012aa595b6d9aa6286c0
BLAKE2b-256 305424f45a937ca9ae68f07dc4aab31f3eb7bd30ba89558453151d01f70491ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a6a2d9c13726a29a59e2e0d18490aebcb1492b2fe5d4f7ba7a0f6e1c7c2c23cc
MD5 b69e8d0cdee54b70a423fd61728ab058
BLAKE2b-256 80ea01eebe3b5bdda38c2ec3d5965c1f54d85df4f9860a673c64cb01d8f91126

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a01f08718da4ba25bff908fdfa394b3803253339733a73fc38e305bc6ea2cddc
MD5 f5a6a1ff52a2396e3072158706f62cb6
BLAKE2b-256 6f7dd805a999fb2ade08fed7b72eefed35cc6193cacd7c30f49bb6e8c2533803

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a39a02db109de0df00f79d8452637e43cf48a0424ae6d9ee206051a57a2176be
MD5 6d414125178a698623300bc2bdcdd639
BLAKE2b-256 4a377a3a269ba9ae0593a568223ab52b98ba5e1a6455bb016607d69a39a5de63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 44c59271fe204a7b974a832420c186f0625b09437a420cc899079a9d61c31a0c
MD5 d5919158a0e2e3b5f975f6cd53fc32ed
BLAKE2b-256 4335a465c7c97009704d38426d8f2c85df1f54d5c4a635e42d656646550b5a9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 688f158da780fa1797ab7c658f86dd5373398699769fde3903adf159230e5d91
MD5 e80ed18cf9dae3b5a1eedbc63d6cbf58
BLAKE2b-256 4b3dba516858dd56aa5e3f91cb127acbd35674ad90969e39afef2c282fc20513

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ae8d118210249e6f4e3c569ce001176a3df2536c8ecdbcdf33ef7d460b01865b
MD5 34aa9947f30914c914d371ea050282d3
BLAKE2b-256 32c8b88a797aed91959393189eb1d485721452cd4ff6495eef3a30f0ee2eabbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0d8ab7ad8f052b4b13a60c64061de86b42b5ebaa85ee16128d2e5e827e058540
MD5 ac443c829aa65111a9794de1866ada1f
BLAKE2b-256 0d1c61b2d3cd2a6c74f18b2e358aa6ce514d424e98a61f13056077168ab7b7bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ba3fe00ff8d4528533033b695f4bcd9e44baa7b3cea6ebeac634a17106e7c332
MD5 38a90c0fbfa9924514850145bf4c21df
BLAKE2b-256 e4e6680c2021b898a07ce4b0e0fb7b1a861d387e22036540ebcdba33bb0602e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ab588a06868de81525d5368f12a1f9bfd799cc89177781a9c7c8e199fe1e841
MD5 f7907d3c83017a3c6d2e7204a8e8c1de
BLAKE2b-256 201d90b7ac10da56af4f506823fcdc411dc0e97a957dcbcf7ab1e9ee30fd8db9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ece07dc4d5b4b7192627af4e4b0494598211a0e32e30f5200b407fe584b522c8
MD5 be12fb07dc53a8c2d61410905c18acb6
BLAKE2b-256 28d8b8c089c6dc256e60a53fb3790dfab693588869c8d0c68095e60683596f61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18770702cfe9aa5b7c4a265c3250806c6cee9ffbbb5d234fa8c534ea78f66616
MD5 68ee81757a6077fe762d3fd2e21841c2
BLAKE2b-256 4cff7e3d7116fe910104a8ece1261900d33291bc0ffa7235c719f1b68f64b65f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5fa012d43f4f107b76d2c1d28e23f2dc4fd42236f5e68ec6b73d24207d875dc9
MD5 8c42c8ba1e5883b9764b8700c66ba035
BLAKE2b-256 26cb4e665996dd50bd50151169b5b9abc557c651c6f9d26f6936f1cfa7214072

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd24e5d26923ed45aa1cc3679743e08bece9cb5a660277a11655fd259e9e5794
MD5 d3fe6e4bddb5710d47b561e231dcd0f6
BLAKE2b-256 521ef541935fa98c042ed039e202c416ae4409a005e01bd2bd4a17b49945a478

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6c253c415fa4460fecc7fb58e182f2b6fbfd8408c5431325ecd0156da49ef85e
MD5 1d22df8c5db9c98f3f4dc582160e80fb
BLAKE2b-256 00ed8de4f033c1bef4178d06057696754ed22ef0ae082a0e80693d7313b2de68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3d26e16da017cc08036ef7234ebfe81f7e9fd65f8c3202aafffd08564f949a63
MD5 0a2ccbed9820eec9a646be73d1f94080
BLAKE2b-256 f67d784b253c7d2e2e28e3f0b4f238c72a0b85ce758f6655eedf9fb30076e76c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 234d788914418949eb2c6d03fcfe8f6d4275b869744fe14f4d671900e28cbb5a
MD5 1ab37cc4598270298daecca08281d448
BLAKE2b-256 e326845742ea17aa75c81a6567745db55e6c63821378875d8f1f62d3f2fffad5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9151280badba8277f8e3af130e4ada719832100f976303bf49fb594caff60a19
MD5 dc7b28485b28752bc449d6ad221f4b86
BLAKE2b-256 6a07e0fce2b77239967109ee0c7047a66e43028383146eda159c52cf3d7465b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 61dc0db04b608d9771ec38c4b18e296b4676e8433428db4a04fccaa70df09c82
MD5 e3b0e862ff04005c397f9974f6eeb5fb
BLAKE2b-256 52370501d1db7968ad75139999521f6bae6f6d0b937218dd1ed824d5e5c160b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42bf5f76bc3991f84ae9d674e21f2659a9c1e7460c82e1e56070a8cc173623d2
MD5 d4b015528f77e25f8bf6595c45655a47
BLAKE2b-256 745f406283084f36107c12aa10bf22fcae2bf6e8d99cf4b2d60baa4d59fd1f23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 88db2e9cd9e778d1e9c0f5e1d50624655a173c72d111885c385cd8ca799fccc5
MD5 253548ab5f123e97a2b2195a0197f181
BLAKE2b-256 e33a57559de1ce0bbd2725a43fcddaab0c8fd406e60a511e9f617c7558e523c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a3763d8a9861b483ec3e8037b46cbbff39495e39588acdaba94ad060480013d
MD5 601cbe25c512e23092e3e7521d10c321
BLAKE2b-256 260b0f998c8570a54354280e8cce7abebddf44dc290088a3d34fa3889d3615bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 868e633af47b0814464b35a83f064de5ae1a178e6e4f9062829557ba5b922a09
MD5 4eb2501ee56aa7d7ce14107b3ba6e62c
BLAKE2b-256 0f91068e51bd87b65bea4ac090927fb15481041ce1a2e3243b1c8ec3e9dfc31b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ff968aba8de5677a8acc74a73fcbcaef77bbb09851dadbd6f9bba250168e4d92
MD5 26525183f831b5338738d2abb3f705d4
BLAKE2b-256 4cbd26fe400ea894f85fa3b72b8f0b592b12717353f88cf1e1618dfc6f0b889e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f17da7226b8c862d111e2218aa82fa79deeeb3787820e92b0b275921ee5887a1
MD5 2e9f56ffff7e2d6414a15c8b2269af56
BLAKE2b-256 0207cf4749138bd94c62421c5ee8cbf510812de453ceb3b02eba151683e87bcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f796e89db3d54d00e897c7f35f1ce81c5136f75716616419a809933eefc77f6
MD5 b04c2489b10318c8edb50317fee8ffb0
BLAKE2b-256 9bf15644b7d1b507e62ad67af109829a2b2ceb05123d39a491c1ed559f064a60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6913d702a8f8e42b9f92cd4eca0833c8d5b4ae87db7e1413cbf7c95d73edfc90
MD5 616ad1841cbe5900d9588fc3ef65f1b4
BLAKE2b-256 d2142e4614624fed786bd35241e56ba20967474e5f76cf540432a4a0e42c4aab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5d236ef6857818ae8f0a9d92e7acedad4e8a39b0228b26d6e06f40ec7a777f6
MD5 b03e6976529216c2d2796e21de504bce
BLAKE2b-256 5de87e39e8b44b9bd0b43cc083fbdca9820a7e5d1dba6e468b8469bb8913e756

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3e4906cda32ad013c8d32b6b5bb17ac9279aea7b4d6af520b7fb41287b8203ec
MD5 2e4a7c636b2b49b103fd42e19bc877a3
BLAKE2b-256 23c7ac6a6c497a10910c0e17589c05284374f38a15b4d497c46a6e83ebc1f7d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 927b0d804022e78e1b3c134df991ea995e0616c68e57755435cc7f55defc108c
MD5 b772f6f8958effab45205f179a50129a
BLAKE2b-256 f653a5646d2a1d7048e0e2f77f9d35e0956d3b25028a23386c9eafa32a12dcef

See more details on using hashes here.

Provenance

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