Skip to main content

MLPerf Inference LoadGen python bindings

Project description

Overview {#mainpage}

Introduction

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

Integration Example and Flow

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

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

Useful Links

Scope of the LoadGen's Responsibilities

In Scope

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

Out of Scope

The LoadGen is:

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

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

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

Submission Considerations

Upstream all local modifications

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

Choose your TestSettings carefully!

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

Responsibilities of a LoadGen User

Implement the Interfaces

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

Assess Accuracy

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

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

LoadGen over the Network

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

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

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

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

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

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

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

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

QDL details

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

QDL Query issue and response over the network

The QDL gets the queries from the LoadGen through

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

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

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

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

QDL Additional Methods

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

const std::string& Name();

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

void FlushQueries();

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

Example

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

Project details


Download files

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

Source Distribution

mlcommons_loadgen-4.1.29.tar.gz (78.1 kB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-4.1.29-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (518.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13 macOS 11.0+ ARM64

mlcommons_loadgen-4.1.29-cp313-cp313-macosx_10_13_x86_64.whl (479.9 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

mlcommons_loadgen-4.1.29-cp312-cp312-macosx_10_13_x86_64.whl (479.9 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.29-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.29-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

mlcommons_loadgen-4.1.29-cp310-cp310-macosx_11_0_arm64.whl (461.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

mlcommons_loadgen-4.1.29-cp310-cp310-macosx_10_9_x86_64.whl (474.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.29-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-4.1.29-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (517.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

mlcommons_loadgen-4.1.29-cp39-cp39-macosx_11_0_arm64.whl (461.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

mlcommons_loadgen-4.1.29-cp39-cp39-macosx_10_9_x86_64.whl (474.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.29-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

mlcommons_loadgen-4.1.29-cp38-cp38-macosx_10_9_x86_64.whl (474.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

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

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

mlcommons_loadgen-4.1.29-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (518.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for mlcommons_loadgen-4.1.29.tar.gz
Algorithm Hash digest
SHA256 99d404bbaa6dc3106db608a1c28b6fdcb317b12994aac8a85d81a13bb644802a
MD5 e88c1bc8ed48ecd4b53db87a74cdecf0
BLAKE2b-256 f56ec93ae7a01279e528a7954964e1cb920dc9f6e7c23dc0678e894211ce6cc2

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b1413895347d3f1722659132c8c0d95717a135190d824eaa5ec326d9f8a84878
MD5 72b7f8f9973cff7ca27a737df0a7906a
BLAKE2b-256 61c3209094de02cfae5698cde758db186e9ca873adcbf56e00e6cff9f5d73e36

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0775e16a718372c1117ede9551f6cad12a34bdc816a14d01e07d7e8f4dc80c33
MD5 de82661fd37de360cfa9202e1851fd15
BLAKE2b-256 bc68db223e8a9344947b6061f6dfbe17b582cd0c37c5773a716a67f78094919c

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c1886b09eeb2db6302038649a7cfee933cc62a6cdec80f7a70e237cede2054e
MD5 51f623280e4fb7de9d2b09798a176e06
BLAKE2b-256 846d29643ba358fd4768ca91fa429143168acdd671ec5033e57d11e25fc5e13c

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 89a85d111f4a5e992a3172f8f402c11064a0ea76842a52028b4715575f98966c
MD5 34a7654d6d85f98802ef7deae3213620
BLAKE2b-256 55984f98d8db5e2d8acc8de6abb0aeda7abeedee33dc20a2367f4b24ee298342

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4baf2ba40f0418b3a852c828733d50a69e174271192ad934aa1d032dbc76db79
MD5 7404c34a56fa80ee0e72f23e65e76154
BLAKE2b-256 375fc1d0a872a5ac226b54f98e70c4a354292adcc38d5876cfb9fd325a19c47d

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 525be14d6555379ac4e5247654114edca063dc750eb29462ce04d2e15df7f30c
MD5 e63b74188a567ab975911fcfd503e6b0
BLAKE2b-256 4457701e2402df27c6b409b4a9e6892b3ba96aa3da4df6f028a2cee164116053

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40abb34511342907cb0889534b068db8007b7033ff8b00ae59053bad4d67e2ed
MD5 389e024c766c26920607732cac9eee10
BLAKE2b-256 e410318b3f3f84101bf35399729dbf8597a26f4e34abbabef5e388d966633ebc

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.29-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f9c0210c0bc52cf7ba9e72b7aca4febdebfaf6afb48c09e5049ce7c3b4846d82
MD5 ac7b52ee92df09dad720c16eb7bebfb7
BLAKE2b-256 cb9b80537c53e3a922cb2719663cbb90159e8b9cf6b8aa646d1df6ba3f3d9be7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.29-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b63d51bebf2164adfb9bc18a4ed022e0fe1ec78a0c05d41a84366ed0a0da7395
MD5 0320195c7be00590c22278fa689b75b8
BLAKE2b-256 9681485a9b14219dce406a27a95da7fb4049b00f7ed77e8acaed68bcafc44006

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 43141a7bb95fd58c403f23459dd37ace6c80725e46a7d90533c490efa498b751
MD5 24225050bffac95ef15b67b32f111a63
BLAKE2b-256 a6ca17f3b58ba67f9856a6efd0e051b2bf110a76e2fd8ae91abc0f12b68f2ecb

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 086431b5b4403c20711f7aed4649d4f55d1bd8823bcdb60f1c2f21718015cf17
MD5 9f05bef27a343cf0e71c3762a9781b99
BLAKE2b-256 b1c7c4a6dda7b532df8e6766efc8fa9f81edbf6e59f8b83cc43d5e3a89e4fe6b

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4265d11db5d2509b733d768d0a30ce1fa4152efe14e71fc553b1722b49877ab2
MD5 0a11c0454122c8a2cf1671d32f1910f3
BLAKE2b-256 1e51150d94a69ccea6983a2b652b68edcb36cff004aaf11847402e912d3dc557

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ecc5cd72089f91a814bc8ad11d2692a21f514889c12340eceea7da1bfb9e0f1e
MD5 33711eb7d78a87ed1ef5f3fab966605b
BLAKE2b-256 a85741e3da4e88620f0faf5d5d49f60fdc63bd6b0729a882e3a904e0f452213a

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 61d21bb027af044d17f3f5ec9f3797c93a871a0f4d94087c0ce8320a0b0f3b8b
MD5 903635f044195eb93564d5a0c8c5a6e6
BLAKE2b-256 da000aada0732ffff3f8f11a7050cd05ae8a3f19d9872e5d62d50b9008aa0daa

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7b8773595a0d7f82e37c97bde4b90a65b6e01ee73bdbf20b97aa056050f9f00
MD5 d6a5b0780cd077135534bfd337cf8433
BLAKE2b-256 6dafdd22043cec40c509136fb91d6306b056e401d5a1a0446a85355c10e25f74

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.29-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 377c9deb9d357f5f000a0d7cfdaf0c0d1f472e45c1df1d902d07274431f1b894
MD5 8088633f5adef57b370ca9a05cd53a28
BLAKE2b-256 0885df54284cb797892414200b9eac15b5dff35f5b30d4d40a5542acacd9760a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.29-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3401bf031d56ed386e946d812baa1a2c8a9449b2f28d5ec188306eaef405dd77
MD5 ff617c7ebe7ca82415b61e1d54a6db04
BLAKE2b-256 4b78e1782d9f78b6bcfbc6c4a96408386b4b19db631adb0568a6becbb4573a55

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d9658d3223cbc7fad0610c9509990d5be6ecddeb10a94da14de747f243208a82
MD5 10b19c90ce4b6fd955ae7a9b4eba80ed
BLAKE2b-256 ecc5feb6cf17467aa75c8c272e356ac64065f8d090cc70c46cd49699ce7c65f9

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d6d3ee607685102e9013962a2a76ddeff9dc067c3aa8b5ccb6756f5ce863bd63
MD5 a3f4464f4d07b81103087ab9c7b3ed3c
BLAKE2b-256 608df35e1b165ff880f75e11b2b3f36a43e698e237f593a97f3e15e84bb37098

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5743775df1f2e9eecab1ca67f6a6dd7bb4d16d2e87d6ce5e7d73dd8939440206
MD5 3632b3c72018449d28815b22f4a6b523
BLAKE2b-256 29f30ed295b4c6eb1e1f6e8c0a8335a311a9b2ab14914a6922fbf4219eca905e

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54a7ed60ff19ea7574c6628a1df33cf6b1e7c442f4d19f4a04e4f9e958d03330
MD5 f2c850f50de0ef5eb24b0714fa099b90
BLAKE2b-256 e8361cd920359aea798b9a5219e7b9110e3a2f0c88a7cf0a21f27e52d16eef8a

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7fa3cdc2dd993a1e2bf99d9718adc05cc4c1ce3a2a934259a53f63fd5b86d6c2
MD5 e125c93815ea37a94c6d2ee77bf57a72
BLAKE2b-256 dbb3e2b1e12f9d6d9a8e5ce089c66fdc23ca7e982787fa01f10332fb4dc4ce78

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da4577c46c6ada0ae688e11502dc1560e02d9c9b7c4426c7f19443fff79b8691
MD5 4d6084d3245a09770d4a0c5683ba7041
BLAKE2b-256 bc30421b75ed40cf238a9706f7674f4edb318bde30d7ad8fc16f8a6f7f43d25a

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.29-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 27b54107bef0b6ad2c7e965eac8813c2f1baea4fa47359e83e324f6696f953cd
MD5 9718b1d077db6f7c8c8b7d4ad89a9182
BLAKE2b-256 2b332fff85a779bd81b50b2f80f7e10ccc64df34186a3e0ece048961a0340a18

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.29-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9dcca6afcddcf59c9da89ab68f4b7b4523a2f05194933bdc27d655f792434281
MD5 cf157e1e00504bf59b115ebeb9bcbd52
BLAKE2b-256 54f59b9243f47663a3169371da071821d3198ada039fe345038981a6458ea46f

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8a6309d1d339c2aa1121de30f99af5e9ea5f2e627d09c585215180ab196c8e0b
MD5 8ca61fafbd22bf37b61e0794bf489d57
BLAKE2b-256 dcb2f665c5841755b8dfb6e00597fbcca93dba328701f844c105d40432276876

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e100393d0eb76c925ec581a44f30583f53ba4c6253ab2306e68f693544c1f594
MD5 5e392ca68d5785ebfd59ce3717c3c3bb
BLAKE2b-256 7d3ae7b848c198e3aec9248a28c557d08aa9fe13e97beb185a14ebe99b4b6ede

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 838d97213a4fd485a3cdbba88dd87c78595c3d80779054e67aef77b18239ac34
MD5 c890fa2aab343c11bd55c36c5973b53d
BLAKE2b-256 8677ec754961d57d8aa000dfa8a41b679dd0f295d7bf9121515660166c5ac42d

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3cd8696a86bc502a9052854f0102cb6f278f852849e0b609a85fa93f1d6fdcc
MD5 549bcf3efc1ad440d1d45801e68ba3c7
BLAKE2b-256 06b2fda3a4f7653b49b241e225b9a1bd8d17e1cb536f611bc6ee6066396207c9

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aadf8eb2ddb11e2998e794ca2945e733d12a0c2f6847ff865c01874eaac67ce2
MD5 9e4925a70099a836dbad7f85cec3a39b
BLAKE2b-256 5996492a81bd85a4798ad05cf621f91d5b02076ba3c78586c8570271676604f7

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c131c96f736d85f66ab669e7083403bc641ac9e529148ce188487e1de3488821
MD5 eee9af0eae7925246e122eac2993e490
BLAKE2b-256 bfeb9fbddb5beb0965dcdfadb1b471c8678df2ea9696a9a08be8c6d9d6d7bc83

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.29-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 de025b65f14cd55ed227070e85e782e9c019e4e9fb6c594fdeec4181c1b915bd
MD5 789213acfc59a918bd6a8c03e7818743
BLAKE2b-256 df7f0505e5eb6e7c32f1829435267b593e932233dc3e08a02a8679383f9a04b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.29-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d521a0701169b667b48a690454c13ac96b81baff350f7baa0d1f08b8d6e44661
MD5 37b27faa7098c65d5c4e2bf8b1d0941d
BLAKE2b-256 dbcdba81c27bd1c896c8189dafe05ca1f1fd2eddb8c239f712ac3fe5015b893c

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 91e2151692d71020a3791c86bffdd5f8dd84c07a8e7cc722a0b124f1c47a71a1
MD5 137d2f39c0fe5c4937679489ab1629aa
BLAKE2b-256 23d795872dc1e1374f9c88b5d2af3844a07f64aed6625ea8f7999d4fc6785a2a

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1b494b602cc685b218c21a1e01206fba3c7bc1ddf9303113c6526b0075bb77d
MD5 cee3f5fa37e0a84d34a5da308915f483
BLAKE2b-256 61f4472f60e50b7fcf76a00dacbd71ddd21e5e137f03705ed619b103e6f10fee

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 de16e5f9421bd2113124a6be108529428340ae71368fc15b4ba802d1b82d3821
MD5 0b1486316f1fdecb0d7afdf7ab915966
BLAKE2b-256 52e277e2787a3526239749715ef1655f2444b2c435f84ddef308db15e19f0040

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d6ffd5ae1007f50a51eee94d12b2248388e1b0e026b3d2a49d46a78e5de5598
MD5 e3707c2ee9dc51591ee906a349a8b608
BLAKE2b-256 420df4e80763618f5b5e9dadbb6e8279159df43fe2d2136c13e5367d55253af7

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3679b95c7ca46d1a103e9cbbb9ef53054c5ce53dc4f521db84fc9d8c90235553
MD5 c500ba8e62bce364e930488bb0720975
BLAKE2b-256 f837b04b2716cd68b9ecc2ac2bac87a4584508155e15d3e9ad51be83ec204d4a

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a53978833273dbf0484b5da73fa09cde4052e2d42b6777528895c27b43af4893
MD5 4609403d1204c4ab2d467c58594eec67
BLAKE2b-256 c5cf239c2f910f84720b7e49a7467fb777b82b327a9b8be76c412537513a99a1

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.29-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 304d70996c9a20c7c349a9a71a7a250bc30ea40d8c653fe9592f04c5cc6f4e8e
MD5 02d1aba45304194b5ff868907d039ad6
BLAKE2b-256 94679a64bdbe584b91c42c68f0e2768836f130c66876d1313b1ff86c6a02aeda

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.29-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0bc30d58f4ac686d58f9bb3bb89cf4dec189fbe30440de45200232874558894f
MD5 0f029f25953f93d1cb5c69f3749af69d
BLAKE2b-256 fed2d089d3ab60f2f7e045860c447c9a27a209676f9ebc61c826b75fb1b39cf9

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5f5b6d4c44e9ff5c97bcb0eae5de0917cd7328cf6d30547122cc9d245a03fcb8
MD5 b71a5516f5cf89906c93a6760149bac1
BLAKE2b-256 ae4173a4174801d52302c0e1932f306a630f0b3143e51a3586904892fcb3b861

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7499c2ac7d5943ae1543f1679f5446058d81c19d6c514681a69dc8a04a037eb7
MD5 33f9dac03591642a7b0469cec6c69917
BLAKE2b-256 b920dd40f25db978fe6914460465d477918765991065138fe22744173fb57307

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ad539d384338edcf883b0e480986cfebf1dde1afd6fa4ebb5b87c72a69903271
MD5 e26a640b025935979bc96aa50e033362
BLAKE2b-256 4913d80bdf2698b2343e6d15946a492bf8c47231ba14200fb4c6cf7417369bbf

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 869abf3bff18610ad79d4010fbcda67adde1ba1c86a21fe5705879a3128974d6
MD5 6bbba74be6c3f60cb1cee8527df757b9
BLAKE2b-256 d55327c3621d6ffa3312b12df7ea44a3234bad936f58a41bc8cc0c9f0adee1fa

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b4f900b93de4f7f5bf02b51dee3f0b693769250ff71f11a7fc38870aa6df964e
MD5 02d274eb9b6fa97f45e1f69396c74a4f
BLAKE2b-256 326902b8c01e6c69ece805f2ace1edd0b4cc5f43c907f71f14b9ce9e932f797b

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93fd2f47ca812a98327609ef7afa3e433bd1c0d99abcd614adc0effc8ef8be0f
MD5 dd74f88f6f1339569f5e56920e3e52a8
BLAKE2b-256 abe62b0d063ecf65f19bf155106a9f16d9d7c1709b05ffcf90789ccf9ead2dcc

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.29-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 135d7bf1fd2e37f91485590d25f6ca9232e735da30d5c923442ca51479543a12
MD5 7ce7001b89a694830f63ec6fd9b43526
BLAKE2b-256 09b55954c754b5f9e3fc197eeb2142b2431d57e935c07f009d2bfb6830a45f44

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.29-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e566937d5e40b2b2858149db5a3fce19c6f79b7fd22d31bf194739b30d3393b9
MD5 996d2ca692b060089d5943dda8b983b9
BLAKE2b-256 aaf43dec56618f679a4edb8bfd5ca7bf9f5ff4199de7d681270a625ff8c324f3

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d21bf798f4392e0e386a345d963965ec2a38e70ddfae13aa07e215c6d3465362
MD5 41a8b83c716178f1691dfcbc895c0aab
BLAKE2b-256 e90bf6723c0b89820c2d27f23401dd53559cdb8cd53548a2cb6567d5b68b382a

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5dccbd69e35c828bbed41c5d8c78af5084cd62c69ff39c8572e29e7673f7dbac
MD5 dc664adc08ed8b2fa67a94396fa53a2c
BLAKE2b-256 f526e1834cb60164f5eb468d664153d55a3dfba9bed9d8abb9cfaf221ec06957

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c682f140146bb094201413644df75f7882b1d6944b53f390488cdf78ac769c0f
MD5 53a1e987d0d275bc16b56f73fc811fae
BLAKE2b-256 0f0afc411cdda8fd1dd451363819b68c0e2479fc74723734641f6fda5e252d38

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3286bae35e797294b9bb032b429d4e48a5c37ce7a573cd0b490f57f64f3651d2
MD5 1c1dd18266365fa93d84f5e0d0b4246c
BLAKE2b-256 914b4bcbac5ef0ca0dc44e8a1f9f77fb5ec873cc9d752f3e95ce8aba8c5850ee

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8728da6c679837153d9242a7ecfa52ff14a386f3d88eff1728fab791c6c0c446
MD5 75b415098ae6ef488b2b23451703d161
BLAKE2b-256 904bb75a79c7086e4857b76f0d2bc29e193bd85adaf28ece0580bcbe05730783

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

File details

Details for the file mlcommons_loadgen-4.1.29-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.29-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3213ab11503d137ffc0bf4659ef4461ef1c69fc5cd4cbf066b39a3db1bb43909
MD5 03d033adab802da6b1eb1d52d4b61f91
BLAKE2b-256 485d8df5109e039934db88141476b699e380eabb6b0677814cac9b92e611bf23

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlcommons_loadgen-4.1.29-cp37-cp37m-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on mlcommons/inference

Attestations:

Supported by

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