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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

mlcommons_loadgen-5.0.16-cp313-cp313-win_amd64.whl (308.2 kB view details)

Uploaded CPython 3.13Windows x86-64

mlcommons_loadgen-5.0.16-cp313-cp313-win32.whl (283.3 kB view details)

Uploaded CPython 3.13Windows x86

mlcommons_loadgen-5.0.16-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.16-cp313-cp313-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.16-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.16-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (517.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.16-cp313-cp313-macosx_11_0_arm64.whl (465.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mlcommons_loadgen-5.0.16-cp313-cp313-macosx_10_13_x86_64.whl (479.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

mlcommons_loadgen-5.0.16-cp312-cp312-win_amd64.whl (308.2 kB view details)

Uploaded CPython 3.12Windows x86-64

mlcommons_loadgen-5.0.16-cp312-cp312-win32.whl (283.2 kB view details)

Uploaded CPython 3.12Windows x86

mlcommons_loadgen-5.0.16-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.16-cp312-cp312-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.16-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.16-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (517.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.16-cp312-cp312-macosx_11_0_arm64.whl (465.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mlcommons_loadgen-5.0.16-cp312-cp312-macosx_10_13_x86_64.whl (479.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

mlcommons_loadgen-5.0.16-cp311-cp311-win_amd64.whl (308.8 kB view details)

Uploaded CPython 3.11Windows x86-64

mlcommons_loadgen-5.0.16-cp311-cp311-win32.whl (285.0 kB view details)

Uploaded CPython 3.11Windows x86

mlcommons_loadgen-5.0.16-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.16-cp311-cp311-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.16-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (517.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.16-cp311-cp311-macosx_11_0_arm64.whl (463.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mlcommons_loadgen-5.0.16-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.16-cp310-cp310-win_amd64.whl (308.2 kB view details)

Uploaded CPython 3.10Windows x86-64

mlcommons_loadgen-5.0.16-cp310-cp310-win32.whl (284.3 kB view details)

Uploaded CPython 3.10Windows x86

mlcommons_loadgen-5.0.16-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.16-cp310-cp310-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.16-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (516.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

mlcommons_loadgen-5.0.16-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.16-cp39-cp39-win_amd64.whl (301.6 kB view details)

Uploaded CPython 3.9Windows x86-64

mlcommons_loadgen-5.0.16-cp39-cp39-win32.whl (284.4 kB view details)

Uploaded CPython 3.9Windows x86

mlcommons_loadgen-5.0.16-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.16-cp39-cp39-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.16-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.16-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (516.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.16-cp39-cp39-macosx_11_0_arm64.whl (462.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mlcommons_loadgen-5.0.16-cp39-cp39-macosx_10_9_x86_64.whl (474.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

mlcommons_loadgen-5.0.16-cp38-cp38-win_amd64.whl (308.0 kB view details)

Uploaded CPython 3.8Windows x86-64

mlcommons_loadgen-5.0.16-cp38-cp38-win32.whl (284.2 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.16-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.16-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (516.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.16-cp38-cp38-macosx_11_0_arm64.whl (462.1 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

mlcommons_loadgen-5.0.16-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.16-cp37-cp37m-win_amd64.whl (307.6 kB view details)

Uploaded CPython 3.7mWindows x86-64

mlcommons_loadgen-5.0.16-cp37-cp37m-win32.whl (285.1 kB view details)

Uploaded CPython 3.7mWindows x86

mlcommons_loadgen-5.0.16-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.16-cp37-cp37m-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.16-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.16-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (518.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file mlcommons_loadgen-5.0.16-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f4449d62450e8bc71f112fe21601082aa4a7651db2761ee94cb39cfaad787329
MD5 b8c71edcb59a4b4f8b61365bc03ee2d9
BLAKE2b-256 4dec9710cd525bacbecf5b9fed5e20be19cefa12d236ada6d2b793ee14113958

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 142fe05bd46bd4d5c1bd4e46b93949295975b07457c070dbe940747b2a3e424a
MD5 ce33756d2355dbd07f9d12bd05d36e46
BLAKE2b-256 95ff0c8183ca9406e432ea4b0ce95254f392ea0079b4973a12d4ce1b30ecacd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e24410fbcfd8892a3fd162ad8558bcfe217ffa7a43f633065290b9bf9aa0f1ed
MD5 2f64ee8d162190c2ffaba658e7ea72be
BLAKE2b-256 8c8a3f456e9f28167c600fcda69bf8de52cc8aaabe1b5d0ee4a3f990caf91579

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2af50a296b07c44bc103581c1caadb9932cf89ac9075aaf1f942f22d7e381713
MD5 044bf4c70d41836b0add1a722b7a4a35
BLAKE2b-256 fadba9d49ad78c0925e9f5fcbc22024edadf112376a8507f2ff24e9a95561c1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf549bacb248269e4e6671b529c33feaddaa5093f876aa919552768832e710bc
MD5 d635ee1a5328da9b15bd991fb0037178
BLAKE2b-256 1fd99b58ae144ef2fc878c3fae52b01140a976592b113e7e838006d7c90aa7e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 904d12231f3496e55d0c57f3629d2292d0630182ffe8e26b9dcefb443b7490ff
MD5 b1573b8caab3bb2f2891e3cbb196b9b8
BLAKE2b-256 7ed566b2927560710bd9b65494e2924bf514d3d23fbffa9a1bbd6acb868b9e8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c17737ef82bfda8f9b5c52aa0831dd8109fee714bd07e5dce8ee6f15c402b8b
MD5 720aae7adebd9210f1caab024ee22de8
BLAKE2b-256 729ad9c0949f2d66ec1e178a8ee6808c800f3ef071a7a60a47ded724e9d635d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 08f0b3084068266a90f61cf50d7944895b5ab81fc363e5f7256ca8dd32a00e00
MD5 2aaff07f8e4e21bcb9086b27ec2f6201
BLAKE2b-256 00b8bf0d619f17091e32448b00db315ed86ee25fa4aeb275d6716eba5c6365b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f3276a9fe9f9cdf494f827dc948ece1ae1b7b0e4beb4eae22b075ac1e0de1892
MD5 477cee000b4a2b539afb42c3033ed9ad
BLAKE2b-256 536cacfe69b304b2cc04d59c54bd49ff8531be9a178053da1da36eb80a9ab39d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f99fb71656a16113cc381592409e20cb500f808dc348302a1630bf0d2c69cf9b
MD5 f4e90198815448f96e053660a7165c4a
BLAKE2b-256 e0e993bd9b94f0e1441265811ffd9f6314f9fd47892fab3a2ee5b5b82b2dc0a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71294e35debe75f11bacbd1e6164cade73e0235854d0faa2afbeb9e3381238ea
MD5 9743240cdbb2f4e69b31f23ea2435473
BLAKE2b-256 ccee31413396f9ae9e2045128520d6b26e2e12b0c517648408c6dc257ac001fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4b5127edc4135224812f15243f3f75550f18c36f84f35a134c73cb79d2109986
MD5 a42a44ecb03d99a62d9074e91e68d7f5
BLAKE2b-256 d54fdff68ff4d4fa2a891a2a02faee281dcc0aa5ef5e2a2dcf55ef3fffa23b1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af2c9a3f0459df3760ee121e0119cd49ecc99b4531c890aabe1c51ff45d69b4f
MD5 799b78d7233c9cef7c08d66d866bbfba
BLAKE2b-256 2ed45fd1b396beb8b8b366a3f9c71ad77216cfcdf2c81fbedc9d1cd31fc26405

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 22c30ab46dd4cbce09afc2a05bf80f4718bd02275ea5ef7e9ab542bfee0d4080
MD5 3017a4e2c9f76b2410918ce34845a0d5
BLAKE2b-256 53c62ad70d96669ba756fc6fdecf08dfa678962a07540554440f16aca100c459

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b3b02a398a9655a118ba70f16c56ee5569c30af51d62188ff75cc95573396f6
MD5 20604568330e833d7466c6521fb0f8fc
BLAKE2b-256 0f3eda891122422865b19e880ba21d61a09a3e253e8feeb389500303561c1edb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 30e7dc6470f7a73b5cbaa8a061ec4bea77ea010d5745afabe2f49a16df2551b9
MD5 f6f743825db48d9fce690b93f55efb86
BLAKE2b-256 efd44d91dafab7699066ccdb117d8ecc905511ecac2e9050048f7f44bb1d2099

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5950f54c61068f4f31b243edd0c57cbfa5c36d6264108125c0d0f85f05c688b5
MD5 7ebb9bb047da89c0438632ef6f4010c2
BLAKE2b-256 eb58923d33abf47f23a369655df5445474ffe1c2b020f9ea18f1e9b84d42df98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 082a05645bedebfb9d0931567fef4b7ccb89d78897f6afa0078cbf501ea8482b
MD5 646c7a630742d3d8b3e9df4d42385d92
BLAKE2b-256 549e3dad4b8a4e254de3758e473ee38904ae20707b9b95c58df8ffe55641b56b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ed463c1e5f6db2dd04fc76670a1521610a45630d2242b617a6ae42869273a97
MD5 ddea757d925099e1a5a9f5c0e4804d4a
BLAKE2b-256 76c5b7b8b2502602dba99449c6f1b3bcedd1faf9b3d26276eacfd0276bf57ed6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fb8ea2803ecc3a6f589c00d87e6d12f800fd72f6113d64cb6d6b72ef55cbe1dc
MD5 af306aae2edbcbf7e768463f34267b5f
BLAKE2b-256 a7fb752dbeee14b8c60653ae6ab8fd8f13dd520fec6a8aaa9b13aa34c24991d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ad05486e8ea95d9e1471012aea695adc5a3b43edccd96f6e283c3b207f58716
MD5 c6d0f8e5649b935c62a0b422bca359ff
BLAKE2b-256 de760b1b9c398189ca68fb92e9222f64530705d50110e66a68dfc80a35604f3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d4df8406142ebd214d0f4a4dff2d6a6bcc52b79f3da690207d7ab9d87df9a331
MD5 7502564d1f5b4177561519e672ee4003
BLAKE2b-256 b5a247eefa0fef79ab7dea8217386ddd7270ceb19d5a73567bfd59770031b754

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae6f0055ee4955af39bc8430f002435e6d6ced764c41de5571262d93d2311b3d
MD5 e82c37133bb7e771b8cbe75a751da708
BLAKE2b-256 4bb4e675e91da993dd02f99e154e95c02817846bb2a5a78e1423ec86b6c26cd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b646f372427447a0cb80440f2d000852382a996f021003af69a71773493e7d1c
MD5 3b355c42fcad732dbeaa26a20f0d9348
BLAKE2b-256 5c22b896e2ebf93f991682d3be3c708e9dc1567b30cfda8f91284a8f3e26c6d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 73ea2fd977504dcca3010bf1d806d48d41586e123005ace0bf880edc5402dd9a
MD5 d33fdebe8f99d41dea9db74cbc242e68
BLAKE2b-256 d5c227e7e9d0748e7bab880af3489e2c223b3ef2f6daf6de47c35b8c00a1afc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9dd939022ee8c5517af9b142aecdba24200f47eae5114eec28a8988d314be69f
MD5 899c62632a52cae56eb785a6ac8e6e9f
BLAKE2b-256 1838395b63a59eeb3bb2b97bee974f25992d3a9b29944b3882a88a6f5b9db3f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99b30bbff533d92f1bb7df9cc9fb9a0c628f21eb33a9cb802793b8a1f1cbef46
MD5 c36b32a0ba49d649d58b0d57b659746b
BLAKE2b-256 c20aad884eeef18841f5b979c704603475c78cab0f303e23fa60526701311fcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ff5f11f544e761cc00a09cd4ebc03a24c14b581f267eb2871f3c8f2281d8ea7b
MD5 e3f34d38329a42e6cdcb131ed8b0373f
BLAKE2b-256 82b50f8f62b3f3a9b1a926548456f10e3e33ff40f0a1ef02c2441a2fd9c465ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41e2fe73efa76502e09c4ff9d185c2690752f0356f04664e82a7d40931ea7ed6
MD5 5408c52c87599bae8c60c1a78f9c898a
BLAKE2b-256 6c1618dbdca10a3604507ee1415cb579ccb32933c21055d00f6d10f56a2c1b28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eb8d45a56504b618752462ff1c03db980236a636b5897d099353a263d9c1e7c7
MD5 f3a4a96307520ddc24d820b91e065903
BLAKE2b-256 06a966da4fa6e8de133660bf90075592026c8d45bfa39f5ef40ae2b23c411879

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08fc57129df708dfb76058ed86507bbfa38ee822bc6b02b9558c3bdb2bb1d1dc
MD5 ddf396e274d1bbefe50d540b8131f018
BLAKE2b-256 d11cdefa3e287c42da5694969a7005a0c24c69b086ecb782ed06e5881f8d2e21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0a4c2414216013070d361a24940bdc2c7173794eba29eef6c3dc3d8769888e31
MD5 d79a20620b1aaf6eff3f99e2d8e3b80e
BLAKE2b-256 ced782cbdba93e86f5014f89b00f31bcd77f0dd5f74c3bbab3ab4650a5b0772d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 23f607c576e90ef69447ef1ad343966214b6639ca0516bb2d57e9aaee6c9acae
MD5 56b76245b720454d6ec0c225d4fda554
BLAKE2b-256 86629debac8c5d843fb84fb1a2689e06b0f0e985738f20ceef81a04c671fb15c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5adeb400d8d9f93cc77d8fbbab589e81b361b379fdddf0159802e8dacb5e82e1
MD5 6c9f6e89f0bd67abde05fc3cc6e73365
BLAKE2b-256 cfd92fc212b74a01781cd13c9b6038c52a80543034bcf1519ba6aa654f5cee9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0cbb4cc799dc81177160671eb418f304e26b7d6f8eb6a1ac1ff70076964a3730
MD5 d45a365d1e39d3502ca506dd43a199d3
BLAKE2b-256 7b3e1b9cb8e232ee07bd12365c2d24f7c213c0dd107af8472b16e2a2326d2ff1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7cc7a31532648a63ab44a07a471b6b2c6416cfc8643a1b3e4baa39f4538b846f
MD5 a4b259f6127329fb6d8f7ce960818577
BLAKE2b-256 f27e7a4e35e19ff09b05c4d6a174721e91d99f1de6034bc4635a9a9b95823de6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 242df053947f34f54f885bad137e103ce816793ad419222e5e25efb3d8a3c1b1
MD5 4886337b7ffb86613bec664637220fdf
BLAKE2b-256 acce54f6f177d877d4581bb331d3faad42641b05e7f3de795fb4140e0181052c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2ff3484682223f841865e9aaf45acb704064e2b255f8286aa8133707dd017351
MD5 b91be02901036abcadf41ff5fcca7758
BLAKE2b-256 d1cd2d173dbe3cc6f3559a8842025c89aa43b1c0392abc34474eaeb6f1ed30cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad417f94df8457bb7ea3d37365f951df2e250b422b33175e8fa0939700a36135
MD5 68037178fb3857705ee701844c03bafb
BLAKE2b-256 b49b80424672dcb5e1d13dc390af1325c1acc3fcf0d778a5f92fc8d4648c9305

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e92286a8d5deea5acafa46d3a8f23435ead9b411e17b7c19b3749f87084f358c
MD5 49199820b2724a6f6cc039a66a28b543
BLAKE2b-256 10db17904206deb160cc693005a56a7fae457be6821c113b7fd352cdfcd153c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e1b2552042b0c8cbae33c852055b036a1a646cd14a5015951b5a0927d9203f73
MD5 cf4e3c031e23f9953d9e60501555ca5e
BLAKE2b-256 ebe67f3eefe89a07dd58f6a4f787daaa146fffc03f5dbb50cfabe0556608fb58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0adb0135df23355bf91698e92c0f51cce219ca18eb8cdf3a041900e2209fb40a
MD5 d1ac85a5722879a05e514c6d1d873e62
BLAKE2b-256 db4134558e4d7197b3a35f44fedaae12ca6fcfe87ecddd37bd49386c1a9d2455

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c11ba039128d2d759f7791a2e2507effb68a42f081cd9b1ab856e6a4bdf6e5fb
MD5 0e58aba3d171eeb9362450329cbbdd6a
BLAKE2b-256 44b7c7d79d9367e48c4d351f67262d5a98c2fb273d74d0c9211310555ed9648c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 295b0f895399f5b9959506a65f53056374f4eb7eb2e67c00a83d08dcdb834b25
MD5 2261e34d33389b8177dce1d831c69055
BLAKE2b-256 bd167997a8e23c6502a2c79ed3fbe974da506f270ecc5954ebf9d427144eb85a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6b53806275bcb698f466f2ed87180022bd8c82b52cb3596383c97a3619f37c6
MD5 b5b58c6c1601e905f2b7d619b89cd130
BLAKE2b-256 a1040a924411f7cdc9f80e8be2df5ffe4b91326b7e25d77c0df0db3e09f3cc0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d9748de955b8cb2cf4b2cb42332b8e9b9fae404302bed0ee7d25d86daef81764
MD5 a7594cf269f77aa75912208d603d6a7f
BLAKE2b-256 d833ad474dd6eec5bbae460b375ca37c4ebb1eac2e9408bb84e711b54b4a0b6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8dc9136da058e204b6dfc30bdb95df4799af84226e14dbdf9ca748665eb12671
MD5 8a453f19277eeec1c01289ee0856f45e
BLAKE2b-256 56cc93d8092bcbd1c2097135e0c0137ea85523dbfa8e0b142a33094f0fbae012

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3e3e13f9b8c950f3276c7a08dafc4bee3ef6f692da8b20f4cfdab10553c379e4
MD5 267580125488d6c842c1437c4ac9490e
BLAKE2b-256 80b0665d9debaaa4a2327c2a16e91abe659a22ac9fff7bae27a85fec28483a37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 bd9b3ff6187f0993acf6c71b98bda65d4cd1704ab6ecf932a31445ea22b4ed24
MD5 08c15f8752da322caf2958b3f65eab28
BLAKE2b-256 b7b09617f774c356a6c4bd41214caa07c1c587a74bfa68f45a467036b32b167e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 6e6a5e9144700ed1503cbb26ef2fcf864f5dd09c5f2017103a5b98f46ee64597
MD5 e3d6abf040535d8c6f098507d2c2a62c
BLAKE2b-256 e791fe17c583a7c92a66b775e01b55fb3211d09718ac15c65cae5748cbfbcf5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99e1164f16c101a088fee6efc6c655cf1bdde72d4f5f1e4bcd669db35f16ce11
MD5 30c7316f9193ca4286d7db2fdb770eeb
BLAKE2b-256 88e283f726676fb394806992f0366e37ed4e66bb1202d79f8dce0f154aa3b209

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 623704641bc13c4665a37869ad83a28cc52178830646171c8c199697c48f93b9
MD5 9f0f44a58f4c06a68c9fceb748eec21f
BLAKE2b-256 a35b1789271ff92f2b0ae3928a07c4ff47c138cd699bbdd8606722edc7b313a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 493dd015ba19e98c36dea2f292f3be8ae6c9988b499795aef16be726e2f92d6e
MD5 9391e90b2b125deeb3c66b0a88957718
BLAKE2b-256 05cf1eb77cba21df1ebaf3cb5e7bfabfd23330a0415d25df6a5447487aca718e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bef88721db7c7d2fabd8e85b0a96da15613e8051f13e8b28c0b9ad9db7860fa1
MD5 a25c3c1cb7f7ab341cc9f8005d460dfa
BLAKE2b-256 ffa246bd9baf10b548b30bb976c5ad2a34add2d7d796164ea19cee9151f87c56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.16-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f715aceb02161898c5977f05d58665273451f0bce897fd12c2a751516313f8d0
MD5 607965a7e5cd97660123ceeb8f49a396
BLAKE2b-256 8093b24a504e66a7f6bc7bed8c3d066487f8fd4ad19fe337e14a87f1cb42c757

See more details on using hashes here.

Provenance

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