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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.10-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.10-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.10-cp313-cp313-macosx_11_0_arm64.whl (464.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

mlcommons_loadgen-5.0.10-cp312-cp312-win_amd64.whl (299.2 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.10-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.10-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.10-cp312-cp312-macosx_11_0_arm64.whl (464.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mlcommons_loadgen-5.0.10-cp312-cp312-macosx_10_13_x86_64.whl (479.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

mlcommons_loadgen-5.0.10-cp310-cp310-win32.whl (278.6 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (517.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.10-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.10-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (516.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.10-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.10-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.10.tar.gz.

File metadata

  • Download URL: mlcommons_loadgen-5.0.10.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.10.tar.gz
Algorithm Hash digest
SHA256 ec8a26b5c07925624fb1019965ec7386b7950c970a9f46447d854bee7f539f4d
MD5 ff368619552c7cac909a41abc1107abe
BLAKE2b-256 f73d025481b48ccd3783d6da0e79b4896a12f2a829f99d6210df56d51aebebae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4d4203229c6ceef71eff9ef044577b3e4dfeea6d4501afbcfd6c2bbfc8e3b167
MD5 509259a6884fcecf70c8e59b1f88488d
BLAKE2b-256 f14b48122f390e59b3db7282fbecb7763f0d56573c6bd72c07e8821a25d79abe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 548938cd6d477933583f23be0f53a177321a5a2d5c812757198051bc92fb1530
MD5 844d2f6caceb89b4ac8b2d42fae99a3e
BLAKE2b-256 96ff41e14b441b35da4b1d8aad48a5764b16e2772391b59923e2484a2f2cf5db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37e1fc393ed0a2355d12481c5ea1b7c37a9d3d76e25616f5660fb4c3f6d7893b
MD5 dcf6111a5c6b04d3f24889cceff323cc
BLAKE2b-256 c0df03c9a2a8a399b92d2e770a6419dd5992191d3239014ce0073b9fc8c14063

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ac0990be32cb419a80495f270d78365d1944aafe9286c0c7b253fdf3e6ee5552
MD5 f5b79b4a446bb1eaf93e99da2f168c3d
BLAKE2b-256 0d5778e31f93797bc00fb427ab23a33e07a107b3bd61223233d9eb9a8c6fb106

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49f41e0b65731390c1a1d0a17dbce41aef4d61cdc74d0cb58ae8323e60ad6d7b
MD5 df3d92ab988c6f37a19b40b5755ca734
BLAKE2b-256 ec6097fe57a859ab0f9d27282cf2a031109aab476a2456b915b443f8fdb07d73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8a590bf865a6f47aca2f69b24a42f116bf562e69f6e1571e01026fd8c68db572
MD5 c38f7697e4de9bd725d7dda7db26604a
BLAKE2b-256 6aa1bc416c2c8be9c857c44762e1f7d394811bea46d44b23875b7c6c713810c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78027f45e0f53b41498b48a68f0bb44324836e25d0f72b437e5b36c20d107105
MD5 68af25d058298be700c817af60d1013b
BLAKE2b-256 fa8660c479f6d185da0b577309b3b9f99c2d30970a50008f22a7c7ed93fc09ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 87474e8ed14d8042bae01748d70a2c84c3ac49e2e6fb13156b3031570c00b966
MD5 60e57eebe8c32307f865a3a08db967af
BLAKE2b-256 d3b95d1d84bdd5c11b8c6622b437c104bcf6e35d2d14ca2047f72770b359a598

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fa56debf524a378e4b1c978db29e4971cc4c7b934ad55730e3fe31ad8365da73
MD5 e9730c25947ab5d99e0d7015b2f4c06e
BLAKE2b-256 f5a69ae86a99d87316eb2c249e02d1163f0983ad94b23bce8d588658d78a27d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 506089a8170ff43daa2dd5dfd71e4f19bc4a635f32319a20a6aaa52714488436
MD5 702cad1d9c2d03303dc869337b46d984
BLAKE2b-256 3153415b1aafcd614d252a66fc8d1deda77e382f0c7f135b07d242e927e4cc99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 170c73809164e5155d7a4b6887c2679abf44ae9d5c7da528e91787e4bf2a24cc
MD5 c1e409ae167e527ec41f3b4a4fbb1007
BLAKE2b-256 3409997f0439a09a06e20b63be939fb28681fc4e68114125141d100f7f08348d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b2863c1950a5508efed06d262c5d8a372ef48070ed5f0ddf110ed038424c0a75
MD5 20cc83f427c174e3efe7756fadaa8195
BLAKE2b-256 3a878bba76b2b20faa690619f64798df8716928030e59f0f00a5df7bb4b39511

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 285733e1e18019f8dd04de3f082e795c4e63d8c6cf54a7a1622fb5d313769d4d
MD5 d3f2d56fffd937f44e90db30a8dc6edd
BLAKE2b-256 305bfe6f0f0de4712961b7da56c2bfc8f7d42fec4bdd4c2419af0d1d69d8e9da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 74d1d4e0e4a4125859f4ca231d3f66c0ed89b191992b9b2935c9e8e73e32ddb6
MD5 d7a963428352e48f1782c472ac0e9c23
BLAKE2b-256 e3c0fb0c07865d6d4ea1a873b85a6ef32469e08e1299e1a2a1335dea01b8cfa5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b36eee78c90f4524c3d41c24288cee84689b803a8000e50ec2e18891c6c057d0
MD5 0174db32996a7b5582431a77a6c34bab
BLAKE2b-256 3b0f01bbad72899a26196d2704bca23a6003d30bc7c0e454da40b83e3c97b1ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6c312e4952f4020f4b04b3470487c06a1eae2a01f74cb337e5a4f57f8d172535
MD5 8ba38f3bdfa4abb754d5cd10192582cc
BLAKE2b-256 cf1157ff342cf9afd0c6e6bbc339ad0b3228068dc54b45a386fbeeb0a43f0d99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1663cb423c66e78d11a2664ae5c7d76902cf5e9c653c4c0e339fd26b83ad5425
MD5 b6c976086e7207c6c51605c6acc99080
BLAKE2b-256 3d889f4d8a8ec64112d557bf6ff5d0d1c489559a4ff9c66b8b23cf4a8597bcae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 47e74b4b8c690a45f9263a22093090cb9760075e1bd947e02b43d367c117dedb
MD5 d930c68ecef36beb3b9e35154cb30301
BLAKE2b-256 0ae5cdb69531cc2914501586595947f88b77a12b418fba6b817b4b6bb3134895

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32f53356cc7cf5c30ea3f08b4fb42552699250f6f611751bb84108f24c5e4ba4
MD5 b3dce2e15b1670e4e0c8e398486fc424
BLAKE2b-256 e01408a886b9d3cf75deda1f1f1caab058c169b979c3255ffceef577773b6f19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 49b6750b68cfce0f1c41905d20e9091d377b828629af97d342af9f956f438d19
MD5 e558cd910f10fa2d92e45fba41e8e21d
BLAKE2b-256 eca678520301d7c3380fd038d7db02cd544589f3f303892e4d0b9e56b680b58e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9658ce49885f82ea833a3ff0e9f85fb06afde5d242ec3ea4f94c3071913cf1b9
MD5 5691169879962b498786ddfd14c7d879
BLAKE2b-256 409ad7b6021245ad0401a7558c03f3bd9389280b8238d9ef76f082e3b81f29e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5c0fd2fa7cbbbe7a4453b7a0c50bc27eab2e0e8b99f79b43db512e73b178994b
MD5 3f2d8195df9c4565d9516a86776492b3
BLAKE2b-256 41b36c065d22596c46a022b118aa540c792667464d166fc1a1a6551607656681

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c129b4a98e13a615e6353db32df21a9ea318ef3d7a65cfaab65abd218247a193
MD5 e8d30df13035054ce33f8883d728a978
BLAKE2b-256 5819a815deffb7aa75c30908f72982d4870615b06ae6b123f28efff842b03d7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ca37fa22606daf3c76e1b71096e724066c48b285a5514a34da35c7c4c5b7023
MD5 94c0f9d8f6294bf0847e1814177d5ac8
BLAKE2b-256 8d310d3522b681509e1ca1fd7d7bc24404a5d25b0519872a05c71388319a4ccc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2e14e7d65954e57f9593a1138eb83eb813f11156f3b072883f2b506c7cc2c745
MD5 c78c641ae9853ca9eccb89e804a7b320
BLAKE2b-256 7ecc17c2a062d9fdf11f477e40e646f755e55a39899dff208bdb55cccce2a575

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1eb9be18154420c790d663e60785e395d52d9262037f3573dd8cd5dacaeda0ee
MD5 e4dd09a0e8bc0cca00fbf02b75a097d5
BLAKE2b-256 b77bd3bcc800c99d6db340480cc11c3d92db805defe66cd93565a1baf9c0272d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b547d028f0f195efc703276bf638a6bdc619dc6d441a4c6295a6d908b7e4f072
MD5 949aab36cf40e493e7c00a1b7fd0be99
BLAKE2b-256 626846c31564f1cdbabe730965bb2387e087549f863f0a95a9fd66377a7935fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 75c37ef0dba0b8fc0737640963411c90fab60c056db54669beeea2cff3163ca6
MD5 de2ef2202e982b93c361b88d589a457e
BLAKE2b-256 c87ea925f15bf2c3c3005a811c05e986273491dfe8c9cfb1daa3e7534627af90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a4c302283009da468bae0a0d20fec6408c4a05eb0a7ff76ce5c381b2c9ff3fb
MD5 10cc5a64e5d8c6c57b6aa820280f1c86
BLAKE2b-256 ce7eca173e982e014f914c1721745d92abcd580da79384ff9cd25e792e648b19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9c80c60dbf2bb4473348d7bee564dc2b34a8cb64fe1f5a8446322159ccd68b27
MD5 24b24697a64d1c69ed5f47e10bd23638
BLAKE2b-256 51d9120c311cd125bf28e64b6a59bf8ad23dece530492493ccac055051693f0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a09e23917ec65e3f7dfd593d3786760b7427bfae2389570087b3e4b57fd9c1cd
MD5 953551f0deba3e4d44a68beec5173543
BLAKE2b-256 684ed755f7927db305eda8ca5938e591c0ff34f86dbbab9c56247dd9ca480110

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a83da726c4aa89dd846c4e60aa5ab7c0bf925fbc7d42e87e65324958076dc6da
MD5 5101f541bfeda2e000a9d4f700712898
BLAKE2b-256 ad5d0ad5a81b2e95a6e0705ab55cf454cd60c8b4d36d8a72c469c3eef40d6948

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 923a2ebf9198b97244954d39dac8a4ac2bc1be4f13b1ffd4df9f38972d47d95b
MD5 42c1774d021740bf849792e0fbdb0c46
BLAKE2b-256 b166891d615241913fa21b67f30855b762775d2a0fec59d984e32b719764fd34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8bfae512421a2a7c93e860f025ca8357ce46536f67eef9764dcbde1ea9c5175a
MD5 02727bea30744094f5cb3ba0134a8134
BLAKE2b-256 7fb247cb03b9b5e520832946d6cb52985ca68cf36a09e9b1474883da5587ef95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad381928a8acf78c2170144273db865948b08b28281893c15c95d765c61582d7
MD5 8e9d1a34d10ec44138e4377b24f9c1ac
BLAKE2b-256 f9f086204e0bad676bc4118bfbe59331accfa9f4a38476c6c3970f82ceeeef83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fb7329ba09d877431bf297147a6a9aaa43154e688422c952158fc571d616a6fa
MD5 1b46f1cc2962e897d6ff30642393aead
BLAKE2b-256 6af8b525f133a6407843ee31021f46b5a893a29c7f8d4abd5d4c737b4de7fc9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7f49e578727e5ec7abc4fdc0c568bed56fc15834c44256c6ce7c738e4570544
MD5 85a3d6a9b28bf07eb44c5b72e30f11f8
BLAKE2b-256 681604f3467f578df4f2164b44dafb8bd275ab9963f1af35368bd274ea9e8482

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 42111fb8409878abfec1aa3c2896502ec7427bc41f2dbdaa13242386cdf0c3f3
MD5 72cefae79844a3dbcdc0231e6406ea8a
BLAKE2b-256 e26a1d8621e870d7fba904b78c02678e952c2a4f39def86084fed59d2fc0a756

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0b8236379009bfbd5da6b785213c6c1503c9f29273edc1332a58091bff73d6d
MD5 c01a03de3bd49decadd0edbf4c643f9e
BLAKE2b-256 1b6c33f21f85b7a744eeff57492945a9d760b6d86a0074d62cfe7fa869a8196e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 68f72217d353b47c7913bd2052d026fc8de6758ea572a6877f7d1fe8de3fbe41
MD5 c0c4ea8223e182a3ef0e7f08dffbc5c9
BLAKE2b-256 94d578cd6e1ab0606a769fdb3301929cc693d52a6760b53f6080a12d45fa2d22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 02058eafc317110100a5865326983cd1e9d4ff7433a4f2b7b06c9f32bfe067f3
MD5 ab1d04f45a03da935392c1c696bad161
BLAKE2b-256 7ddbb4e8a1b8c53dda390a5f3096c7257d6d07196aa09ecff2f0b2d7f8881950

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8f7e03a42a587f364588dea04796d7093c409ecbdc95023f4e9f51c1c60ceaf0
MD5 d54dbb3d7090f0d8fffeccd3179fe96a
BLAKE2b-256 d183af6e39d4762f1789bb0234bb4caa533a483b6096a13314568262bb87818b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10a575740554f51190b522be0e5c222fbd1be445236a4001311b7714dbd50a80
MD5 19a461817cc9c1498e2e58604b68c41b
BLAKE2b-256 80038a5e66581f2b32e13f598976faec8bcd96ced37def506dd669b1782f803d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 730104abb6d62ae2429961b368975725ab5f674e1f54daa5b3fe025a9d675cc2
MD5 32d865d2603cbc5befd82bb25cb83e9c
BLAKE2b-256 3e3e29e6250af9e824e87359827393c03da6de990eec3b18264945307e2d6ecd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51b82c6b95eb5b1ed1d85b12701f051cce9df6e455c8d98a090ffa985390fd64
MD5 dac06c5baeae4759c2797d675c22935b
BLAKE2b-256 cbbc2c731f554a9c2a452b622789b3139bd81b70cc8b8ef4bf939947811210c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8bfaf237da13bc5f1b2ce816647fccf0376451bfb0740b17c88e1c148a80d53c
MD5 147e87c298ea69e7046e1b6c7075f14b
BLAKE2b-256 75b0e7b8e48a98a10f8f871f4a934c32b81fa4de36b1cf6cafe216310f884aff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bdc76be279489f13f6b1578f46409dba45371dffdda09dff1b1daa5f600200b0
MD5 6e181ffa7ea28867e7966646eb7760af
BLAKE2b-256 30fd38ee36c492c0a5ab5e89fa6f5c83c3553928eb0c98aaeb48ef14bae41a3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6011c2176600c3e3e9b1d6c9f5290072a6cb33e5f9a9dbd4e8df3df607156eba
MD5 ef6fc3290e25fb86df64c2a2bd91d27d
BLAKE2b-256 a1fdb2c9710a504bfe54f8baa990380d9b4172cbe2b9d3cf98f55aac5961058f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e22986b7f3067a106508ed5a2b565abbb367f18680e97efa0f9cb8b51be49a0d
MD5 30233ae534fd5754c333c7a8b78465a8
BLAKE2b-256 2d31cfa35ae79644245ac39c3d74ff4776255a10a5df2084649072f1b195a29f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 059c5853469bd2225ae59cbbef52b4a4a9c37abaa8b94baf28bfafaaf1826be6
MD5 aea875a1d8d1cdc912dc4f7b68a20f2b
BLAKE2b-256 bd459e079c385f56eec1748f5a88d6ebf645f07bd4c6c54825214e5285bf2d22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6238434824deeaa4bc77c957107269c14373f176c5091245c32a2ba634226be
MD5 34fb12fa966755d36c708c925842f89d
BLAKE2b-256 c129907b0b5577ca456d0454520cac1728ac3513ecffaa4b3a1e1c97a0331a53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 59fb0c585152055ada912e4fbfe032cd501e95f5542add2c58cef3692e6de6f0
MD5 bf1be589ae78063edcad81869029331a
BLAKE2b-256 b749d45e2ea3f0e7b79f2016b30b9b0f0b6bb08e62fa8be9bb3feeb5ac1f9344

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f2b304238eaaa1fa9f700c927774c8b0a141d367727a285d1546b2a7b661e4c
MD5 e50b0d3b091ee1fb217634319e911f46
BLAKE2b-256 985755b404fea46bc3dfeb238d8ddbda591522d1b6d8a8041e4580ae07dcfd1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d35b2cc1b6e8673bbf16334c3bea2f8c79a89209920b2a47ed506f1981a56a91
MD5 b4def0a758bdcd138b1e2f80ad862d14
BLAKE2b-256 6d76c022574356dc6c33de4f57b58bf121cad7ab94f1023ea16c04fff69dc00e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.10-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 17b0545e473fe4531cc3f17dc8dc32ddf8cfeb2f59eaff645b3e1daf974090da
MD5 a5a32dd6ae26cfbfdae2f332cdfad9de
BLAKE2b-256 df32981ce236dd424a32e2fd89d2b5eaaebce969235d5995409adbd7f4072ba0

See more details on using hashes here.

Provenance

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