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.0.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.0-cp313-cp313-win_amd64.whl (299.2 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (518.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

mlcommons_loadgen-5.0.0-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.0-cp312-cp312-win_amd64.whl (299.2 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (518.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (463.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mlcommons_loadgen-5.0.0-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.0-cp310-cp310-win_amd64.whl (299.2 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.0-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.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (517.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

mlcommons_loadgen-5.0.0-cp39-cp39-win_amd64.whl (292.9 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (461.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.0-cp38-cp38-macosx_11_0_arm64.whl (461.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (519.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

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

File metadata

  • Download URL: mlcommons_loadgen-5.0.0.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.0.tar.gz
Algorithm Hash digest
SHA256 a90fc0a3775acbeea64b43251d3baa743228c44b3742eb99b4f927548b527328
MD5 e9034c2f0ca51a452da80d3330293560
BLAKE2b-256 911d5558fcc546c008c66e195f01c84c47b4e4def5e4acb7bb229dd91cc26551

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c6c090d110601942ec781dbd65155ec56d58764d9b58a7a1fbf649eaf5d583c2
MD5 6d410c6a8b207badf3860ccdee08a73a
BLAKE2b-256 1069f8d4813ab520ba0fc076a8be8c3452ce04716ea33ea673263f4d357e1c84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e6a19efe64b1a4f8be5e3fe86fddf097282c7a6da2dcfc5495913801a7786143
MD5 d43d7ebec25dada196f4037dbc7ab9ab
BLAKE2b-256 00e36671b17ae4b45c8072c88dd653288758d9320ca3c1865da5b1787d89e97f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61a348d3f6c7ef741ead72535a528ecb4ac8f1a1beae82282774ae75531c4406
MD5 37eac1a14207e976ad352a4a6982f3b3
BLAKE2b-256 a23275e3119f80383fde35f7b7119454b30a77a515b30be0e7791086a59d678a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7a8155c85a1987e25e550319d5f63044aae9324e9d2154cdebee3c40c1916462
MD5 b11fa4c374e1c2eb99df1ef862d4d64a
BLAKE2b-256 a2dbe6c55d14b5a56959f7b7a84e567a50313d7419c5caaaf1586b90fb72f65b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a74f75b36fc28f2509655e3520cf21912c55bcc9b64eeeec43dc55b34a0fae9d
MD5 d252a4a039bf0f7430c76f920a6069e4
BLAKE2b-256 edd5e4658550de3d7a20df48d8afe3c1888a9e4915edc20e85eb12472336681e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 edc11a479cf70aa10523d8b2e8b7b777e4782d6feed1be66da02a0036ea63825
MD5 1ca1654f4876cf41aac7306faeed0d4d
BLAKE2b-256 24ddfd4b4f9ebaa89a0bbb415a9b9d19f48c9707a16c3511c8e9ba0dc9d388f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e9d288861fb758ebe30b3ea18f1d70ece35bed2c31c41c29acd6a38b73e06e1
MD5 d86160ffafe574c0be100716a32bd220
BLAKE2b-256 d783613a15d53b9cf4f812fe1ec671088a69efc3fcebce0bd7008c85ee47a1a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d58367970c86f65dca53b7cbfdd3a9e9e05d55e924f8c584a27869c7bf1b7b93
MD5 227699435362b2855ba711df5c1fde6e
BLAKE2b-256 ecf6ef61784e22bea81ad583f1f57e30070d5529f39fee99fb788270ffec22c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 40a5c7d29da9d66ad9fcab1a04fe1041f46c581ec4d475145bf89e368c5546ed
MD5 ae3a8630bc77b78cbb2c88efcdc9732c
BLAKE2b-256 1c55bfdbe000bd045e7b4dce3927e075bee154f79a65ae46220814cba76e493d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 885ef3a5fb176731f2e028d86d2591ece818d08d0a1153da746de5d2cac068e9
MD5 61afb56b529ad3b346d370a2cb2f4d78
BLAKE2b-256 4f1ce213b70b5244dd0329f17a82184a972f55423ae687f87339946c7eff45fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 307fa1dcc4452b10da05c74aca1ce39ea2aba53da8a6156d30e3474d199a905c
MD5 aed860f8124e914668a933272557cefa
BLAKE2b-256 d273b7056451a6e2376a51a3aa3042ac0b82bac4beda8918f96021e39539905a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aa7d998e765745b679cca0e1ae9545bb8835cefdd0005de8bf343dd8cd32d88c
MD5 0d0e6527dd04f940d7cc0e0399e77328
BLAKE2b-256 c34a342cb6fbc0207b8d1a909e14691d2e85f560025e0bf01e48ee07017ff5a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab2b0c44fe65888f5ea7e2c8b91c287a503db6e03c9c3f629c0970321c37c998
MD5 c6270a56432202250cc7ececbc9a3c79
BLAKE2b-256 81c74723207f11a31079cb9c79523c354eca169086026fafebc25f14bcfb94e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9155786f6c8f1487134f0c4e85d65720eaf86e5d6d87a6c15ff0378056bbcd5d
MD5 35a8f41d7a774299f5bfcc57495362dd
BLAKE2b-256 41c3e65d0b91b702f8e0306e103cc209f41ba91b8b9fc4fdd3f5730b3439e9e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8dc2b449bedff6cc5c5ac77463667ef93893b96a64c69d6d60437d4326ffa6e
MD5 0b6dd07d2c95443847b3cc754d8355c4
BLAKE2b-256 486cc3b66f031366159f68ee9630df3c4a8a5c9b57ebe3e159fa65fc34e7b95c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d115cde247bff2fcaed028aca3877dcc15bd60c042b2aca7356a379bb58e4c49
MD5 fd93dd49ddf8175d52176739bcc84d0d
BLAKE2b-256 f41540b48b2aa12af4fd8a5d8f9162efdae1b7ae78f5c363e1b19ab6a6864d51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 eec3e4a2de65abe9ab75f0526497c35463530449da14b77061dbc9e17a8ef7ad
MD5 8b42362e7e0003600cec368cbfb3a56e
BLAKE2b-256 c641a03163577d85b3202f6d900d6dc62710ced84435b5046362a49c721d5e4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c24e648db08ce3a90b2b17317a429d33517a427fcf85a7d998fee59ca7baaead
MD5 9db0c3c5eac4d7bf7673d42695318f45
BLAKE2b-256 4335d046f919e367165d2ce6a441c12a525ad34f4f9af7221264e347af65f757

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f781f01d8484ff303201d2b07da65d6c94f10f96965fe857eb175dddd0adcb8
MD5 15597bed9a19b9322947c86adefdf429
BLAKE2b-256 20dc53cba8cd1b0d38d62395efcf7f7b9ee6d672965205c878337156092432c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 deabf48fa7051a2ada2f627f9aff1abbc377066e89a66f317d17b7a68a3c9237
MD5 585a3464bc29dcd6b37f90395217631d
BLAKE2b-256 b4a9078e210efc1d15dc595c0ec8b8c9c62516ed199e1409651eef4e73bef723

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4fa6ec204d53ede3bf9f9e53430859381fb19862f7344260b4616ba4cbbf46bb
MD5 3aad1d8ae190e66a817ecef0057ffd9b
BLAKE2b-256 a2375b94d4bfff26505b429ead12785c61fb513b535a948e5ebf34c6109cb044

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 86c64964ca3c3c9c9ef8ffa42a08cdbef818a965880ec127f99a2106424579b3
MD5 6138c6e516a04458dc3b6eb09758ddeb
BLAKE2b-256 88ecc67b04798b3a668815ce9436eee26f582fe03b9450debeeb8540db339f97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8bed2f1d36cd785a1f44996f62204dd458940aed09d0a0a8bc51db88d28c43e1
MD5 faa138861bf64128718afef2da57f592
BLAKE2b-256 6121b9e8edfd24fc6c39bbf2bef16928dee422656f06407ae98c594551287b1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 18e7d8a5772d4112e17da8a0e95466c9636923478f9789e993588fe023cfc4fd
MD5 65fe77cfeeb1a499f395352a37a9de53
BLAKE2b-256 caa74722f2f8900c34dbb2e71a0a2418bba6da631ef412f568be781a595db2e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1a4bb3c0abefc95eba5c03f1e99d66c748ca656abafa8a9dacaa77e272e2f2b8
MD5 df9484d751828367cd6074a0171af3ce
BLAKE2b-256 09c28521d2381de958407ec9ae5911b3554b79a01103dab7b5d0ab7a30fa22e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fd4f4f18d2ba4f092596daa8643318f9450152f1036f0ac12226fb102a896a21
MD5 dae5c943d6ea63e05d06581630998ea2
BLAKE2b-256 65184319206d3ee5130b4163369a737cfdd73d7409710a33cef0126553aedc1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f2e86d29fd483efcfdc77f94a000aadbfebb2bb7e7542776077ef72bd2bd9d7
MD5 093caef5b0c2404838859f60a79eb9bb
BLAKE2b-256 7dbbe33aa554a1676d29087b12bef22dab1984cad7a76555a600fb3a65c13f71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7a17bc3a0c21e1df21f4d855170c007513ce4b18ce14bb1b745ef728562059d6
MD5 7b876f11594b370fc0dfea54490522a1
BLAKE2b-256 85b7e3d5a5f469a129bd97c1ce6bd969c24e84399096a8298ca6fa5542f2bf73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3335ae2916304867cec95be953955a9bd767e84cb7ec2c6f7d84345cfc18ac1c
MD5 6a46dd65c477ee35b801fd3a70333c79
BLAKE2b-256 b410823724834e01b52908c12a34e21741fe641b6aad219175283f0956c955ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 595b325678d06512e598895e1b775fe0b7e1012dfc592c219f6135434fdd61c4
MD5 9afe9cce0c56f542aa64c620fc9ecb40
BLAKE2b-256 9e464b062bc9b539a38f298e4cbc7c4d23f126bf03f324a481d907d7c76b40b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36d590dee9ad8fc9981a3a870ded1ce324d747351c7b78baf446e310e2392f31
MD5 b4e7d9526b48c9034cbe0de546642b57
BLAKE2b-256 9ba681631fcf9c5ec08132cbd38b6c53a7936d661f09feee3ba305363765ea1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 37f0669a6a3860c3e32f75d72c7496d873f060780a002d8e726ecca9dd972f88
MD5 f8fa62d8da21f3c4df2ab7967d6b6e12
BLAKE2b-256 60ebddb5866550dba89a90f81c1637c4ea02f0381c0dfea8d9e57e2a5f1bd527

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1b1174bc7fb9191ff139dec7cbf4e2fc081a591513e30b36488fcb20be1c4830
MD5 ed7ddc3a02ca812974f0eb537d2ca718
BLAKE2b-256 92c97cb6ab95c8ac42f69ffff6bf93ecd20a73831a631e9888280db3d9595255

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a20047bcc11baab4b6a9ba25de52526ef389ac2ece1fae10a6668aab8ef6cd8b
MD5 42e16333fc840c33f02ced781d9d8601
BLAKE2b-256 b5408b70649929d73116ed50b1d3bc611bc1bc97c74fe3ea918ef6869444be0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32274dd8297abc95c56c7afab2ba0831c0d2362a1dc73af2547e471d58a17393
MD5 fa31b79302550230e0e7ad72c7bbd283
BLAKE2b-256 ad91b283deeeeb4fd355b783bcce26f22ddbd6430ea148fb3a982165329bf836

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 74135f783daa236ff208c01e848d669476fbf5e31f445c84b49cb31358b5fbef
MD5 c4d82b4ca4d407f6c0842e0b18b0c314
BLAKE2b-256 4466b55ef74bf2d228a66977fb710c583516bde990dc7f1b4c6413dbad418120

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aaf31b187f54523bbf8e01bfe56f81cebeb6ca7cf253a586b09057f922b10a0c
MD5 9ffa1c65893ffe238fd2887003925954
BLAKE2b-256 e99166edc86648dc7d14304364c12c0a241a3bc07c06572845ff7a14976b7087

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b31715eea5aa1eabdd8824834a76ea681fda45164bd4832cbcb288d7e848b8a6
MD5 49407e3b4cc71581c18e2f081e51612a
BLAKE2b-256 c337b8eabc437ea7bea6900fe01a5bc2d2ed538d3b94c7b47db1415bc41e13a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36e1db79e5abf9c660b38f8611967ff72157e1c7e2bb8b147189a526f6b424a6
MD5 e1d9db165f9c0f5caa76c7db9d997701
BLAKE2b-256 27b05909d1a16b49aa7809a333fe064fbac5bc014b4f48ac019be3db3a74f7a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7f2a3338a759c00cf0e3e4e4f8838137f0547019bd441bf8037adbe8fb7ab857
MD5 a0d8302f9ac9fb5126fb97dc026a3401
BLAKE2b-256 7af3b26cd6915a92dcfb2341c226ccc82c8b61f8f6c09b4806472b76efc015cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3a97d47a8a5928514937a2c9babf15bbd0cfffb118023045e7e0e56b2c2faced
MD5 a6153179c8d851bf1eb966d657f6ed50
BLAKE2b-256 1c56610dc49d25ee017839e950f51114e1749f687cda4854bd3b062d95acd32b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e823eb963881f09b0978ada4fe997f3eeb7fc7440c994874b3d330d23768c752
MD5 e4bc962f983fe67821c8fd200c903e6b
BLAKE2b-256 332ac928d4418cc2eab5bc2e42155e8836b3c00368fd8a08aae3655dcc76d10f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b33a1e52a0c13dfb55da7c8ad9292d51aaab7ee4b8635f75b942dfc12807722
MD5 f973b7aa84dcada659afbd7b297bf4d4
BLAKE2b-256 42c6eae4c845a8eae1f29eb0f8cef19c67661aed6551eb7c9550c1baccba793e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2dbb6c433248cf969865ebfa3a66dcb83a4bbe87a459adc05e90ec9b44f92dfb
MD5 41387a2d75b88513eee1281cfc462655
BLAKE2b-256 87604e77beebe2c415d8dc3da03c9060ca478a1fe3c5eb23421d464640d2b0ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f606e168fef45fd80f85482325667aeb5ed718f5f3a9ffec0501c8164a79aff
MD5 5502894899fa20081ffbab32fbdb5c47
BLAKE2b-256 a131c9e3b38b1e166acd34de03c5f938a6bb87584b7d6f97afd2417dccd51e90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 598aded7eb572dfbec947720508f1b618c1d393aba6709191c93b0e7e7e7a069
MD5 51f76626d1e47b4f4d66ca81df151c41
BLAKE2b-256 83af551fad12ee84de72e8989e974fffba84aa8d7384deadd012090b3083def5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0de5f92ee48b7a448a4867e544f03ca5cdeceb2e6b604f5f53fe99d58c682f6a
MD5 be0e8b8a568d0776f7c54c874cff6e2b
BLAKE2b-256 c9a4719f9de2b26adc55223b818e4cfacf67bf19ad748459e14262ab0f3b3e08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bc6bfbe26a7a2d2ec21e33dab1392eda2ce4d9ae18fdf45f1d0fafaa650046f6
MD5 52c8fc3cf92065c6cdd0915a89c7f35a
BLAKE2b-256 9c9b1428bd048b9265d3512f2711cde90b85056ea464bd27f6a23fa1534320be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 15480d217b8485c56878f67b56711c2e17c8783f5be48311a4776df575ab337a
MD5 1fa44e051d7da3e88bf35e0a9ce0ebd7
BLAKE2b-256 1bedc5a50f2c1e8c15c27a93b8ecc4fa2041472885876aa20b180668e5b79595

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d624e0310a1925b3ecf2961a2190a57222f499d8aa2bd15acaaa366ededb7d0a
MD5 d04c0587266e724ca5d91e8bd4d3af23
BLAKE2b-256 893eb4bf2c6cc89ab0037c019d3c9e8757e1494525735aa99702e6b05693c978

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd2a162b0aebe76786736c61258fee8071b07ecdb8e17a11da4601b4f16c0ce8
MD5 a6b0b23e3255e202ac0312da07c8052a
BLAKE2b-256 f48d05a898290727ef525d927bd35e4da5ead2ff60c8cb5cefac018faac8d13d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f0ce6a3acffe2dbfe6496505fc1ca3b60dd9bb0f8da4d81589a54ca235aedd0c
MD5 2d9a8a57f7b93f1daeaba24e532f0f66
BLAKE2b-256 a17e4116560489e4f7f822fb6b9a6b131ec5dced25fe0d45ad488b3ecd01c45a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd9d885b1c89377fa828324a7c6b1d9146f0daeac211b490c60d0ad99d8392a9
MD5 f62b3616ccfe70430fe0b149800803b9
BLAKE2b-256 d0d1517a4de67996a21bea9c6b6a439bd5170ad8e60a53a9791917d524495d0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 74b4ef85be1825609b1ed7ab81eae4e67e2860b9db9e8a9b85a541feda124db9
MD5 2dcbe82a3a78f9db9cd95700226b2a37
BLAKE2b-256 2e8ef5b3682d0772e91c83a8c7ec76f1c52763e34d4a1b162e772d41bb62f472

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 79471d459fdeeb358628859f64b3068636ab2a84ec81ee4544e4336f8bffd2b3
MD5 fe14218b0986b2e00ea299c9623e46c1
BLAKE2b-256 3661442a06fd36f55db45267eb6f07d3ae4d2dae060248e28ec043630cafb335

See more details on using hashes here.

Provenance

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