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.12.tar.gz (78.6 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.12-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.12-cp313-cp313-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.12-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (517.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.12-cp313-cp313-macosx_11_0_arm64.whl (465.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mlcommons_loadgen-5.0.12-cp313-cp313-macosx_10_13_x86_64.whl (479.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.12-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (517.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.12-cp312-cp312-macosx_11_0_arm64.whl (465.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mlcommons_loadgen-5.0.12-cp312-cp312-macosx_10_13_x86_64.whl (479.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.12-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (517.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.12-cp311-cp311-macosx_11_0_arm64.whl (463.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.12-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (516.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.12-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (516.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

mlcommons_loadgen-5.0.12-cp39-cp39-macosx_10_9_x86_64.whl (474.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.12-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (515.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8macOS 11.0+ ARM64

mlcommons_loadgen-5.0.12-cp38-cp38-macosx_10_9_x86_64.whl (474.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.12-cp37-cp37m-macosx_10_9_x86_64.whl (471.3 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: mlcommons_loadgen-5.0.12.tar.gz
  • Upload date:
  • Size: 78.6 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.12.tar.gz
Algorithm Hash digest
SHA256 42b0788bdf2de2aeb3ebd82c324ba786ca655fe65b47993e663796a32e4d4c2e
MD5 3cd9114690e1a5998e503c4c7a2f37cf
BLAKE2b-256 f102d9aab12ebb0a2c9f86f29e6d677723254f04a9610e030de28014ce8581e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ab23abd6d7ba50bb89c99f9cd3c77a0b7d6d52d4b12961b1b7206360f3b4a9b
MD5 9bc26214441049497f52f265cb4c3964
BLAKE2b-256 3da5073fbf5fb3c5661a7144e4d98043ae961e131fae2b36a0a42789f0f24ca5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fb2c05a41ce22ed430ce8cd72d2abe78e64aa3e8fd6bb6956c94a17611420897
MD5 a442bacc8c81b1f6a7b20cfcefafad96
BLAKE2b-256 6e28d5d4f375d9aaf19d4118b38201b75ff6440d9b645d713dbb9aaa4f7139ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db50c9d0c0ff32b1b4fb1c415cd70b7a2c9900f3e49fecd8ae09aa1a963d7ff6
MD5 08d8a8f67ff75868caf5b7fb9d138c34
BLAKE2b-256 866792169b09c229aeb73fa7963d14486664e252d3e1288014d2447a2b9a8767

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6583f288533276e958a6b3bae6daf1b6655e6a418798565f4fd70c20574bd19f
MD5 7d893fd2073d7fbb675b5be84378071d
BLAKE2b-256 cbf636ae04ac0ea574a06d9ca879024fe4827b6e46f1036ab3d6cb5d6dd5b04a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 357eade8acd73c174b03b8e32898b92028849bde5ae2600deeab36459f49a639
MD5 1e24a0a651e15dcee86644c0214e0ade
BLAKE2b-256 744a34f4833fdff470585a636bf8f8b1d44d5058cdc60609dc10e58d755bdfe3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9523eeb7302cd8b125d44d9be91f9632581534492b65675f436fc1bb6110d9cc
MD5 b0b575c578bb0910fe3bf617eca7ecd2
BLAKE2b-256 75719837b454704c7850d04a094f65a9455ab3962925f1a2541441c12f8b6514

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a9310655c12f4d58e06ae0ebf21a657b5de41722d4d4c649d1a74cf07178fd5
MD5 e766e2ea367abe0db612bfab801acd68
BLAKE2b-256 9b71901689770e57564349c22cc3f2102eb728918b8804e5309d61f529b07dbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ce0ee9da52e3eed5170cde6bc0bd05eb5492d3eaa9fc79101fd51f3d7dee9c2
MD5 5ecff71b996e8ddd367f5e3a8f4e144c
BLAKE2b-256 a89a10b5772ece36a27414d7dd2c8b02bc6a41e12780857826a410e086e64d8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6713d84dcbcb890e29380cb1e60b3bbfe162757f2066e458fcbbc2dcec4d72b
MD5 492208c76037f29c349515d7e99175ea
BLAKE2b-256 703c967d887bcf661ef8860739949998e76088b9607f28186c88e0306f87011f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3dd1d8367a3dc1666ccbd6745a222657ceff8e7b6a460c5907b469562623350a
MD5 5d81b35ed0aeebe5a1c08a1ea6f4c9b0
BLAKE2b-256 52aa4ac03cd1ed497cc36e42320d679d63d77a458bdb29e7688974cd4833a9fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e19f31df02fbc3e94d0472cdf1028c280134716ab079ed2c21db7dd3ec2e5cf
MD5 2960898ea106faaae2ee55520d94824c
BLAKE2b-256 990812e663ab4b0198c1bd4293392514c396932236f81639fc1276c7bf516a16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 200d18db5f3e90505c6a0f19019f3f2909968a3835277e52d455723d8ddc46e4
MD5 0e51fdfefbedc267dbdbd861a55a340e
BLAKE2b-256 8f45b781177b31a37792bf3757da171d839812afc6c6b6e812a8474ea7991bde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e130039e476413436606a450ff65cee8f2d35542acb11618af2a10ce02f9ade
MD5 54aded0eb363e7b88e1fda28806b7f45
BLAKE2b-256 b28ad6ca5e813f79cddb4c9972b3137417d2e0ee8bbe9fb361763f3f6166a97c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 26aebf3a2c53872b211e659bee388fe5a56538c2e0fa86ac0515455169eded9f
MD5 6276b487318d2f5065413a4a84d0cf06
BLAKE2b-256 12ae940a2913bb9c399ac1007a51af0d6f89c71155435e140714a3b499368a86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6f3fb81f2c8435fcee98b7c02f1386e36451817b2b004bd9c407c4c4acfaa77
MD5 dcfd3292e6a14e16819764037843d751
BLAKE2b-256 4cbcc4d2186995d67dc9ae78988d1d699efa5cc6413dbb6266127d40fbb7b02e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e9dd8164d0a67e0bc3acb321f812a7e244fb13566802994e93cb415557101384
MD5 992a1e63802c0e4a6ef1e346e64fd301
BLAKE2b-256 068f855705894c172857f25d68d5b1e7616289ea284aa73f55bff87d794f9a8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf32625dd5d2df4e773d6879b646463c86702d6e55867587a08dc8b751141d46
MD5 8e8c487d6bb742adfed7efe4edafd8e9
BLAKE2b-256 fad297487a6375be1601b0f1b55a8afb9e7d823a1185a8224a41176d3aa58a5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4f57d8bc2b85be001cdfd01e821cd615d64555f46c4287d24e6f19252163b07b
MD5 272b847119cf500a78fcc02d0eed5fe0
BLAKE2b-256 d158e69ffee78f84a0625c9ed016adf8a5d5dc93db81929ca84a036bf35a753b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0333c8b19495d32c56a1a535dbfb6b086f78b4027596326e6f7282b0a646c64
MD5 0c4cfe1f52984a56d370133fb091586b
BLAKE2b-256 e2ce3ed0aa6f17e07777a61b5bf0b68279762d16822cd912c4e4635a56ff7bc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 53d8ee6969d54bff1cf6b36275845bc799ff300261112f2777be368b307fd2bd
MD5 8fc2b640cd4eaeca1f9df38fee94db04
BLAKE2b-256 51d4c19628f6b4bd3fadca84f3e268702b5980e05fdd1a4bcc32882154c0b0e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68e9cf1091cbe24116c040f7b1cc1e1508a663448c21f75867028cb3d1c34220
MD5 bbebb3a30f1fe30ae8fb8d99b491b6b3
BLAKE2b-256 f0184a572c8672ae2fe78d2449f1a1db9e4105b6aa70f0a54e793936a8a38c92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d0ef1c6fcb47b62f626f8be9f0e3ad40848c096c3087585db064553c7b7ad935
MD5 b675c2146d02c48a40304b07cd48c7a2
BLAKE2b-256 5aebb5d9af2f52de8eea9e9e4a7d3a31270931d347bb5c94f4f3509a7f7f5ec2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79922ca0ea199da2431352a2461683a3c13c3ee42d0e1bb1cb99d0cc939ece35
MD5 97781d4c65a772d63bddbec6ea449d91
BLAKE2b-256 34ab03189746b5878ae71466161ba6f7ca12d54b7afc49833bc06e71b3bad32a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9450118a8f1e8e9525074568876475343faab572691e0ac10e559ffc2290eadb
MD5 02cc89ffe8e58e35c97bcb74013b4aea
BLAKE2b-256 e96ecc1e3985f712178343337e21f408208bfaad6e8237d48a908764b54dd643

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 acde8fd25625b2984f15ae2551875677fffe374194d433bde6321e5b6a7ed39a
MD5 512e789a0e13afff32a684d297b82c56
BLAKE2b-256 bfc4ce96bd71474ffc7ca78193dd2693250458d43a2f8d9ab9507f9516333122

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2202943d13f689d692ae939c1bd4822ba1092164c8f2f12498303db25171f805
MD5 2bdb13f5ff726b6f9e4847ff7e108354
BLAKE2b-256 1649b557f88ee6a2d69089ebac3253982d8fcc6f2ed35920986335fcd0fa2bb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad544595d4ce02e24e08ed1e09332b0276de214fe9f7790eaef481393238a7f6
MD5 556c3c3a087d0b882da023bcd37b6e7e
BLAKE2b-256 cc50f017e4531ef1d0dbb54af5cdd832237825ad2f7f01022fa4174ccd6eaf59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ce4dc3a5f42e6a49543f465e35476283c4bf025e80e3c95622c71d5dae9cef5f
MD5 d259d5a815d158cd957a32a0680989df
BLAKE2b-256 2402f0c4605cf9dedf4c37260b7a1e7ee78c965128f9be10894eaea0848259d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e171983598ffb5ed847bd39b1131f8366e8cbbf84224ae63bbcf6ed8218359d
MD5 6c9cc0ce6798c46d1613b532d1b90477
BLAKE2b-256 b5f0d7c7d950882f31346310fa221f25453dc996fcfddd6f832f4f9559a86560

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 25d9a2f24fb6414e14f2b88986a2b2bc0f032d031ef8246d8df2875d5cc2789a
MD5 1741ef14b8a47c6ee9652fc4f6e18c8f
BLAKE2b-256 36f4c0719059e2308478d1141417b656eecfcd90bab1d67fd0bb35b4988e00ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3c3908b8321192335273ec347be4e90c76878f3d308780e12f598ffa050ad88
MD5 0233299776b0017e3a8975e729800465
BLAKE2b-256 31e76c7090b6eaece9a1254257f2b57d29e678aef4109d5a321bfdcb6c268997

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2aac7278672be5468009641bee37df360aa0765e4af773883e4509cd1fbd401d
MD5 8cf89275fa74c04326db69b2a195b897
BLAKE2b-256 f964431e34fe33b18cb3406a74a89ac4ff747f5917a7b4d1f8cd905040948e2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9fca7ebbcef217c57a95b2b3a5e10f5372abfa64dbde8ed4f66e70ccd4a13811
MD5 b466305651c2b86e5e34b855a4ae6d21
BLAKE2b-256 473d2ecf802607485c6fcaa5b08e625d0100c27567aceaab2a2d7dcbc6d05b6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ebba3e983ffb2fe4c61d434442b4f9d85c13f65d25f946bd7229c52ef671f558
MD5 97ac0dfe2b1a2ba1b2ce35540fc84beb
BLAKE2b-256 b630df07424f9d3891fb5a3ffe58975bfa129cf43570ab4276cd86cfc55784ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6857e25ddd83375f67f46515f2dabcc515cabff746ef337aa9571749e2d2e5e2
MD5 072712a9970964bbe4bb8b598cea1883
BLAKE2b-256 66a782d11b79e40c4db2475d4778172a3e9964d3686c8fd6a9822db0f4f14489

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7d55207dc84d055612799626aa1dd1922c4e662bd73e72047a56c0241083240d
MD5 6b4b7fe10f34d976184d09db49cbad6a
BLAKE2b-256 4b0b68483024f73ac7866b9887e3c8b0aa2b722f9b17ada3a85edc15f56f431b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf45f26e917be6b9fa3c3e108bb9345343087bd95316ab6dc36891d2ff86fca0
MD5 66a52f8a5686a784c7c234a0402cb417
BLAKE2b-256 3d44efed744d41491d4fd5b0619810760a6da0b9ab389691a64d1b22187630f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 16edfcd107f274eab253a16f67ab2114ea59df735573a8faed62a49f08c921dd
MD5 7aba57cac52352550bed9a83ea033715
BLAKE2b-256 430d895be2f05ff514a20263a097d32c1fc0f81417fff899094b6d00effe5eb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89c1a36453232762864db6e8433984ec21b02bcf78977ec7ebd1bfe473eb981b
MD5 8857138a4022ffc49fc6d3745a772415
BLAKE2b-256 87ab380ce251814467df7053086b8f66e854bad3c918a9a6d1b962d623927f0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b60d16be69324b3b6595b831afbe6b641b641363f59f8daaf0e19fedd54d5d4c
MD5 3d1d0f8affc7238e16cb91fb31cb8ade
BLAKE2b-256 aebd101f6bd841be00bf2713dcecce8e09af5073e83630b1a0a934153b33f430

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.12-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5c12a677f70bec467d0f96056fca33b22ef96038905d2a6fc9d54e60320c832d
MD5 eb4fd6eaad5926f5c89bc22c125267b9
BLAKE2b-256 2bdccbdde936394c26e2fc8420ef84c9f4ab24bcbc56201757872384a3006a0c

See more details on using hashes here.

Provenance

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