Skip to main content

MLPerf Inference LoadGen python bindings

Project description

Overview {#mainpage}

Introduction

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

Integration Example and Flow

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

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

Useful Links

Scope of the LoadGen's Responsibilities

In Scope

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

Out of Scope

The LoadGen is:

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

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

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

Submission Considerations

Upstream all local modifications

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

Choose your TestSettings carefully!

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

Responsibilities of a LoadGen User

Implement the Interfaces

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

Assess Accuracy

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

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

LoadGen over the Network

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

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

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

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

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

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

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

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

QDL details

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

QDL Query issue and response over the network

The QDL gets the queries from the LoadGen through

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

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

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

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

QDL Additional Methods

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

const std::string& Name();

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

void FlushQueries();

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

Example

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

Project details


Download files

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

Source Distribution

mlcommons_loadgen-5.0.15.tar.gz (78.8 kB view details)

Uploaded Source

Built Distributions

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

mlcommons_loadgen-5.0.15-cp313-cp313-win_amd64.whl (299.6 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.15-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.15-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (517.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.15-cp313-cp313-macosx_11_0_arm64.whl (465.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.15-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.15-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (517.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.15-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (517.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.15-cp311-cp311-macosx_11_0_arm64.whl (463.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

mlcommons_loadgen-5.0.15-cp310-cp310-win32.whl (278.5 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

mlcommons_loadgen-5.0.15-cp310-cp310-macosx_10_9_x86_64.whl (474.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mlcommons_loadgen-5.0.15-cp39-cp39-win_amd64.whl (293.4 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.15-cp39-cp39-macosx_11_0_arm64.whl (462.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

mlcommons_loadgen-5.0.15-cp38-cp38-win32.whl (278.5 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.15-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (516.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.15-cp38-cp38-macosx_11_0_arm64.whl (461.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

mlcommons_loadgen-5.0.15-cp37-cp37m-win_amd64.whl (299.4 kB view details)

Uploaded CPython 3.7mWindows x86-64

mlcommons_loadgen-5.0.15-cp37-cp37m-win32.whl (279.7 kB view details)

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.15-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.15-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (518.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.15-cp37-cp37m-macosx_10_9_x86_64.whl (471.5 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for mlcommons_loadgen-5.0.15.tar.gz
Algorithm Hash digest
SHA256 803121ffcfb35f86ffe837e4fb09860cf485c581589be70a4950c72a2e54b8fa
MD5 cab9adec1a8591253a7e52cbb9f0828e
BLAKE2b-256 ae5d4caf2a10258673c3a62a237832917ba58854fae5373c310c2e0c4443fa7f

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e0ae51b484e8318c01ca25088575dff87bf944a8e89826f932fab54efb20a644
MD5 ffccd95af1fa2ff9895361df47e62d06
BLAKE2b-256 d8471a016ef106e71880d48d44d2a1fd362bc49d3fd9c2fe171c106082e4370c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 73763d75318194ed95f9c64331fc058fb203b3f3758c54cd462ae382206f58d7
MD5 26f7702d730c83e49115c4b9ec51e527
BLAKE2b-256 4836a79fe8475ccc0a9ff5aecbb441d9cfb51965b97e08684c6cb4cb3582c37b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04c20829a4102366b1e398467a4628e77afccf6c5cc95a9a52efa08f3e768b02
MD5 50fb031e96f5a0c176ba3a28e9823e6b
BLAKE2b-256 248689796cf84e33ecabcd6e911c9f436bad65b5927ebda419dcc0b1cc40862a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 87ff3815c57fa860fd17391ff48580628e5f5024315aad95cf7d7724f835ff5e
MD5 bbfe5de808cae3f37e7d12d167426af4
BLAKE2b-256 adb7d16f2e4d4fef82511dfddd42f608b85c24f022ce47c0e0b8194af7f8fcbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a862296cfbcf88afcf0a86ca4f64bee19bce940fccc81242b74f6dbfe8492f7
MD5 7e52f9f66a5c7f612d2e260519471346
BLAKE2b-256 312e6d764ceb4e2c96afc764497024eabfc9ee05c93883a427bd5058995c3235

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f404261576b1b2a9115870526af506bebe648dddc1184cd1fe2b55b8e9952e06
MD5 155b4ff9607e0bff7308ea443887b755
BLAKE2b-256 91dc326658e57b4aa55facce9e29254e90953a32b247f40132849b0498bc347a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa18b2a416ad13b9db0a5085997a9c94249c1391c1332175a635f1bd048ee040
MD5 e08c6066a42bacdbdf8980877719f375
BLAKE2b-256 2169235bb8b7561e2e201cd9c9688de71c6c6bc17056cabe4a40abc4820bb436

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 417c413fa9513dcedd47dc5e255bec84a48d6f8cd3fae95aa1393d073c4c0dc0
MD5 4cf50611bc56f54732d485734db18b6d
BLAKE2b-256 961863334393c1faea2bb27043519117a85016a36f8aeeb3651f2330a05514e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 854b4d0df61bbbc15530f9afa978ee1a5bd75349024f837fb883aad059a7e7cc
MD5 e39d0d68b2e2a7f7ae327b67ca058598
BLAKE2b-256 876072de531eee3e09ad7067868c8437c4dd6b17fd0da993589fc7d118e4b459

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1c97775a6d47ef392e9d76bb6cd3c5e9520d122d5fc5b7e9f11c82738df63985
MD5 b5f966b4e071fa557efdab7549f9bbac
BLAKE2b-256 770beb240a2a4e421a7237da44d8a468432cf865acda3d81d517927a049bb16b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d90b17b6c9ff341885697e18fe1328c1d9e9d3f05698911571764a583ed357db
MD5 a5e83dcdebe736c594b1469abc23347b
BLAKE2b-256 dbf4ae7628fe6534d3cf6ab538ceb61d2a4750a340f26c19478415df37345341

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c8e1c1f09312c2fb99ee4b63b3760b13abfd400a8f5088a2450c430d6f8f2b80
MD5 6690b9d91146ab18c0cc7955ec1730ba
BLAKE2b-256 091d40a8c1b3e4c36ebc9da893948c716930eb752c0c315e7015286e0928a006

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84e3db291da9c212af7de5b8b2a967ab8acb99c431030c0ec5582a42831af1cc
MD5 503f6733d6cb50274ff7a34e8b1a90e3
BLAKE2b-256 8b41c714157b678489c7313f26ac440d454d68403b9507dd0b60534c17522912

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6725c58b3fd215a7f93853d037c0e05d862399d8c00734765dbee3bbfc341f88
MD5 ffe0f0152e55d6ad15d401a724e89917
BLAKE2b-256 f190290ddcdd0e82e9e7ba8633f74c826674d7770051da7020c7af57c8373c44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 089921b0d12b0195eefffe18235fe7414b6829b352bc617761f5472791c34e23
MD5 cfaff395f41612510cd8c8cf1d4f52bf
BLAKE2b-256 a43130c0c711776c92771075cfe9077da346351a00459ba06d9fc56d9d02d12d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bd483a88eb7cb566103676ea61da8798ddc2f276d103ca118262bbc01ce8bf8a
MD5 c03d73a1e7206ba862b85ab3cb708ed5
BLAKE2b-256 f2b30eb84f9e8401acfcba51233e906c29d26597ff8648c4be9ef17cfe865db2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 14ebb54480a715848dcb0545083063b17f3cff63014529dfe60be0d2514efc4b
MD5 f3d9028475de31fd4a0462ce52ecf778
BLAKE2b-256 f5723f05a122da2c653b3f32d7e8dc9d524d4cce174e01b4a54e4914a9a8ee31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6266651d2dbe7e2e5daf7bde30492c2c4f48a1290093f065410c970c0e298631
MD5 00882564346e2cf41c86771bafbf3712
BLAKE2b-256 ab3320c7602998a4e5e73215c4b918e26573dd4e2b08af8555a217314b9f9d34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a066bcfc783f3c1f91759601d984df8de134c6cfa431979f1c47018331d0aba7
MD5 2262eaf7b1b4abe0ace8aefda596cad7
BLAKE2b-256 3c7c5498cdf65b8b5c803c29d3c22b541fb2e6869fc83d045bb19c5f47b7958d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 61b7eb30d1e5ee39e7e45e7757d0cf57d3b1d8ca916a3637dd5b529cdbd0c6ce
MD5 aaa9e42678e1fb44f81e7938af29d699
BLAKE2b-256 3a0e90450fa4921f98eed0614d959ec4a2a4dca74b603ec4ab443474e2839323

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4099c9b9bc2fa7b1d11fc542116a5e2f7cd3097c86527028f0020ea5f2b4fbe1
MD5 91b9cf63c6d8476bcbe3c1e80085e250
BLAKE2b-256 1ae2b00cef8cf077dd7664d61db9cf9b75e2f5bee1499f73cbe1011814f9d02f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0f96c75047b38067ee5167e03d63d265b7227dde09ae7211d36be6835ef0d0e3
MD5 029a7b134de2b87e12cc189999912f91
BLAKE2b-256 948315f5c7034d6852b0d99e27aeae34dd67f0eaad338465ef4d03448fb9ea52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12d317f507b87517b1cb5e2c312389d7500637856c160ff2ec9e8c905cad0380
MD5 c3d9577917f87826ed70b929783b5372
BLAKE2b-256 05a2fdff4b2b469a277f40c26bd9324fc315bfb6e4f51990c6e69948f98da85d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 da8b13f0b803dae6da263f2aa22ebd9103058cd4622dbc0c5faa5821eae0124f
MD5 1686338205e080bbf85019b4e5149520
BLAKE2b-256 19c3db271a4c6c496bd809aaa701856d824485675868a98225b37c7eb4936d7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7bfe4a1114540d652f1e1f4084803e027b7f5be67b126c755d8e4b19a89334ba
MD5 20f6f7f5e95fdc0f09903700377c08b1
BLAKE2b-256 4e6a7f5ebb70e8c16f4b09cc170a4e6ecd1f179253104856adffd59af42d0e4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1ad91c6cf036bf82194e147abbfaa8be730f4149c69c24a8cab37f1e8317c237
MD5 2d036d4cecb1e5fa18537cb4aa960e4b
BLAKE2b-256 4d4b5441f4db8dd9e348ba8ae64129ca6a57365a00c33d6cc7bd88edf54f8aee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 983d33a773e288f784cb6c437b57dd8501ccd4f2b1cd2a2a4e8cd60b46d062e8
MD5 1453d62fd22402cc7cd1b10eca50906d
BLAKE2b-256 abd566608fdd11e2575359215cf48b974b8669a4b32a8c62992564d0d6c6e402

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 629e7944b5a2d91e44267db0321b839984dd9830869a4443c6c5553d77fd9623
MD5 0c369bb50ab08a2c557a31ea32dbe421
BLAKE2b-256 ab9f9d96f2c46712acb0221e311cf3bc745dc513ec2edaacd021a06fe8f41934

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6ecc473151b9f624584b7bdf6d5ca0c4014f07519aa6658ba9807e3d3d8718b
MD5 04a55b64c82985a31c16591517a87f5d
BLAKE2b-256 48cf309b49be685a4d87b9a6e7041512c57b9b97fdcef3d94b92866cdfeaefa7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf8d32dd7fa0f76de16ea5de631853c6e12ffe215280062f05acfff04bec6b31
MD5 5febe77c69388f5479ae91fae70f0413
BLAKE2b-256 e02691223e7485b8003843bf58e5bdfbf9bc97cd06c702ca79a2023408213f0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 834597243e9f2383f71466a8f51366ac89b253e5eafc20c0d2d83efe50f98635
MD5 3f4b8a3468c75b10d634748b2acbb0b8
BLAKE2b-256 149889d907ad8e346e098ee2141e05e88e00cde2184d9c320b3f446184e4a8ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb3be70cdf5b234bee6ef5f412c7fc854effd50db1fa4baed9f241e2c2ad8855
MD5 ea4a00ac1fb7d73ae0b89a351537bb9e
BLAKE2b-256 503811d605ffbe144cc182837f0bbfd5fdafa64d77d737307db5f19f846893c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9280930132370f6308dd86cab16882c8f975a9a02125293501de2df3b0c19a04
MD5 0e07a2013351e7020e5ff6a6d1be9daf
BLAKE2b-256 9d7991db8c43ce8ffdcc45a24e2b816f853f268d56eb6d171d0b9aa8e6461b83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 bb591147f827cea286a44ae03ab5848d3f6c40a2ca2805d78697c376034df543
MD5 b12a78d829a8f8fc6af017e05f01bcba
BLAKE2b-256 82f89c77bb3147acf7dad4393ef5b4b6581ad3da0eed2b52f01a725ac027aaa0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 13b49311c98f774fbd12f2989c665ba1d59395270e6fba5a82d3db922498e185
MD5 dd3ee262435a81d54b7d0b52ccdde037
BLAKE2b-256 d8ad46672d9b8869c66f18c52ea17d121c982431f9f2fc30a760b659cce3aca2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 af2ab0fb5189af15edc315055cc4517eb8462d53cec9975e230216d117933235
MD5 d884e49c79e9e5cf977f55072f306575
BLAKE2b-256 f682f6fba74c213b404ceeda16bddd2cc1f4c4a6b9cee9552c0124066259df0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 450ca09ab06196009ab965d2774379b306b84c07215847cbd1f91db18d91b371
MD5 eb942f9a2ddb1541dea487b40158d1d7
BLAKE2b-256 0610276c3c6bda906e6d4a9c7fe216df84787b70ad95e35f1cf866d0c7fab083

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fc0e48f88c4a66f5f2f429617ceb6a74bee979998493a4894c8011f50bb5b815
MD5 7f2de2bf330c65dae85f69d7c8a8d769
BLAKE2b-256 7c3e68294f14aca461ed0b0367b95728060f82b66bba3e40e56ea310ffab0d3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d06620cd2c55919f3e106030d8ae47ca5c481247974d71fd25746c93d940175
MD5 12c7a882fdba470c2558821aaaefedd5
BLAKE2b-256 d2b9b07ae7aca8c494681166d6325e23f5c23f1d894da04ea97ee87381377c5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8a1e31bd4eb1e28128035648394699c5ea98f5aea9af4ebb4a213393e91d4e6c
MD5 9257791fec2b16cffe690c8e1486f1a3
BLAKE2b-256 5f16bc2e72eeaebba24a1d376546a549241baa8cf319378316aeb64df72e9dba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 688cfee1d8c9d360dad84bb47d20ca4a6e8ed3a64192358a5bb053339cecd316
MD5 5db758cb116a57fd99ec270683f3b7a7
BLAKE2b-256 a78141c901a4e0466cd2452fde411ebc4dbf9d5a733476b34c32dc4510281977

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 08bef67529d59f6221b43b3598f1fb285f16b888306951d807320970e7b53b76
MD5 09d0ad253a8ab2aca4da611c9e10da70
BLAKE2b-256 1e4b90cbacab18f5034e2b78b143320602d0ee6a2a3578dcd4491cbe8ca2f574

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8e5acc268b6b45f9e3819af01aebdcefa8db10770b76d7cf1e27a181d08af3e
MD5 9fb28c121c2bb00d7465e6619f2fcb11
BLAKE2b-256 51e12060d158b14a5695e4e548ad46e1e9921146d6235db2b7dd25afe87ed6f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3c3b2f197361f9b2a90d0b6b52b065419c4ee5ea2cbd64436e5001e98d5816d2
MD5 12bac4b2ad0c213a28714ea4285ae486
BLAKE2b-256 39207fd4dfa1aa2606f20c1c2929dda0fb69fa97fdc383e5287ddb8bc2b63880

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 338ee0010b1d091ecf9d22370b6631a4726b36b07f2074daa755eb271502a5d0
MD5 ce598efedc10bb7b6cdc15e3b07b989a
BLAKE2b-256 ca7059d1155f428dcf4934c0853abc315202e9e3402994259a25c1990c716288

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 149a4c4f6c7443944391d8dd36fae8fdc9acedbc77457f800ae1ab9d70ed7179
MD5 6194c4dc8203d8365abc1c64d43705a1
BLAKE2b-256 b282a0f45f32311134f3fe7fd72ae6eaa99b74985e501ff5d59dbf42eb336ca5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfd717ad2a1ecb233ca3f9b09d6d87a0f84e47b635dcf01b47600905352249d6
MD5 825d442e433a9a3efc444f4001d4ef10
BLAKE2b-256 fa963b0c3e4098d0c7a7df69f56e4c206ab05db5b7a11a9c4d8fd99f2234ca5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3f2d6d3d411d4fc1921af83ba624bcc430660a6b52e18a0d3fac6477e2213b77
MD5 df8942c85a2f47166978c6b4721c2e74
BLAKE2b-256 b151332b3707295404bf73ab005622325df1468fcc490b0ffa235f76c1d4e7d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1e15b303ff2db744f8d9f19da5021bdb5418af1e8ce1854c6e0459cb38b7b313
MD5 32eb7437362ea17c779bef36df918547
BLAKE2b-256 12d6f90d6d90d38fb745023809612d6e9a1e6cee5b58d0013730d05c79abe834

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 48cdf272303923ed1584289866512e703bab10decd9aa0e8f23fdb9460c6c979
MD5 58c1eb895a99295c8da5d6def73cb214
BLAKE2b-256 3a54b0456fe403baca77905a19cf18a3132d6fd786e233303cd13739dbd72cca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 46941120d30658bbb160b5f63b35c9e498a97ac0f4dbc23123db3be1960372cd
MD5 e724f667feadbaa3fd0891cf0ddfd748
BLAKE2b-256 b04fb54371a4431a4273d7441f36ba38d01a8265eb2e5c551285e33f21bb1396

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 438b7a7430833c4a0610fd2225dea8ff20dba2c4823257944a1afdd5b36ae71d
MD5 7f58c88f795a16ffeb786f33b753274b
BLAKE2b-256 8a9821bf9b224f3691cd09efc182c7f57cb1485d7159e8f126233d3a699ea41f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 651bfdbd910ce2d82d8b4d4c4985737864cec5f85f723ca26b3dae076a0eb175
MD5 d12fef88c8ca499d77ee873ef55af939
BLAKE2b-256 42d2d5b0450136d525346d5b2ba6d6d36948c50a76c6b98fe068a8a5aa6c04c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eff8da7ce4a507db2f855e44131da70f98df8fddde6a4b4d894a0613aad06295
MD5 b9bda9de0eff40a182dc48ed3e710a95
BLAKE2b-256 5aafbb401ace0f70c8a0a635a5d245c075a442545ccfb85f68da8552d2556a04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.15-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a327dbb8e4df3d6cf8aaa00c074d341bd78b166c1f00d4fc6adf9455f62ae2b6
MD5 668d6537a824abce2de13ab8a3ef9986
BLAKE2b-256 9080ce66653c4af3ea35ba5acfbbab6bdb9e48120d5c68ce43e095b888475498

See more details on using hashes here.

Provenance

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