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.30.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-4.1.30-cp313-cp313-win_amd64.whl (299.3 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

mlcommons_loadgen-4.1.30-cp313-cp313-macosx_11_0_arm64.whl (464.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

mlcommons_loadgen-4.1.30-cp312-cp312-win_amd64.whl (299.4 kB view details)

Uploaded CPython 3.12Windows x86-64

mlcommons_loadgen-4.1.30-cp312-cp312-win32.whl (278.2 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

mlcommons_loadgen-4.1.30-cp311-cp311-win_amd64.whl (299.8 kB view details)

Uploaded CPython 3.11Windows x86-64

mlcommons_loadgen-4.1.30-cp311-cp311-win32.whl (279.6 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.30-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-4.1.30-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (518.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

mlcommons_loadgen-4.1.30-cp310-cp310-macosx_11_0_arm64.whl (461.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mlcommons_loadgen-4.1.30-cp310-cp310-macosx_10_9_x86_64.whl (474.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.30-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-4.1.30-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (517.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

mlcommons_loadgen-4.1.30-cp38-cp38-win_amd64.whl (299.2 kB view details)

Uploaded CPython 3.8Windows x86-64

mlcommons_loadgen-4.1.30-cp38-cp38-win32.whl (279.1 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

mlcommons_loadgen-4.1.30-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-4.1.30-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (516.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8macOS 11.0+ ARM64

mlcommons_loadgen-4.1.30-cp38-cp38-macosx_10_9_x86_64.whl (474.6 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

mlcommons_loadgen-4.1.30-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-4.1.30.tar.gz.

File metadata

  • Download URL: mlcommons_loadgen-4.1.30.tar.gz
  • Upload date:
  • Size: 78.3 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.30.tar.gz
Algorithm Hash digest
SHA256 98cd16fd242af729a761b57b01a832338a9b39101230de7056b2b273b6a2ff6b
MD5 783cb6809bb1d96c43188efa9ea67be5
BLAKE2b-256 de9ac0ce2c8a715867756f6a2e88e15cfc516ea1467b21db7808b40a589250f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3249ca9922f1497dcda75cabf0a5b640a8c650a2be0be88e56da3c81ce422b22
MD5 015c00e51ca054136e34411d7ebe8cd1
BLAKE2b-256 988f84be7e1f8fe644c94709770e20ad5ea6f3b32344055ec392fefff447d234

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ecdc71ef7956af5290bbff68dba18cb715d3b4959cf2b1fe9966541b72fb9dd3
MD5 43df4caf50d515b3801894b485d88c4e
BLAKE2b-256 76fb1204104501b31901fb86fb83912482349ccb8a476ddc58768a7e0a3c704c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a94a18bc3ebf95c69c1ff319bbd30cd11ebddea822fbb08029b92df92eda5ef2
MD5 80f71b0d941421545779ea2fa366293a
BLAKE2b-256 d75a5aa8765d22ae10ec519f27932fc7ea915830ff6f11af9e0b68d01897dbb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da80de4c61bee55f1a398201f1cbe0361dca0f457aa7ad708abd6fda67d8a6d0
MD5 355c13cdd06aaa55dbb6838c5e340bb5
BLAKE2b-256 a72023f9758b808cc72085a252775112500ae05bb923d7c233137f423b73984a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a1d09499c067f8885c55f6e60bb82e24dc66e5c29587bae34388c9029a4a9da
MD5 4442501da327036a97a019b7ef38f65f
BLAKE2b-256 363a35c09bbd9a1c0765d6290d938748a52b66c9383764c8ce4b100b8ccdd716

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 73033af66e3fd1353c3e560acb6a87bc4e0701121f5bb60c57268e16ce9641ed
MD5 68eb38c6d1539c80e356ca663efeb887
BLAKE2b-256 eb1781049f58df0b8b582306b06011d98778d2c76a3676a19e98d1cd89fb4a41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8dc80f0deefb9740554e6460efca95238fcda66a1fae8f97d0dc214decfa10f0
MD5 6aae5a1ded69805aa7c53ea2a2dd89e7
BLAKE2b-256 df4e752693ca3fa3515da63823c7b10c2ad3074ee1a1ca46419ca4be2184bd15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f824223d8b0ff9c4a360dbe8fa3d5a1df469f00f5e0651f30e16cc038ed0fa75
MD5 66f2abc0ce11fffd7564287b2cf14900
BLAKE2b-256 d8f65fac93094a6fb690e6646e54bf6096f2d2d5bf03de4a8b4e340a137cb284

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 98cdb0481486b25ec6b82362f9279e5bd4439e3ab627e27a5c049817aa1c536e
MD5 60fb4f1b366214f4409d7f9811f6b8f0
BLAKE2b-256 7f18984e08a8cfe265b001026d1fed196ee4bebb5302c36b52f7253156dd78ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5a1c31bb3f1defbcc0924bba8e69c8529b500b0a0f7e1c60bfaa32d5c80a1e8b
MD5 53f67e0cbea6dacfaced8e7e739c584e
BLAKE2b-256 d9e9ef4f1694637bafc34b5a08644c1d7e67d42c333325b8b67467f964539aa4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42cc3e0349d996f255cfb0dfb96d37399a733a6222568498d59101fc9abbca27
MD5 dd8c671afbe0ed0366f693cb79b0dc2b
BLAKE2b-256 3c0137a4576431120567037ead467aede524d41156e0e7b1d1bbef7d58c83162

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fa1ae9693adb4956af8afe90477fefc0e15d129610679abbe438481329ee03d6
MD5 a30cef66465f85fcec340f6dc3e470ef
BLAKE2b-256 cedcebc9006cc62a0d50d16da8ffc7b8ec4e511b9b1154d75c153764cb082496

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6cf5510c8cbf3fe50700f9e1d16e356c82b3300a896dc575d40c07de60d9af1e
MD5 f8a4594348378a52ec8863fe4f207df1
BLAKE2b-256 1873a1ec771e1fd535978cefab9133a25929c02642c93c930a811543d411b64e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d2f140a84d87c2566f139599c3d067d12c524017ed00a1e90c36d3973bef0aa5
MD5 545f7b5ffe20d3b0298bce6d4d3bcebb
BLAKE2b-256 aabe15a856e90688a5c80ce886d26105fbce4e4c3f175605358d9e1f7e587266

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2eda4024dfa2bf612e9fdddf3be77ec77362813ffcaa41c5ed064426ec8a9f80
MD5 943eb04cfc69bfd152e4371a23a1f20a
BLAKE2b-256 8a5271dd7af729e1b5e60e9f6137a72742d7a9c9103807a99ca137ea858217ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c0ad751bf3974544a34878d7f5b2bfc64d93317d90581affdb31845e653ce660
MD5 0ef29ab5e8730e3946b44f96146a0d6a
BLAKE2b-256 400b4f033969bb0bb717ae0157786e43f2468be98ef22411955973a3420dcb77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c3bd58f55c739465ee5ea6a89c1582740668bd13678f114dd23cf15ea3a88e70
MD5 0ca57c2dfc679b9c81a38a9bad944cf7
BLAKE2b-256 cfac4d79fbd2ce921a4281598f19f7630f168c1d008777f24069fc0c32a0e11f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e8e68c073dfc284d8bd71b74f1d9ae2646da1f439f4550a49860f35440bb9046
MD5 d6f63d3965ba484debb21690f2ba1bbb
BLAKE2b-256 a08299e162136f602073504c65bcfbc7733ed966d0a6de59e0a9dba5da7b8f24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f37d0ae85e061f2a169f1e97e44f6fee3fdc53b70165f512d7a595e95be2f298
MD5 accbdeaa58791998cf65a16eca8553dc
BLAKE2b-256 ac80fe78788479255c63c541374f2b3b4aa0dc555feb51a7bc743ef43738d0a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 799abbe9b06ea888ad371d44cce234ce903d1c4b20feb02eddd783c4cf273182
MD5 1824fbeaa6dd8fb18bfc5ff307dc8ae0
BLAKE2b-256 28a809f911cb4309a725adddd36d11df949d01cbc1b02bd21004e383e6fa86b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ebf2b6c841c1f4b0157fda9ba343522e36e54cde903aaf93631fdcf8b6e665fa
MD5 b1ddcbdf352008d4497792e46b0779f5
BLAKE2b-256 4c0779663b091942ec90c2666f81c776fe7fe52d4a6c0242f23460060f7fcb7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4e1d7d97ebfaf4a653ea90e3b27930b469715170357e28e6f7851b7e1cc610c9
MD5 368da95c5a1939140756869448852437
BLAKE2b-256 8a3c0a085fb1bd8a88c41fc116a92e89507bc22a35f87731702a044951bdeb42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 934daba26379a3519e16dd4a58a3be996e3048006b9ccc7f9c9a48a936cb3810
MD5 1bb149ebedf1005b7b25865f7cc1d652
BLAKE2b-256 c35d072d598f4c939135be9fe7ca4ff6e8bb8f37feec0deb8469303302d0d392

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b6d302a2efa00090283b0ce741d5d9596ed8c662fe88edb011a624b30995dc4f
MD5 45114bf5d101499d52b86a57830ac27a
BLAKE2b-256 51c39377f97c397fee3d5dd061f5badd22ce2b22ac9260df4daaf0da4bf9af4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7d5eb0cf2088348c1983f13171c3129905f3673b9cc2353d55d38c895887a7eb
MD5 2b2ec399733ac302d91bf620b391c5ee
BLAKE2b-256 7b81ee0c212cb39a75c535acfcb7f9623c3e7ec9d0e1ce2a6345650ca43e1931

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2000736739330def0b3c7ab38e7d0ba539673907f4e47920bcf49141090f0b9e
MD5 3d2e70cd067166c1413f64ff2ab5971d
BLAKE2b-256 85f5b9bfd8c6fdf76cf8f3217f7afa2ea34c96f53b566795d5eb3fb4b263fdb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 274329e59c1da14e81a8fb0ca08ea59025f99b22925299d1861c2594f46e6070
MD5 ba2711acae1a86a784bcd59d2d511551
BLAKE2b-256 74c2bd45d6af95ef651417138191b53ef58cf4f2c23f8ad64f9b5b2ca5f2c6df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 06562b96191b797ffd555751d302ef19c6a2e1b744e9181429ed23d136b11154
MD5 9f63cbd2659b66bdec027383c02dcc1a
BLAKE2b-256 73115d16d599c41223e1dc7e7b06b0bc66da01a904d9210561e8dc3758a1f3f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a8cf20220ce8893fcd54cbce7f49519a31f11235ddd1460e5e09135f2ff90aa
MD5 dfc70558ec20c268f8708ecadf901410
BLAKE2b-256 84b8a65a26e240db6d0c9ca2a58673e69e6315b7e7859877aa36d680b008fee5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 74259c3806494def9b0afbdef82ba8d687292be94d7c82a21d80827779a9db43
MD5 5e72dc783c52c0717836315c25318581
BLAKE2b-256 9053ebaed8e5d1053d50495d854ec0510377b43e405447b2b9f0b6fc35570d25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d35bd93c319e36fb859ead03ed427a06f0e8f765b7b2d08fc3701db8b8a5dd51
MD5 fe41824316bb17d0ac0eb28f0da36a37
BLAKE2b-256 5b04086283a3f041f13180b745b64a0c1f73965db76ec1ab1d41386f03ee310b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d67f88a57ff0ce88b7675c1689532ac2807300e63b3622cff4812df1bbeff36b
MD5 6206898009395015691fe93c52088c75
BLAKE2b-256 40d32e6be48b509656f9725cfef7980d5f45facac79839efa57139542e078876

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 61a6074d2b3d630e6d2abf20a49b9e9bbc7a1f1697ccf3bdb5809a84ad624d29
MD5 273d12687bf14186cebd441ccb87299a
BLAKE2b-256 908e92ae730f28239afec43d63d6903417ff7d00074bcb4d21de9fbc1e63c81a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7c7d396b53a486c0178092da9856f7a280e927cba9865caa9ca8bfd51e4a3c87
MD5 80432969a6170ec23294b5cd221fa323
BLAKE2b-256 858378bfe55c07b712cbf03c0dbd9eab4f43e528e242824babf0cb9b804e3932

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b92c396495df8c83ffa016ee09e25c04d410d1dfe71610daafea4c35fbb7944c
MD5 bd132fb05dec311660874d87476e02ed
BLAKE2b-256 139a9a090632681b5c4b8472eca1a463a622601e702340d2b2b702cadce74870

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1b3b4960348d49d7b64a64dedec76f30fa14cca334eb1ac4f4028217f7a99cab
MD5 bab74766171860f5dcdbdbf37270f39f
BLAKE2b-256 fc2a2d24f2d79edfe3aa9835b4a05fc8478ad225a52be5cccbbbf92f56ab69bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13aad6789fe66b10c7eb1d668440617f817d6029fbad7ab1a6e8ed878f6c1256
MD5 ab824ac370aeffce0829179f44df933d
BLAKE2b-256 48a030499d78b8129efbc39f7d84012ecc0e4c9bc734ca83e8cf88a6cc8cb12a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d4b5e816b9ca8b537acdb217671c1cfb66ce5c8d07e0dac39f31545b496b8795
MD5 e7ff23828c2a300fe912d9a5a5dfec02
BLAKE2b-256 e5980831bbfa72f9aad363262b202de1d2294ee6771272efdbaa6ec86825a945

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc668d444fdd5295da408f764e08f960bc727fa5129d5a7653785793f69a9448
MD5 01fcf9adfb8a030c2e0f38c1de34919c
BLAKE2b-256 a2a04ba24f8a38b34820b113519a74d6649d0092c5b4c0ff68d78e86ff713f3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5fe57de87a6000b161e92bc28d04e3ec1785e325aabbc3742e3f3ad35bf0dd0c
MD5 92d92a48320b4a56a42f625f23544132
BLAKE2b-256 caefe58492eaccbfbf4c8185262a7c75adbc049bdcf79dc964bd96924d79411e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cea189d8a2883d9ea9cf99aefdd4959c0813aa90195a3bacf190b443f07182fd
MD5 5ebb7d6a2e6dba53d96cd5c8d09d9a1b
BLAKE2b-256 5bf2db59a2991029cb1730055a1cdf7d8b0cb0024d65eaea64c5c36e67e62eec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 32fa6e57e48ec996893be1587a663fadc7863147fa5fa26a0eada70004b99be5
MD5 eaf048fc1253fe8de763ec072fe00347
BLAKE2b-256 35e516af6256aea07879726d0efbc590fd429be4b82eec90b85fbe2a6aa53e31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2f28cdc749336f1e5efcbd499c8ce895d70ec711f673a6f8426e8d9e44acca2
MD5 f2fa2b60928a77ee187f844b8aae7b7b
BLAKE2b-256 8d1d4e2c73da2d6190469a5cb34e464f54fa0e46a041b1455b2fc662328da33d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c2a56d0b3d29e4174b481b806085cf3d1092a30d3b629f8a39bae0af6a3e9809
MD5 b769f2dedfbe865ad6d94853b6c8e829
BLAKE2b-256 3af8a80e99e76fef138a7a8a53f15ca0f76844e424b1ac5cba473215468527ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48568801a6fe66124fff98ead65738e4847b4e41548edf3f47700c4eda8140b1
MD5 2cf085c0c2223bf82c0b92e7b301945a
BLAKE2b-256 0861d6d9472535c1034f4f71357f6559f142adc7262569e19065548565318668

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4830291f740505965d2eff9d48293ab05d5e873301bd59560facb83510dad890
MD5 df311a57794435f2d9ff7007f7a702ec
BLAKE2b-256 7653a596c2ecfebb6eaef5ac6702ad05fcea16eca5ea8c793b78c4da65e58937

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4e0029670efa312a64ef184798838428a8e395cfb19ae7fbd8a7b261acb2980
MD5 dace070da1f413832fc1e1fa0f186358
BLAKE2b-256 c9150d07ddd74cf4ef5dcc08a607f80e12cc326c110997aed933bbbe7bb156e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3dc53c240d4d34ad98c66797c0575f7d996490a521d19cbdf2a8c70f9acb3458
MD5 7ca03188cd4bb914bf443b07936a5093
BLAKE2b-256 d59269c2c54f84bcbff7bd68923d98d3c34df48e27e01540c92cf7f4e7fe9caf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 60e6417bd3764e61965d8da21c283cbeb5d6f4705071260191b24a6817695b16
MD5 9f2bfb4e39d2caa2a665482e9da24961
BLAKE2b-256 f9f4659f92ef49b832bd133734dadabbc5114d332522a5c67008ae99ed802769

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 47fdd70e407da995a48d36c0172561111d0392975a2fdeb3f8faa64a377af4e5
MD5 4085a25608e897b2522ecf2292b77303
BLAKE2b-256 c26bbea7844772bb6222103412ff73e6210910d2cd385ec8441e60bfe7afac39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 406d4ea768df9a4877c425f150dd464411cae4a88c4488447f7d7c1af6db5b8a
MD5 76de802d7bef64dc0560bcf93a356bbd
BLAKE2b-256 6b79c43b03210f2c2db7d223f287e5e6d44585829ef7fd6699b8f7493411b2d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 877941f235e1fb3d743d33d09cf573c172e66b93d3cc76d4a03893b0a9a5ce68
MD5 91575a63d5b1620760647cc9e624646b
BLAKE2b-256 7d2aa72550287ff3537b29f3ae35799c0ac2120084e4a22355044c9afa2f9723

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16d5f277a2d9e0462628f0472a7f01011044dd463034d44bc357228475384ad5
MD5 598ddca74ab028f5be84c6b6720aa4c1
BLAKE2b-256 0717d530d19afe027bcc5b97ecac641360d306f63c384256e0f04f00fce44da1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 730d466c7d5d39d8c1d5aca0c6525dcac3ec647364e6b1b8be8b72725d6f8d2e
MD5 46022f6a16ca68130404955c2b89a144
BLAKE2b-256 cddacefa2db1d71db4584ba13546401a935a4de9b3b5db4e506533b51b6023dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-4.1.30-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d037519d964a5344f0549c5d32dbe1ab85cc131353c683156939989d68db2bfe
MD5 ce16bf79df8c5686b0221f3595cc0f75
BLAKE2b-256 9cbb83fa4d444bed6fba8b70a9b070944f1fbd21831c0561aec334c395a3af59

See more details on using hashes here.

Provenance

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