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

Uploaded CPython 3.13Windows x86-64

mlcommons_loadgen-5.0.6-cp313-cp313-win32.whl (278.0 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (517.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.6-cp313-cp313-macosx_11_0_arm64.whl (464.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mlcommons_loadgen-5.0.6-cp313-cp313-macosx_10_13_x86_64.whl (479.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

mlcommons_loadgen-5.0.6-cp312-cp312-win32.whl (278.0 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (517.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.6-cp312-cp312-macosx_11_0_arm64.whl (464.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mlcommons_loadgen-5.0.6-cp312-cp312-macosx_10_13_x86_64.whl (479.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (517.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

mlcommons_loadgen-5.0.6-cp311-cp311-macosx_10_9_x86_64.whl (475.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (517.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.6-cp310-cp310-macosx_11_0_arm64.whl (461.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

mlcommons_loadgen-5.0.6-cp39-cp39-win_amd64.whl (293.1 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (517.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

mlcommons_loadgen-5.0.6-cp38-cp38-win32.whl (278.8 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (516.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

mlcommons_loadgen-5.0.6-cp37-cp37m-win32.whl (279.8 kB view details)

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.6-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.6-cp37-cp37m-macosx_10_9_x86_64.whl (471.5 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: mlcommons_loadgen-5.0.6.tar.gz
  • Upload date:
  • Size: 78.4 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.6.tar.gz
Algorithm Hash digest
SHA256 79a7c22f028e060b5721ab2953c0e1e5b61d61c607b759ecd117f814306e44b1
MD5 d8a66eb10ab8ae8b63fed9ff4673a4de
BLAKE2b-256 ce546a938000473791932c7ebd1e96c51d75829bcc89440f7187f69eec5edd30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 23ff78886d006cd55712f28a6dc7bdb432f7ef4bfbfcd2fab813a5dd7a7bd357
MD5 3e822581cb1b70a2254e6e5c38604a4a
BLAKE2b-256 0eb20c48a88d9d341905f5ab6f7c87e8b02c26bc4c397c6e5486a2743f51c33a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 df29f833f17bcfc6817939fbc288e036263af4d4ec207c02f82471ba240a4b1b
MD5 6684e9de5e4718afbc9a703b39f91c73
BLAKE2b-256 5788d40e64d575f1d939c9698a50ae87055e35f2cd8a31a7a087fae96f5b26d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c4cb634af2da7f8d7c0df01d358cea7305bd792295826c28f09cb367487cce00
MD5 8466d20bf233a3395bf5f7b11f6e1d14
BLAKE2b-256 7457b489f349e3b7dd40070c616d31d9398380b1d914be96e70694b295847152

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 55b0f1b237346e9472abcde6f6a48000966e208185215eb1fcb1c2e6cd04c049
MD5 0c014433c5746ab381b2743c48b14b52
BLAKE2b-256 596f5be91176257fb58e41b9896d08012b0ea1d28bd41e66be8dff4195783d3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1564e1d6a18396264cf6462969ad24f58748933e8bb0449033d2d98ba1694505
MD5 99f054bd7126aeb252be4b259fb9b27a
BLAKE2b-256 f2cf4a7848dc2c5f296feb2cbf0381480f2356c8f93f437a3b40b74c380317a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e39b80e682b69c03f2688b2daca160112f4967fc081f04b745e52f1b0d4f4e94
MD5 cdb1db9fd3da18fde2d27986c036aeb8
BLAKE2b-256 05d7f0d3bc098661ea0abaedc1f1b37e302b3005261322f24fc79da7d267501d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1c50fbcf9ae3b98115cdbaaaf12fdfb41de1a40eab1165bacd13e94bc533f2a
MD5 5be59cb41650af30eec0bc1cde754d1b
BLAKE2b-256 8fa058267b91d8d92cdccfc8bbaea2bf329409526ddc212ee59c256254d9d576

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 91d5c2e5efb3692931a09d1697e7db98a4c9ed2d167e7bb352eb8f4c66e5492c
MD5 3514b522a29f7bd60ec3f15b576ec474
BLAKE2b-256 79b329dfc8a679e609201afb6ce2a783ce6525d323399b06af26b922bab121f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 49916fb19aa56a23b33264b3578e0e3dab7285b7497eb72a79f5d53c9889ae29
MD5 807a8adc7458c6393848128eb6f4c847
BLAKE2b-256 09bfc8bedcdbe667a50fc7f491d1df5253364077ddef414b43793c5f44a9e571

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e71ac962c996c5a5244b42ea494590ac3f51c50cb5c9f9d8a0cf91c55e548fcb
MD5 d873ed355170b8fbc1e9ed563eb7888b
BLAKE2b-256 84bf55ba6f174292b2571597342493d1f16b4cbfbafd2ca738116cc91ef4dc21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a39333e0534820d440fea7f847a0e12c8edb340bab64cdec3002340f2c7e1b01
MD5 ddbe01053eea10d090b4d931e92facb3
BLAKE2b-256 9d5dc30dc8ca3aaedc9b35fef1aaac751ba2c32cddd70dbd0fb5648443ff5e96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e796075b0065f802e32c7da77b209b89d5c0cd6df924d97f68252aa156f35d9e
MD5 42bbe9eeb4dd1d3a1bda612915c18f73
BLAKE2b-256 d987ac72905b6bf376feb7134263eac3d9c35a0b96a44d44cb8ed5664079e52a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dad84f97b751f07f09aa5496cd7df58a1d4f5994dbf20d56bd87b37827ebdb13
MD5 4ac063824e30472b932cd603dcc08ead
BLAKE2b-256 e123d2b2047928a09b31ef1e41df32da3b45688d7332ad4880db2147d51e5fe8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 153223ddd147ad8abedb0e41252db7823ba1ba3ad70248f75c6719bd4fa38aa6
MD5 536f69b4ea6df6c35df2ad0a77687916
BLAKE2b-256 a53f85671cf17722e8b74dbaef9a474699c39af1a35363d2dcc97408a8b7ce57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ec8131af8b466816752805354db3267c6bcbbf6d498853638bfd9e042c2289d
MD5 055ad8c6a385933eb7ca793c658453ec
BLAKE2b-256 a06eec73243222f2d3b8e8a78eac91e6530a024a563be666293675e747cc45dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9f3db1f41ee728085de6431d830078d6d36b020b61eb9cac7209439f8618b654
MD5 8a2993d1f13d6b06bbd880ce5be0aa11
BLAKE2b-256 126006b7d4a94ce92111d8ec49b604968b309e7a8d3f60e08d943395ff768894

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 57c7c7914658fb254a838db40bef0e4831fc01f555738d17ba10972e8c11c10b
MD5 9ef831f4cbc177edf76e757455ecc023
BLAKE2b-256 6742b34189d3c3dbbd2e4aeaea6c3263a6e25e5bf69c7de2c6f1fb9851369c63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3834bbb5ef4a8915283eef3f1dd8275506113bc04d6bd5bf6f3b4401f698719a
MD5 95e9ccbac18dd57490cb9c9dc3df3399
BLAKE2b-256 93880010cf1485673b6ea273281a25eeae74ce72f271fe27934c3319573a607d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 916b70d2f55b6c40e390b1f9d55c848f2d63375bbeeaa52aabb49db06f9761fa
MD5 4d563680c4c9eb7242c94e31df11a380
BLAKE2b-256 981a92a49833e6009c72d199f4f380f424680c08172160ce99f67fc4abb6ebde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a9e4b1eaa923c7707f3b36ba7170bde68f4be7fc1702ca65d3ef3476bdf1cca0
MD5 8d858651283e5b9260f83aa7598e18fa
BLAKE2b-256 7e6bf8eeba1f6b85be69a60b246f4204c1a899c1a5ad14b66a06e48bf2954b0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c3cd335b1af74fef0dcb7043eaa9a1cd1b1ccb96e89d834bedb6824a4697f90
MD5 3031bba46f69dba8ca2ed47c5474db6c
BLAKE2b-256 eb8290b67f724d22984df141319e97b598f542145c63c83dcbc202c7e6b6db4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b39102d3371a7caed3e60560953ccf26283d027a5e13220023aae12126399d15
MD5 f8bf49463a28595c8d19adaea69dd1f7
BLAKE2b-256 e242c3de055a05c4e4d8c7f4aaa32a0bd533a0894b8f98ea40ecf7b7f2bf33cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1fa58f60b021a73bba3d365ab89fc286211b5598dc21a61bb1116f78139b95b7
MD5 ff55772b256b2629f7da9f8954ddbee6
BLAKE2b-256 ac3ae36d11014655c3d784f752ec5812d6a5dbcf6a2f877d608d17acb633b04d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 672f74e5eb17ffe0e4e34823bd01a96830c7efc1723b4676b49c01c3b11c499d
MD5 9c90947ecbff2b4099757100c2681476
BLAKE2b-256 2db59c931d32b04c8c5c283400b79eeb52abc86cb565cc4ae3c1f0ef3a4e4109

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b883499d59edfbe61f4567735f13786266502063b3e68d21a704e3ed565c772f
MD5 e9ef7e8e1dbdb93025959477e603337a
BLAKE2b-256 4d01a3416f8a92b045d6eedcdc8d5c1002098f68b25a6f831dd4bbbbe9614b4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d0f45de345ada7eec9102a7320cd2e41bd00da045325d27dd87b0e66a9758dcc
MD5 2fc8ea3a925f1f226067675b130a8b0f
BLAKE2b-256 a64c54c8b7493c4cc953f3c416b45d3d86caf4d96ad0533d95673082f335ee27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a718bee35631dfdf41702671505300cb73619c21e44b64a16fafe6596410b004
MD5 dbab29ecc9953ebaf5031b29c97cc411
BLAKE2b-256 2b273495d08a278379f039d19301a9d6fe9436c9ef8ea047621fcdfeb9d51fc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eb7aff37d74df2b41d158eae89bc40952f337e4ba20994638515293e19b95956
MD5 234e00845e831ce8ef17bb21ce296820
BLAKE2b-256 b084a73d3b26286662202f5905d2225cff993595ee7dadf48d666a7e4fbf6c82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6178fd5e67e89e530487876086f357b80747430a4758574fe131add9db759fad
MD5 e119a937fa6f38bf2992bf17b98a7ca4
BLAKE2b-256 ef5a87c18c7c0feea53c6656a731d362471d67c056e697e79858fc2e4730bc48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9603173c244b972f0c741d410daa7a47cfab5cad57c6ca459c9ea426f5fedf9c
MD5 6abebcdac91e5d40cc33e1c20960edc1
BLAKE2b-256 ed58ac01595d72b9a9b7f48e6cb1f12b322c0493ede7ad49640d825d67e20dbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 121979e25fa4d329949b084bd30368e9fc5cf191a22583ba45ccd4c117fe20c3
MD5 950a087d09a4ebb5932ca3486ae85b17
BLAKE2b-256 c6ffd811e58a7c96f96a3603ace98ccf06b10c5f99521944ed259ba74795bb7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f9180ac4eac5e4ebeec9d63ef3b3d475a1d118f0e71a8ee3ebec8b572cfb3904
MD5 052a712a10e323082bc083000020523c
BLAKE2b-256 5e45b4a1bb2bd874cc613ed3e2745dc1311c14cbeff22eb4a88de899609665ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 16fbebfc21ae30a8a327d8d593cdcedb05e277f06104db62487cdd4a98601b00
MD5 cadd1d475d9f15f3f14fcd9456549b17
BLAKE2b-256 afe02c535ef03cb4a184eccf026e2b864ce6efec9a6bcc87330f6550fd883072

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b4deb52e8eca9e78b17749065cb860dee00a6b8eafcd4648f7875bd689696702
MD5 636ecbbaf768636bce66e79ac82ddb30
BLAKE2b-256 2622967085608566f11afaa41c600919aa33ca45595f188832390ea36b3d6045

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc1b6c60c2e89723810b66f84a44d7785eb8e5b98b821dee6e102b95da3c206e
MD5 e48b343a30604f2d2c251358533da1fb
BLAKE2b-256 6a93247322a9a200631bcfa9651679d32153ddb0c1d799790678a23c88181353

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 abdcb2294dbc9d3cc45f22ecd16c89dfebf07e92e266cf7ea01955a33d0b0f20
MD5 090645b5449e03a64296c8dcaff66d16
BLAKE2b-256 eb5d8d6bd6c13d99eaa4fe09d243fbf5cb69eff792048815b1b6d94b0bd12f22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 963e97bcba7add4b789904a212d685916e88925cc103f88aa52f27a916881a29
MD5 7568a47c381bff04a1ae814b2cc43405
BLAKE2b-256 6017cbef54b034d9a2e7aa02320a55b43da20a7e6c460b10ceab91b19c3f6c29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c333de9616a57940eb994d35c7173bdcc5176ac8a9171460c6f0f5052ad5fea7
MD5 ef98ee8b134237c74f8b05eff5e30992
BLAKE2b-256 0515b54f5a27166eed29734a6bfeb52b8e9661ad87b473a1c9905404b1dd9bca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5f94d056dc9384308017e0f948ad6d46730fbba4cf37bff3de68fe526eb4f66
MD5 64d0574f7706cfba2073110f013c67ec
BLAKE2b-256 ae55dbfbc95e5ca7d2270eb827208e8984ead2d08f36f71a917e8a343c4ca4ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 09efa8cca14d1975cc1063b91e37e751c22b21929ed499bc7282186e14df1dc8
MD5 574686471f1f72a0c1d64beaa24d52b7
BLAKE2b-256 4bfccc8e8b1bb76347572aecfa32b96467f06433f9aa74fc84e02e27eddcf9a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 67e5b3802c466ea3e4fb6fbafd827d92ae10886fe4fd06f1222532b4b861b4a2
MD5 8f193b19d5b5647017a17a10b272d81d
BLAKE2b-256 d1aa5ffcc8f38567e54958abb97a41a60fff78bbbfe22df5d3eab858b5d2e5ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0e238cd98f1043fef9cd1eb637ea41e4b89f22ac3af0803506b7c508d1967618
MD5 8cd18317ebc9ef184e361f813098f291
BLAKE2b-256 4fabb222cafa75b9eed3f0882fd74d2b3000e49de4a9b2fb7df20e773527504d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b095bcf6aa9d78c886b031fb2688984d0ae101c2eaedfe2f6a55b05124d1ef79
MD5 46c2321d1fa6c7bbffa21da527fa1e12
BLAKE2b-256 b577ee0a2f118667311d4b7494b8e0f4f6dc6d7a1d4827f6140c5acd83d09452

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2076a498ac4a634677ad93ce25ff0c3b0c9cf5c2acbb1261321eaf2eceabbb5e
MD5 f0eece45a87dfd40ce192bbb521d818b
BLAKE2b-256 f3264c83cd6e74c00a419e73aac5bcd7f002092b6a3c628590e2a3da0f31604b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dde05f35ef89f38bbc9e3c89387e55c14556f2e311ce0755ec4c97e850263569
MD5 dd18c6745afd820ebfe781fb2e1d19bd
BLAKE2b-256 9beb271eb957d658dc555391ad2bfc2739275f16c2f81f60463b75ef64863118

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 220ea8cf851a2ced6e01a1379316592cbe1b099b318a35984b257bfa18ea40b3
MD5 ca0433cba4f75eaad69324adb5616a68
BLAKE2b-256 111168f9032cc0cfdb2eef0ba41bfb0908bbff95661821547e28c64de82272f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43497b9c2cbceba9af2958de76ddbaa06c5026f96630fb6dd658ee5337e020ba
MD5 02f0e2aeb9597ca6268bcb22d3e3eef7
BLAKE2b-256 c3efeaea20c176c7dd39178d809fecabf1ed9d4f94186aa3b7a9ac50fd6912fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dacd6358c84a8ec2e4e0b10a2b360073a7aaf4cdec17283866304f828eb3a28d
MD5 31d5f49294246238a3e332d6246d7d2d
BLAKE2b-256 361d2378bfd6a6582b2a949c7490f239bf772fd05b72a368175c53f467511153

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 161f289ad3fd7c2e5a8a56497585e8466e73ae32041ef74c6d5dbac83438d14e
MD5 2d9af04378ae212ceced6827e02db419
BLAKE2b-256 d2436613fe7be6314ab2a01bf6b30e5e7d37951155ae854feb348380ea387ddc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3dc2b352664ae54de067ca8f0e643cca6df7687f91149fb3a1bb1f768e1882fb
MD5 4524c1cd51f5ca9b4f378a1ad9156cad
BLAKE2b-256 8471d3ca98adc41425a092ac762dec006ca7d88c60913ec4bad5c157da5e1a58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4af66536e842667f0fa4cdced69361ff74ce40fd2b3e441801756e34d8249062
MD5 a7522b7d71f2463f0c53325fd6902126
BLAKE2b-256 1fc6ba10c51224e1c2b7a4e85f961338bafb38e95c89eb673b16c8c20f7d663b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 15c71aabe947fde3a1ee2803c4bc94efa345bbb6b869e4f271dfc34deb88878c
MD5 5d5144479035d3e3a6c71df4aa7c9e18
BLAKE2b-256 fbd2c68c08eee04d064b537d9b48f8a9692e0c535a750358ba1df1354cdb023e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef1e730a9948c40a709c1adbb66492cc1f79e17a423f2505f7b96d6f557c41cf
MD5 25c4713232608eb0c691c88d12232492
BLAKE2b-256 34783e0c6fccc50717e1f9e0b65d165df09e9bd0acf49dd7a086c4e470dc4ad9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9f0615775b97379b8de85b50f0ce6ba1830756f357e5b439c32ebdaca1fea27f
MD5 9489e08d07518f8c34e6553d1b97ddec
BLAKE2b-256 b426514f57c24d29bd8955c5885c9c8d585399bb8fae555e6f835d52bbbb2b22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.6-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 99a7825f196699a104204f9293c76eca1f8d90e74075823a548389a043184d1a
MD5 4543695e62c41d6cabc64c66c3dcd904
BLAKE2b-256 511d5bf9694382471643fe3845ef52387909ed38521e7266a15d2acb696547cf

See more details on using hashes here.

Provenance

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