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

Uploaded CPython 3.13Windows x86-64

mlcommons_loadgen-5.0.8-cp313-cp313-win32.whl (277.9 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.8-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.8-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.8-cp313-cp313-macosx_11_0_arm64.whl (464.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mlcommons_loadgen-5.0.8-cp313-cp313-macosx_10_13_x86_64.whl (479.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

mlcommons_loadgen-5.0.8-cp312-cp312-win32.whl (277.9 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.8-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.8-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.8-cp312-cp312-macosx_11_0_arm64.whl (464.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mlcommons_loadgen-5.0.8-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.8-cp311-cp311-win_amd64.whl (299.8 kB view details)

Uploaded CPython 3.11Windows x86-64

mlcommons_loadgen-5.0.8-cp311-cp311-win32.whl (279.4 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.8-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.8-cp310-cp310-macosx_11_0_arm64.whl (461.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mlcommons_loadgen-5.0.8-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.8-cp39-cp39-win_amd64.whl (293.0 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.8-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.8-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.8-cp39-cp39-macosx_11_0_arm64.whl (461.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.8-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.8-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.8-cp38-cp38-macosx_11_0_arm64.whl (461.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

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

File metadata

  • Download URL: mlcommons_loadgen-5.0.8.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.8.tar.gz
Algorithm Hash digest
SHA256 d2896a17c5c6cd4f27c04a6ceade370985c881daf7625c76204a1753ceec8142
MD5 0474db4a00b38d6bea68709f6c248c4b
BLAKE2b-256 6cbfbfedb1e6237c8485c83e1e85bb61e4bac54d7296c0f6f7248b00295b3ee1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 22ca4219bd25cd58b9340495d623280a76f76eb6c8dc13b6bf7ccfb584fc569f
MD5 d9d4e7bed6366354758f9d8026dd3bf7
BLAKE2b-256 fadeda91bb730f5f9ed5de563754a84719e38322231c3ad2792d23185995d737

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 64f58dc9253369108e13b83a9b325855238fd1fc0707bb5ae88e927ef6aeb8e0
MD5 0c642eb068e95e0311a195a72876b004
BLAKE2b-256 47e9b832ef3b2c6af4c9a359a97bc78dc6928d39093c4624986c01a9e17b9bbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4edb43339d453b34680c7cbb5ca9c239113a72efa8a040edee5fe401f08ebe8d
MD5 9e53ac0155d16641f003dff1336f8447
BLAKE2b-256 addecc2a0954cb4a3f9934ddbf55977bc567264b029e9e7670d84024c1eebc87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 50130bd69e723b49cf8491afe8a672f1067f3a3ffb881114605543e2a224a13a
MD5 7cbb366faf58de2646a7bf92baf998a3
BLAKE2b-256 56107e7143ffea9f57d819060c22027487eeaf36321f037fa169f7b0b2737d67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0650c482c8543e0a60618382838c1b52a0ecda97f1ab81360f1c50eb13aac483
MD5 d07b2fe2a73ef9980a21e95f78d86022
BLAKE2b-256 fa05b253bab2cf79ebdebf6746ce2610f8e319e7c183fb175d59fff97157e0e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 40d924736f18153c1c580c4ce70caaa20016916e0e69be47756f0faa4f415f1a
MD5 501f6d5049868b626c3c561db0355cbd
BLAKE2b-256 9d8ef870c0fa91a1b34812e32a662fed20f7a6d65e03f27ae45a03069f596720

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0361a9cc935338c46154a444210faf7a7b522774dcce84985ecd07719ff4057
MD5 4514190263838c84cecc3f18fbbdb443
BLAKE2b-256 5609e329416ef16c845ba03f94cdeda39894f356c3cd76210ef94eb80efb2d13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ee5f0aad6ea10b43d64e69662a1eb7b8283502d3e0fa305a77cfc3837eec806a
MD5 9d294bd5b2a1df4e43d80ca0d9dfa778
BLAKE2b-256 930dc038dd704f7b97779a4f75ce6147e8f8f3e84a583b6c9164b4ed13521222

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a13939ffb751327fb475eda5df23ebdeccf3fa2699be403b50a9100aa13e7a94
MD5 1cfdff990ab8d79aca520742aed7e088
BLAKE2b-256 ed981c4ad7e855b1e7bdaf4d6e06aef7f1eb37823ad67563ff68dc3384cc1ee7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ce7a2f86b2d349048e4dd52965df96c539c390ee0d2657801fa7f4fd623b5bde
MD5 10d9ea61cff8d079eff6e99b8c64c85c
BLAKE2b-256 38725da26e7624e94255395e8f2a06f093d2d7728d447ec4f2f9b469833af726

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 143882eadfe05706e4c4ae25c6ad6673eb99cd33dea91fe999a3bf4f90089d38
MD5 b4eeea8ff4f98553dce900fe08abc748
BLAKE2b-256 8f3dbf6cf052e2737cf8b385b1ac39d6af87a241100a1db42e0880b16238d9c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e092342b01138ac697d2cd7f53cd5d34e6718448f906bf68a23e906eed1cef48
MD5 280ee4495f05540209545146b1b08b10
BLAKE2b-256 2dcd023b3718e0397ed3a95381fc5196e939f8fb3ea27740abbdb1d108e06e56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c44d32a25d705cdb708662ab0e7e2b3e8071058334dac6d0dfe05a3cc8c76a7
MD5 2d8e4d4b909648ea870d65f1e88f0ab3
BLAKE2b-256 29cd9683c252f557e4b3561e11bf9060d55a6cb3fc8cdf711882cae8ab73a114

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e12d2072bbe9450a780b0d282e90c4dc5c3dcfed5d9cc6082a67f36191efde02
MD5 ff9408f8847e24b266054730cbdec824
BLAKE2b-256 99b40fb52bfa252abfe684d6b3707fce65aba035931692c83fd284883d7fc6f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9854b00082fe90c507b5b26d52a911363a48d9029e2685a663b8d64bbf358ad
MD5 a7e71f70ef12db335f94bf6c654a0c11
BLAKE2b-256 c80431c6e3f91ce31650a1ec76952845758bab085dd9a8bc6d22da3566c41de2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8b7bafc4cdaa5a83035187be375cd041649d998447821f2a6e8cc6a796a46982
MD5 00fee520d30d0eb8a50893027bfc9c38
BLAKE2b-256 3c53dd5dd8bc4674c3d95bfda0f59cc8b5457baeb8bd63b05d4533034c7398fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9277c6cb4db6aee5fd3318d0d8d7cd59254265d4ed47de7349f85f4515af4daa
MD5 2fa8f4c642cfa0961e19c33fe412d24f
BLAKE2b-256 f5ac72d2b4147fa7eaf18da3a81ea0d931fe1a47dcdc2d7401970f1b969747ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1d103b08313cbc00ade6ca5e464f3cd5fe3d090e873c643238623448c8967e3b
MD5 56851a90c15e230da212f4e1928d45fd
BLAKE2b-256 b2a202fd745187f41825fa58c5110d73f463a9e3e26b644804dfc5bee497932a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf6e1afcadc70df0223e07e7fef363d80b0ad93c64020f8c36cebdbd1010d489
MD5 fb0536026627068d5315944519bdf351
BLAKE2b-256 cea13cc8cb471d45b760716b746a19a16872530df8ce070a501d5daa9f156563

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9085c316716f145967c2d4d6c31bf04d4d185cbd41d0d533563c4835796f8968
MD5 4430577c10ec74c1ace947a4305a52d0
BLAKE2b-256 7feb2581e4b80c349451fe7c0ba734a8bf688e97bdad2b65da97cfda57cf7b0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4deb6afbf67bd6066e251c3694c0e975266d006078dc6d3e6b3c4a0443b88258
MD5 f4baa9469b83f6240fe0086ab600d61d
BLAKE2b-256 70d351b3e77c423e2b0355c490ecb9a8c40c3c1000917b3f07cba1f694ca41f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f931ea59d58563aef3f1eb544da766f6b621890edb941d7c1b9def1fd518772c
MD5 7f4f647ecaea6258b2f2661165df270b
BLAKE2b-256 1c5ef4ef0b88f8f81e6daebef1a0b23cac07676f69e70712d300c4c9140ab827

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55f7cbfccc97ac55a6674f9238b9c8b19d876e6b3b4a852e486de0e3d97748b7
MD5 ffbe2754378a991e19980b8cbf68df05
BLAKE2b-256 0b6db062c457f81d1665fe04ccfb0a461e9e2ed2a61324266a042aea37ed1d6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2621a0db86d5c594c3307ca6aefadea039445017c24a46fd20180e8e82aa557f
MD5 e190a2d63fdf0caacefe384d644707a3
BLAKE2b-256 ceda0534dfb49cbe45da291b4ca3a07ed70a7d034a387f01e4bbb890dee95236

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 09c79f310dcd38e1790435e5bfa6e2eec8b0aa2ffe0d813464a3d495f8822924
MD5 0780d353813a04e0744c705451033659
BLAKE2b-256 1462c379a0c536101c42a03b26d454f915afea063bb772c43df5afbe35c07d6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ad57888a7aac92be398f1c54b0bf58fa24024aad472655df95902cee733b3446
MD5 d1f5651983e24cda055d54afb1abefa5
BLAKE2b-256 b5680ba436f53823f7187488c7b121f4ea91653051262b5f78ee28120389e215

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e480e20238717c49dd2a8b5a8564be3cae789f900e41fcbd49f322de59a8b1f
MD5 fb61aa6f0326f937770377fbb559aad6
BLAKE2b-256 49365fd7932b63e9a8a15c9a65ccd33daecb62fe57fe6e2420f1809d87bdc025

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 297e1915717918a9886b8768d61a0165abcf0a5db487e7d482d1c9641af359e1
MD5 88b9ad192479902667bfb321a7d6e6c7
BLAKE2b-256 becec3de5aa7522c417863d2b0e1947f95cd24950dded2cb4d4f1583b974d295

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4af3766561f6eaaf116f4f73a3466f7a4e76def30c591392df7e87fa24968a0a
MD5 5ca40794c9711f828c3f2bf15394f3c7
BLAKE2b-256 c8202a4c13c6bb3d52b5ba7dafeb267b84b6af456c4843716a86463dc48f08e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0b41df74c7034dd6a15e52d6ea1ed1c66a0709242c8c08a8cd0c4a0050720118
MD5 4884db308a50ee7d0a1e40923b13aa05
BLAKE2b-256 f3d5e3081665f8f6e26ebe4fa65a3a7a6c21bdf8098a65256b5d3c27f2882cb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8cee51bac0ce09e4bc990ed616b9865a86baabeae747ff167d4d1b2e4b1ae016
MD5 8bfd91b94bccd2e64b8c5f1d837c8063
BLAKE2b-256 620e34828dfa3ced09db013fd5140c98ff19b9edd2cf65dc0086bb8282020181

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e97dfc86d0af1d34682b83d992f29b00ce0a284214956c4dfae9b85def57ceae
MD5 f3d928f3ae334f00c7b0bf4590b3425e
BLAKE2b-256 7619fc18765f35f54594bc340968d392edac1b890774f128ee3d2e4d9c66a540

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9a36878bb08770c96790ef412bca00f09776aeda0887594aa31d8e3bd3e03c76
MD5 29c7b9e64ba1cca8afaf4cbad117339e
BLAKE2b-256 6ecac2118d7e2623ecfddf45fa62099d70031ecd4d6375cc160deb9fa83a2c30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b8d109db0e501d4e052759628efb0c2defc2e97a61962dc1a634d8e5dd3564f0
MD5 617150dfc894a944487f7c0b7c9fb46f
BLAKE2b-256 4603b5c1918a30e24616c9b1511a31802a85688b39f632afb0f420dcb704cdad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b993431b33def49295fb4b431d9e07f105da95d58d0f2746f650105e26d371b
MD5 f153795fb35d92cc7f6fd3c80717f818
BLAKE2b-256 52014d4046150d753309ff9bbad16b8777a25978e87cbe330459a3877a082b86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f0af68b913d2daaf58e84da1534758fa436c8501ef4d7dc8b915749195375184
MD5 692356bf0c53e7564527801edf8acb7b
BLAKE2b-256 fc54b3ca119a470ebb5cb60885bca4ce02a0585943a9adf16ebc3c1fa072fa26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4123c92d13cab64e3a9e363eca691c329458767bbed7047d83d7981afd4419fa
MD5 dc4fc22f74a095a7b5ad58f8cb16d5ff
BLAKE2b-256 4a9bffc061e1de9072b0a4a8f605f96ec265d674c56d5fbf772f7da5483523f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1d6c2d8c159c213d6bbb6acc3f2197750b53f8c7d74b15306678bf4d382da4f0
MD5 326509529c535a56a22face7f75fb389
BLAKE2b-256 43d20ec2b7f789dcd4399a15592ebce68755e4b900b47cf60aea19320a75eb58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 266015fddf059227fe3d3e7a20290c4db7ddb49f1cf5b0bfddfc29cb4e57fbd3
MD5 0185f2096922130fc788f3f45abb1c10
BLAKE2b-256 ed78b951104746eaf46fdca650f25562a3b27558fa253b88d6b87d007dd8b9c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 36c108cfe2fca2fb04517cda06ad0ce96daa32910f505f8988f4a09c665cfb37
MD5 59960bd73cb18dfe0eb639d84143a55a
BLAKE2b-256 a4aee4b6034bd93b8a4ce998637ff384f064e5b71760b66f66ba4d05053a321c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 00c16f544be98fc2adf7d6e286b7de4cc7273deaafe2d6b9905538d8faf73ccc
MD5 6c68940cb38fdd2ca338632d7c9c2123
BLAKE2b-256 5567a1ca068aaead1db8c580af546579f48f2dafd652030000eaecab6b1bf627

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 aa0a414b9aac7c56d2874b6e10cf7d81680acfc2afe1699cab24a620f7fb4981
MD5 9c959f5d02e51ca6675a975b4d35108e
BLAKE2b-256 eb7da52ff3f7ac15a98d68bf2c3a1bf2dc2238eb1957d743da0111bf728532e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab1748311fe390d9e272d41387d453e0701c3300c5429c2c3f64351d9af6bf14
MD5 d7e8462b248badadf28e9f4b1c24422a
BLAKE2b-256 687bd68561ec44cf56db6082e5b9eeddf0fa91cbeb66cd53aee2c57e3add7ef4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eac50a257c0b2fd2d6ac566cddcd6810f1944134f6651f3637f7d99325521b80
MD5 8160ff9bda0dd6327bc12c766c1d926a
BLAKE2b-256 513160550d11cfc20c8d82faac0d3af106adbedee11c735157882c3565ba9203

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d25df115294fbcf4dabd9ba7dd8c600c193e41dd9cd62c1bf1c41dfb4a9a7d3
MD5 7dca78211a2a9ce8ceba978b36ed1a32
BLAKE2b-256 9caf605c95f85767a7c0c6e4832a7c3de1c1e3909dbff6eec3a3ef5950d2d9d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c9a1187dcee5da732b4d219be1a4003e0b463d8f61a5c437692d1040ef776c13
MD5 01fc3ef2e628f4bbe11691f23a6c8d5a
BLAKE2b-256 9a15b4f1d8d94de06e02a54223a45b68206be6586e2b128549f16a183ff59a23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcdd0936f0a6fe000cec44df2baf396fa3d3d06ee866e79868cbdc305cfa39d1
MD5 2c59e18cbc006cbd94015a42385c368c
BLAKE2b-256 747dc4c60e55befce9289a693e69aa8bdf3e9a961dcc69de85a9e4380ea32c05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f93b53fce5491dfa629be22f0bc755e79defdfc544ab9f61d49fcd0aec123cc1
MD5 9ea6ebdb808ad2163886859d0f966480
BLAKE2b-256 62a14aea07aae4905e209cf357fbb7be1646018ab2565e6c8715fedc597e9710

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d3eb495e43803d38ba4d8dcf611ff7c4b3d448314ced85365b32e07d325af0e2
MD5 6d68f803123e1f9d09018aa42174bc10
BLAKE2b-256 d705629bbcb8c8baf993eddfcff7cd3b87921e107cc14a3f327d291c97472c3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3a3d9efb9e8dec0c7903b3e248cea1a0a992ab81774cda7c36c107290d49a351
MD5 6fdac9a2ef170288746fa2ca96480a10
BLAKE2b-256 ad41aef0bfff9dff57246c7be324d43b8f036836f7ce62373df8b4ff7c0b486e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f2a0b88660d3d2703060662ae9c26edb3dcfec353dac5941f73dbe7b05be004
MD5 d82c431b0ea7df6caffafb7114ff159b
BLAKE2b-256 527898e4f48fb4eb322f956045d3c10f32bab9e8b91c624d2236b92c9b770002

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9b6cd58b9eb0723a789d334aca4b6734f1e7e954a01c270cb08dd3f144a2a349
MD5 15e607c096a4e7119dc91d4181804f9e
BLAKE2b-256 06641e8b7353bca701ca900f48cc9a8517875dd826e022476b5911d3ed0b71d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08dd13bc0dc089ed81ac949a549a9cab0f5325cf1852fbd1ae83f0b31e09952f
MD5 3f1bae4a1ef253e0928f05e0945cf7bc
BLAKE2b-256 8a50bbb62cbe0e2dc4d5195e63a96f6e33d6792973f7ac672793d5e00a946711

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d5bec5873e7c6335c2b585c1e6ea19b170670afbaa0941fa514605621ead2aa7
MD5 960ee866131cc5b1dc697a3a83e01b4e
BLAKE2b-256 b71f55686f14f68df1d5beaadc91788d4ab4dd8ec7428767e9836d536f7cccc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.8-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0cb75c1a52a1efc4b2af5a5cc013fa6bdd54054ab64ebc789d9436dced2abfa4
MD5 3458c021981f035ef44e35ce6d016a1f
BLAKE2b-256 a36984505b5dab8529ca38f4d1ce2c10bd417e43c64e459229824f8215daec95

See more details on using hashes here.

Provenance

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