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.2.tar.gz (78.3 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.2-cp313-cp313-win_amd64.whl (299.3 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.2-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.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (518.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.2-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.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (518.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

mlcommons_loadgen-5.0.2-cp311-cp311-win_amd64.whl (299.7 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.2-cp311-cp311-macosx_11_0_arm64.whl (463.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

mlcommons_loadgen-5.0.2-cp310-cp310-win_amd64.whl (299.2 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

mlcommons_loadgen-5.0.2-cp39-cp39-win32.whl (279.0 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

mlcommons_loadgen-5.0.2-cp39-cp39-macosx_10_9_x86_64.whl (474.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for mlcommons_loadgen-5.0.2.tar.gz
Algorithm Hash digest
SHA256 6c817e76275a8431bd23e581e6e041bd8ae075acbf98d7abfdf527ea8805743e
MD5 d88f4d5a047979ecd2012715b1b7130f
BLAKE2b-256 4e8f3b75f0f53578e29a284029a72808af2557316cb71416e1957d2e3a4f9ce9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 27e63e907adbf55fa3309151142e5d11918f16bd744e12d71d55a3c0671fead4
MD5 329b388d00f34e376f231ea0ad47794a
BLAKE2b-256 918436b880557622d8a33d0ab3f32a2d40b9edf04ce9597645c3c776bbd92569

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8a7646a37e2f9b21f50c3afed31c79746b196d8438325e0adcbb966a42b673cf
MD5 0da85af75ba231c72c08e7f36ef13f27
BLAKE2b-256 c8be695fed0e9a53c3efcc4ede699be4bc0bb72eaa2ce12c11c556513f8143fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 144f7011da41213ad1824718cfe5276de4e53fb60cc0c7a267bb147554ba5359
MD5 e90a3768ecea0a89aad00786cf3dbefe
BLAKE2b-256 55f0d8feeaf8999a4a97d9fb5609f32a4c8e9e6d390f807a8144fb4d53e55f5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 561bd5eeef387604f7a1443997d720d24a984a66f7ed78ac769d7659857feb9d
MD5 516b90b4c37f30e324453c0320fb1ab0
BLAKE2b-256 d8e320c2655c0b9ffe7b6ba16293701a0df38a860f0bd5b4ec5ddd308f9d6808

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 148749e072aaf6dfaa965d661a0872959df50ba8827031d4504ca2d36892c6f1
MD5 7dd364eb3ad528bb460e814453dcc619
BLAKE2b-256 1a6c22f839629e7674adfc37a80e625096b49fbd9917466207fb40c18b3ba73e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb2308db5ec4804d105f06202339b6a754ef1d70170988b9ca64aa83f9e6383c
MD5 b28850112bb243ec019b589b2b6dfbac
BLAKE2b-256 fde92548332cb8d34fe449ea40d7c1a6591bc88c4038d91ba6f9b40a6d866ec6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cab7fb660864fd5e365dd333bf092c0afb4018ad26d5b4b86fcda0506c971aaa
MD5 83416c6e0a1f244d6088653fe11a11aa
BLAKE2b-256 c7e727b5f6df494d032e7ee178d9901a9bc9519c836f7a41d330af383caeba2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b16670522c00e346168daf844ca5e4ac607be1f2ee4ba8be231be70cc9d4c60a
MD5 32cc94c15489b78c13ee4841316b1c2c
BLAKE2b-256 6e93b1fc7ae059b144829e48e7f71b79e9cc73b47116b9e01b389db76d128c47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4ff55c72bc9f8a724074f952510982845c07e374beeb95f51495f69bc500fd00
MD5 9eff275ec78ecd0c090ed44f768e78bb
BLAKE2b-256 92b7d50a4c6a0bf6223bc2ae971f316feea4530aefd32ecdc1e75460d4e97aad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 13b5ec0a7e23dd001acbce1beb638f265ce373d2a2ca5859de2fcbc1294f7ab3
MD5 c364d3ae2d01d57b700907f4b90ca165
BLAKE2b-256 eef63e4ac522b5fbbc64618092c9dce988a86a62da073f3165f4a8a41dba9e85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e5a6748d2e864fcd700ab2ed78a709e168506976e6a7044c7e55ac6abccd47e
MD5 c057646f84a18c8a296b5dd52f58b25a
BLAKE2b-256 79aad97c00a850b4f1c8455bdd74f18c4433ef773404877fb879e41784f3d67e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a913875fbe681ef761fd06697ae39555db62828cbcef50e5dd00f4bf3631d00
MD5 8d8cb65733cdbc560fb96e39944dee7d
BLAKE2b-256 0d322576bc7818af31085431fea713b61f626914d151d83496efddb8cee37012

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 913ec30acb692a7a073f890851d2a31fabe2708499b665e93dff4de2be462816
MD5 3a7fb0bb66909297dbdc71763bfcc351
BLAKE2b-256 216ea62de233363514ca19545aba886290b26b338d25ca9e3c63bbb17d07cb7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b6993ee53ea83f209a7a43e40146f9730efb25f045221c628d70f593d552c9fa
MD5 e22eeac5e0379fff6009c18222b762b3
BLAKE2b-256 9d46bcb5148c302cf7571a430ad4e8a42b7a5b07400b6457c2d49e92ef29830e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6537a8283130e1844b9bab15337f55bb6cd370665c71feb8efe6550f4550666
MD5 4b649d3370c596a3889746c6004f28fc
BLAKE2b-256 0138c13aebf1ac02b5cba86aee0e5a73426e1b787f539c75de738fae378923d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b70408d9a2d743031d650c21dd3860afed6a655b3e7a6169e9e0f795acd3ec88
MD5 cd565448c9dfb332c3fc88b115ecb204
BLAKE2b-256 1babc7815bd806d4639622ca83c81a08668d337c6a929219ec4abbb60aa5d601

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4cc4d252ebbdad029992485529de1c292b0a472c724dfb5ba79867f0b68c0abe
MD5 f3a27ba1df7b96d37a8edfaaa63a6b9e
BLAKE2b-256 ae76d14e8a89e2ad9e95fd55b780f6a717f6d3a24ec5b72ebeeeebf57589e639

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 677ba00f865b5e596129ba2e7f5b759e36aae8a90a955d013ea219b6afa08f8e
MD5 b7ce9b4a61731838c992db0349590a21
BLAKE2b-256 7249a756785b51fccd5687f5f4ee1835ff35bed20cfc65ca7cb24687ab8e1ebd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3e9f504732c1950329af4ee21e3d432691d701d90c5ac22d981e3320aeb3b16
MD5 5fef042615c3d6da1ce6157a007e0116
BLAKE2b-256 a55ccd6b3e4196420c516b097015abde0b775a0aa2aba31ddb927d1de24b01e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c77e95f017c4669932aee806a08441f7258ee142f7c8fd0ef24360258cbe1e1b
MD5 c86190d6646ccaf3c8217649375af710
BLAKE2b-256 bceb7a26dad1e869e72897ec5c3105f7245f9a346872a5597fcdb1fa5033f4b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 682ca42476723965615f6f461c6dad45dbbd2d012761e41303ebb14817a3f393
MD5 58420cf2fe77c545858f2c57b96c8dbf
BLAKE2b-256 03209db7baad2c83851607b9228510707d663c0b5f3a4c06ef7d6f925e41122a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 88a6fa3f189fafdc13661238af6da4ae35f3a3299f063aa17149e03ef41e4d4e
MD5 f18f08c6efeb66e374f4162daa18fb99
BLAKE2b-256 db24e4dd68e54eb0ae4332206852a1674647a4f5df9b5ef2b7d85a39a9a916bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25c20a55928c596c6678049588ddc91cd2e2629d722cb144c6f97368a673cefe
MD5 880b46a13250fc067c76c2e01f3a156e
BLAKE2b-256 6f215368c8854bd75988fa753c5c98bf61a1348d21f7e6fc4ae8244a354c9853

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a8c438499ba420dc6322c8aff5c58d2da94e67bf95f93eceb3d52f91141ba76b
MD5 70c6eefc2e9fbd32976efacb033d1bf7
BLAKE2b-256 f4d8608c893d5115673817c489dd237e4ab90089dbc218b1a3a2f4a6da7872bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4e27b19337acc1266fe3a2661f7815bb2614dcdc5d3943d5bd37c9602922496b
MD5 02841ba7d4494dab45cbdc3dac49b698
BLAKE2b-256 23a9bc85f53f0284f4fec2de4b956acadbdfa3ac71ced9120537d806fe973866

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7c874fbfda3e784231e8ce126981f2941c1fbdf96dcf931cbb369b6d5ff3fa5e
MD5 ead1aca87a668e8a77b2de5333895525
BLAKE2b-256 a5468478fd91a971ee3fd1fedc21b1c300fcb48f071b4c0095532f0e07fe7eac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8db68bb52a9f4d4db7f16e011dd4e54bb5b4b310fe02423faddc00f3386fd240
MD5 e3f0e4f45bc46f9d33f91545a56e12dd
BLAKE2b-256 f8801d4e6507be4bcb9ad2ec60f96e688aa18acf54e71f0c83fcda1448fb56eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cd64a1944432cf40b1fe165e9fc31f9880fefe8886fcb823c1a962e16c8968b5
MD5 2ddcd2fb1c043625d8c3ae0c3ec1b0f0
BLAKE2b-256 05b796986c700b4196f965678406dc723f972d8377de4c7aa29ea978adda4e97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90caa59554f4bbed44cd48b2687466d5e22a73b04144fc78311368f081954201
MD5 bec0c801ba4bd9dd079f7671f6503d9d
BLAKE2b-256 406b4a5e2de9cbf8542efbbb2f024b8b1d1717e04edb7872c88545d6c424b238

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e697d0e06ecd2f2fa60418be8e85f32e1fe66269c893ac63c5d137b6a818cfee
MD5 0399d9d7689e275d8ed04b237d5385ab
BLAKE2b-256 89be8df308996e7615adc98e138419b6ee1875a5b697ce9da1c05b292675c2ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f426931a02873db1af07fe7e50fecec19a5b7a924e26d5a086627186816ef8c
MD5 b666f70f79086cb3cf952b17f22cb070
BLAKE2b-256 9e2320c97bb697d937da907d76147badac352a459442711e867f9df50e39692e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 97447ec346690f5e03cddad969d5a229a6f6e10402c1cf97a2e3eae11be976fc
MD5 c04fb4523252d7bc38ad9614c3a7397b
BLAKE2b-256 e8f94f1e65d23a51effe78ac511d65e49fcefe19bcd408e5ccd242388ab2f7dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0dc0772dc22c052a2c9efea4f25736724e8cfe738f98a8cc3cdf797b6a4e7e26
MD5 a8165560d102bd4122d28c7e4700e90a
BLAKE2b-256 a6129292b47ec76ee3512e625df94f86af0753148c2233d948ecfafa831da142

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7fa9e31e21659f632a7a632ad87569c3037337f391fc84aa07e6e4b30d9c33b7
MD5 d97bc12415cee40be0beb173c08cd5df
BLAKE2b-256 ac260dcc4bcd6f4a8cc270dedf7ef04d0f3e6a7ecef93b9ee507ca6c4578f5bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 103b0ea7d38fcb880449ba743f54018cd2d1a7c062f31ee0e925da06dcd8e5a6
MD5 3ee687f79b0b30009f92b5574e190a77
BLAKE2b-256 91ea68dd052d15b9cf44b6a187e387e8ec91cc2f40779a98ce1b7cb7fc97fc39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9ce1fbcaf5293df25412e6f8e8863c8bb17d27413da0536559d1008ba77b62ff
MD5 7dad85d8b1b7b34d4cc24f8c05f4a855
BLAKE2b-256 534e50e00fbdf6e6a43865c57a487d589c9e60c0c370a59f0c5b64345a1dcbec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2e01cd0d602654d783d5b525cf883b897ecdc14455253638d776809cf21f45e
MD5 518a8ccd1000a36a017db86c8e9d7e49
BLAKE2b-256 e11eec7e906c3e70c6c4d8debaccb48ef65c16d03d72c251c4b766294d66ed20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d4e51794465adfcb32e105d13485caf2d90bd9318f1e52f18d3278d840777855
MD5 39821e04f56ac5516f811b5ea0c1bdb3
BLAKE2b-256 2097a4e51f2dde8418e73ec5d5f90182a1731453a7b41b8a2845bbfdea462312

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 baa14700606340dba0e64808ed5af5413c418d222eaf9bccc88e491c9c594ccd
MD5 744adf9808a16e81f89843b4375ccad5
BLAKE2b-256 01363346bc2e316b4a2be00dd7f81789f96dd997e5cf9280981a12a5b1b44a94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3ba45066d84b62c1aab75f4837070aff427df407d58bfcdf491256f0518c04b7
MD5 70197381103cf21cf476eb51424bf6d4
BLAKE2b-256 fa4efa17ae70e95ef0230aff8879e1dd355e63424dcb8fcbc8a14b23b8f2ce80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7862ee9274025f93cd21bd091b6c512228d65367ee55c49b836508cead61e153
MD5 f58a0ce0b35835c450267d782850ad0d
BLAKE2b-256 83b3de6addd5d2249f9342ab874ec3d2080264d58eaef887f70b8d0c4cc9612a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 123c774a83e054987c59384d7e139f76de5bf1b419feb5bb5617e42e2eef1275
MD5 a90b01085625f99a9055636e41f7a202
BLAKE2b-256 ef6f64f33bef8ad7a7f2be4425fadd2d45706e365e93b7c71096f72ab9e12674

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64d39486944eac419ce0597e5e387ea6fd4e2dae06ea7239640e3a47f963f91c
MD5 95535effdf60baced475f351296d7aa8
BLAKE2b-256 e5c06c02f2a53e0bd66f4884cc3b489dda4fb2ce5796a28fcfda2f220c21bc16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 68d0e9fd4500d401769c75e99d231402c047bd9e9eecf3092367406b703be50c
MD5 b5d55a632a2ee681742130815c77989b
BLAKE2b-256 99d67adfeb8f176073a7846d1f3212828341497400d8395b5d8828520f48e09c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fc8aa0c3d5ed5b5d15728e8dabc3486139c37c9bb5cb0943dbdd63ca3f78e2e
MD5 efac176f7f06492a9c1d87b095c73605
BLAKE2b-256 d64255ddef822b846a359adbe11d7687f0997aaf437a9607830a32a6311fe829

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 30e7929482ee5ae892882e8af45b9fe1a217af5be02646fd8e4f17500225af23
MD5 c2567b00e15137da8767d031587627ad
BLAKE2b-256 6920789a280e5031be501a7c8595e3c07d37fe794f1864b12a071cfad09d6961

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5578bb0ce2d12d49bd90b52c3015b7531c5c8067431e67eb5e7bf1e2337385ee
MD5 b78f8ad42a6787d564c60863011c5c4b
BLAKE2b-256 dceb7539455d86f8c9f0f53b2f9d4bdc1ac96cd93a707b137230df29924e2823

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa2a9d5a1536491176c8be97181482b6452af420152ce71d1670e43ee1c356c7
MD5 36c8aa5fd519428179a606e3d2101dcb
BLAKE2b-256 d41fdbb79c45579e65453858027b3345b1b20b29608a154846c38ae0b22a7266

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 63dd9dfda7487d2e8d3965ad5e549c1e0ba713d3b1deaa8298c1074ae581ab16
MD5 e69425593684ba99bf2138f49c19ba9f
BLAKE2b-256 1878ce41b539090b44661436877bee6b5361b39cf04f516d6842eccfac109c7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 cb17441f10b5c8e03687cfebeeb0c17e38241bd9476b41246cf70ace7468ce4c
MD5 fa119cad485d1d219caf7da3c20fb988
BLAKE2b-256 714bd223ee96f559e5fd946d695a13e574232ecb701be10545fe5eb50bd7a14e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 865c2580e8823c33a22c44aa93e2eb3823bb19d95dfd6288acb3f893b4ea557b
MD5 80663dfb7b19a378348780f3e4e1d295
BLAKE2b-256 cf940b050d2fe511a7cd33b9d9cbb4ee3a8d845a6eed979b1106bffd0594fec9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c4f008fbd5ac662436a535e58231a84438e8afcc329861e160790b3341267b43
MD5 f73c551d38d35c151dad479ebe76b7f7
BLAKE2b-256 c12bd1587e2da251b1c79566bb92f642b3f496e5c4c3b94124bf9907d04a38ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95b5ea71e6d95ce3f08948d2871942c3982a9bbad24cb9eba9c221fb5b7eeb8c
MD5 527d80c5e90bd250d1975c999404c97e
BLAKE2b-256 cf1743a3783e171e7278fbd85d305318f426aba6bf287d1e5e39ede5dcbce87a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e8fe32c4442fc3cfd42c5c09ec9a6b271be2ea3b926e4b7b612bef66c34775f1
MD5 4501810ec3cb50334b028c1c11a5d910
BLAKE2b-256 0e7820349cf79b271639179b706995d3807856f392d91939aaf62607ce09b031

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b214c471f880d4df8c6a81f8c858a12dc7aea73d59c81b9ed645e02debcb6abd
MD5 b3b49c9b4efd5d54da763be5794b4e24
BLAKE2b-256 657bf9950cb3e7c966fe91f071117ca0ff03323dbc54545b28f9ee9466eb2f29

See more details on using hashes here.

Provenance

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