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.11.tar.gz (78.5 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.11-cp313-cp313-win_amd64.whl (299.5 kB view details)

Uploaded CPython 3.13Windows x86-64

mlcommons_loadgen-5.0.11-cp313-cp313-win32.whl (277.6 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.11-cp313-cp313-macosx_11_0_arm64.whl (465.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

mlcommons_loadgen-5.0.11-cp312-cp312-win_amd64.whl (299.5 kB view details)

Uploaded CPython 3.12Windows x86-64

mlcommons_loadgen-5.0.11-cp312-cp312-win32.whl (277.6 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.11-cp312-cp312-macosx_11_0_arm64.whl (465.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

mlcommons_loadgen-5.0.11-cp311-cp311-win_amd64.whl (300.0 kB view details)

Uploaded CPython 3.11Windows x86-64

mlcommons_loadgen-5.0.11-cp311-cp311-win32.whl (279.1 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.11-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (517.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

mlcommons_loadgen-5.0.11-cp311-cp311-macosx_10_9_x86_64.whl (475.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mlcommons_loadgen-5.0.11-cp310-cp310-win_amd64.whl (299.4 kB view details)

Uploaded CPython 3.10Windows x86-64

mlcommons_loadgen-5.0.11-cp310-cp310-win32.whl (278.2 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.11-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.11-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (516.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.11-cp310-cp310-macosx_11_0_arm64.whl (462.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mlcommons_loadgen-5.0.11-cp310-cp310-macosx_10_9_x86_64.whl (474.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mlcommons_loadgen-5.0.11-cp39-cp39-win_amd64.whl (293.2 kB view details)

Uploaded CPython 3.9Windows x86-64

mlcommons_loadgen-5.0.11-cp39-cp39-win32.whl (278.4 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.11-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.11-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (516.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.11-cp39-cp39-macosx_11_0_arm64.whl (462.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mlcommons_loadgen-5.0.11-cp39-cp39-macosx_10_9_x86_64.whl (474.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

mlcommons_loadgen-5.0.11-cp38-cp38-win_amd64.whl (299.3 kB view details)

Uploaded CPython 3.8Windows x86-64

mlcommons_loadgen-5.0.11-cp38-cp38-win32.whl (278.3 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.11-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (515.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.11-cp38-cp38-macosx_11_0_arm64.whl (461.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

mlcommons_loadgen-5.0.11-cp37-cp37m-win_amd64.whl (299.2 kB view details)

Uploaded CPython 3.7mWindows x86-64

mlcommons_loadgen-5.0.11-cp37-cp37m-win32.whl (279.6 kB view details)

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.11-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.11-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (518.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: mlcommons_loadgen-5.0.11.tar.gz
  • Upload date:
  • Size: 78.5 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.11.tar.gz
Algorithm Hash digest
SHA256 fd8d47e89f4da18587b2ee269fc7c35bf37257ad017a86f94519a914d4c6ff45
MD5 21dd43bb321e40a9c18455d717f12075
BLAKE2b-256 b0c75f7ca9698f7a51615dea2eb0ad757a61cedc58739e0544c00861dcf94128

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7a8089828dee271e89dcfdd473c28367f336b5a49082ce869a9e22043669e778
MD5 60131aead77a1287a7a5960c63d19fd7
BLAKE2b-256 7f211b1fbf723a3cd299907d676dec10816f041272cfb87b709202d322a4b99f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c039def4c18e336e0c8b18449905a1277a401d6c593c50de1db307e9eed06497
MD5 f9881e46c8ef66b098e1f232bacdd2f3
BLAKE2b-256 339321d5f90ce942f9fc76a1279f35023f29fef60bb4b80166bfbe30a9f3568a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79db6f9345dfcfd23ab80a469e71e7657fe457a9c46b980d83a9dee4ccbf71ce
MD5 0beb65fb08cbbf3de1fdb539d7a9bc0e
BLAKE2b-256 25e8899a619c38346359c67b27b0cc293e9e0ff9ee95cf4a619a6c45154af432

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0fdda52b84c686d6c42b939794645aa37227db3149ed6bc6f0d3d6f15b3d2bae
MD5 00c8a9b90a2d8a61d1c285b8b02b0022
BLAKE2b-256 6325701c477e3826c218bf5b19a1c2f9968d97188bb6a57bfff4c78efe6ecca8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 375623c1ae90fe192bbea83203ada34abaaf7ce7963327ca3d8fd7a1af8715b8
MD5 b1cb148ad9ea296c93a66c964ba24c3b
BLAKE2b-256 54874b1111c01697c1f9567f81d3dc34ff5e92c448311c6e8fd13077a5a5af10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 125becee4fd6e5bfa4135c6c26e6ec72d8fc29254be4c14ab980665e503a6a9c
MD5 7dd8bb026604b191d40bc049402fbf5b
BLAKE2b-256 566c05b27955b1fbfa456c1f2c95622e17b1a8fb7e5fe99bca03053d104ba63b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e57c4fe18b1dee3488644a1ce4ec1168b97558e78f147f1ce68d198255827b96
MD5 3cfa3248df0f716e0af6f510a3a24212
BLAKE2b-256 8f10e8982f3982d8cb5abacacf40bb858766e559c2f1dcac74996b1b9f9450e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6a622c5266f3cfd700597a56e1555b8b51c5066c6995af7e8b25417ed49d145d
MD5 da54923217161d9f060d856a0d1fe415
BLAKE2b-256 4de672512a2459190d64e0e1ea7c89f04b41aa5aa0b71177db8b6251aebb9809

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7cd138902a7818dc7073018c59b48dcb9f4ae3c5fc9526ecf90257b188fd2f17
MD5 1f2d647b27c96b32dcab91437efcf141
BLAKE2b-256 3112bdc69039f07fa9066930b9916290fe7fd66ead8f64dad0c05fe710dc6ec2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e177038a98e609e676608c745a2a48ea07a97671141e4a3db6fdc6b92d65cf88
MD5 be6a9ca87b5ba0c5db7d5483a3b3264a
BLAKE2b-256 28e7ea2b0673c347e7c8f5c613b33228261c548d9ed00657a41806ffb03f5f23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dbb8b872c89bb75a30b90de8287b56b7a7e381fb96708d38035aa7fce2308095
MD5 7cc8def4e73587f5285f6562f06a8b49
BLAKE2b-256 a037e34adc2ccb3e33fa6200e9ed7dc64d896794d35671b3735d5b5dd1cfd0bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd7f7b74723b629c11eb083ba825b2fe49a50e72fa192089babd56f0ab993058
MD5 571fd040ba479f96e3bcab1530c97989
BLAKE2b-256 05a43adaa7264e322df0c137258ca46a8b3001a9fd691b557cc80a26312385bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3ea7a1ee33c856ac9b3f82c76a46a77857b2bdad8f2eadb8d9bfb5eac95722d
MD5 567fe3a2cfdb7fbe78f34d143bb7e3e4
BLAKE2b-256 14d15f65deba4923654af52cbd1b51cbe7a937e251e5f078aede3f12194ab93c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e01ecd0649dfb003c3262d8fe2965c4072e4439ad3a43df8de08060cb9e99ef3
MD5 ac8ef47353dd5448205ec19ce35ccbe2
BLAKE2b-256 acd74476bc5eacf4ac054acbe8748ec0be3fd52b338a9e88c14538e671f08213

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bc5cc390a245125332bc1034ef8c7ad892f6b7169ebbe494a35b8532469be6f
MD5 ec849d7fbda9c4a27741f3593e51a31c
BLAKE2b-256 fe3456391a6a59201fffbe75a8b9c772d1f1424f0869dcdadcbe91c2da2a5d52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0fa7c966c28b6b9cfa180a55f03f7871c5057c9df0d39046e4d30f2d9e880543
MD5 6f8544357f9a7dd8c4c8e364c3837a84
BLAKE2b-256 c30b09764947c4bc01b194fc8c0e48fef7999da5c47128fd19df74edbb9c22ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7f5f0e9f735de5d6a2d42e89c75e202c7edd45281ef58b00e52632f7bf6cdce5
MD5 2c42620b043a46461cdb65c6c8ac8e3a
BLAKE2b-256 59ea51845be5ef992c49bfa2e55e4ef42dbb929dcf5a987a206bcc94bf41bc1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2604df2543bfbecfc35e2003882b8afb0ad761be9fa66a743701d68c2155dcc1
MD5 0c40d3d3b51a2b846327395bdbc3bcad
BLAKE2b-256 2b24ea35d0575f9e198c894b36c61188c358bf7f8446eaf82f74f56c2ec85791

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07a940877c2a0594b321ac4646c81338c99b67d71a01f81ae1b08a34db0f19de
MD5 75c06651f65ac4bed9778001f1065fa1
BLAKE2b-256 8c1ae589a243336c2fcfe89cbcb1b59bebc018fb223a679e169cef9cfdca8824

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 92d187a4f0959e753b256b11f71eedaf1a199b59c4eb8faabf0b92002e5a674f
MD5 3a14cbe6be18a577c066769ee8ccdf98
BLAKE2b-256 c0cdce8340b2682d964159908f98cb42a542f2616d79db5a3637ed154e057318

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 661b8fdf26233f8753cbd783b3508a09505a60a30ffee616ebb986b8df5ec222
MD5 e775af404a4782ab4c917920be56aad9
BLAKE2b-256 69feedeef3c64d1b3bb25e90bc24a75331e5448b56eb91c8a21677f9e13a5af4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8badb283b9f99732ab06f10f2d4ab600480746681a812d8ba8a47c20f492d0b2
MD5 2582d849382d212242e0f0495f2a12bd
BLAKE2b-256 f27661b1aed2211bc1ac4e40895c252ccd25534b164ea9f3252b9ef6ecc718f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3b5b777a174f189ce0d768bef3d5900134639d3f4abb704883bc2da55c5d77a
MD5 1038ace23cdae7188b5f8ab370f769e4
BLAKE2b-256 78f74a187b19379433a438118ccca680a26224789d5223e20887e2523fccc526

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1405307bca820b2181fb5d2a8957a5eaefa29290451f2b0d50d6e5a32b0a9e7d
MD5 4e5a355604a94fc11a74d1019c265047
BLAKE2b-256 122830cf51cef527e9c47f0d51078413024db8bf930d19be147aef06bc4d61bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f8698ed503df4008a86bef479bc374e36284a20a1b4d3d2526780209979b9beb
MD5 6b63e57e71351169a9574778235c3e95
BLAKE2b-256 34b1a76c2c13dc65b34bda69e9d7683eb35e7723d7c358f2ac18c45b00b714f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0776286a8fa6f77567b6d9aecf31bf6a03bf6aa140af8c981696156f26d03161
MD5 bca5c565f2360a6bb4c6f44473fd8734
BLAKE2b-256 9f7010b02c5003bafc712497501ba66d456ee8c55c834c10e592bc67a893975f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f176a9791f87b5b60fa74dd65e34cb1e57488dc38fdfa8e1a2dc2856d100d9e
MD5 548265174a3d8005435c7c9a73dda277
BLAKE2b-256 445de9f5b003bb1d21701670b152875b0c0b1a93e906931b826afe0277e2f92d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 38f4c5e7a47f7d34b627ff9dcef7043244cd94d6d7b52c93f62781e6b3fbb7b7
MD5 1c03849a962c7d0858f32667e8312d93
BLAKE2b-256 b08eba51bac7eb061bbc643de4db8117107171f3a22050e62a518f72d1b4f432

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f847175a9be10b61c49a827ebe450d339df022d37c96e5b079822d51d188fdfa
MD5 e9067ded75284309abab43e5ff79e9ba
BLAKE2b-256 eeca319596ad851f93e69fb97f1cf3a71505e37975417bdd1e194ce883f03917

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 185b1acbb339c8c0e0c72388293139d6948235b56425d1a1b2870c3281429d88
MD5 255bf6174ee51e3d6bbf530240a335ff
BLAKE2b-256 c861febcb275919d8acd33960e3418cf7a4ea3ea6bff8d2a28e9c1d8fe185fbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d376e144d081a867c2541feed6fefe41d300aa88306422ba661395c89eb4c05
MD5 cfe258c052e653a228cdd835c5ba42dd
BLAKE2b-256 374ade5c7ba767d99127aadd719c87619d2107ad8a6a7d49af9085b32f57d3a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 18169deb7772ad945c65fc6bebe2d99912bf15ab818be2aa33d603fbbf4f2f2c
MD5 6ebf0bb0e84757cd7ea212757d814c77
BLAKE2b-256 b63f13b209a6ccc0ad5d98e5d36ca13b8200031b51d060e454b7080c8a07a778

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8d63706c5a6c0e35e23616f02cfcd3d0f188592122ab0b60253fbf2f25bbdb70
MD5 c0a437ba0344c7f8c411a4c181488978
BLAKE2b-256 1a5ef3b1e7a14dde217ac32d424bdebbd55aec3e7882efed9823ad7d4375524f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 be7bb2ee0f64f9eb8708a898ec2b858f015ced7c79f7cc04d2d373e5e04217d3
MD5 ca1b0173cf6e876f2f1c2f042365b0b6
BLAKE2b-256 291b7fa11a648b4720145fd97ba48133ca23d1e3bbd19b717d616c2405862e3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a225e2140e39d18bad8345befbedb20e656e2d8a5ee87460abddcbc44cdf0eb
MD5 1b1dd315308786c08adc45f24d0872ef
BLAKE2b-256 5ec56033de9ca3bf0152016e3682811d40d148c5eddfb70561c210df0f9c5198

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7a1c7e269d366a969c13bfe913a1bb8a0863d47798a8910b9bb49aca664471b5
MD5 106070361c05f8b9e0a8555a83b64916
BLAKE2b-256 619f5b955407a50d26106e186512814278e39cce476aa817fb3205b1e814ab56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f4f3e8ced87c25ab0a1e8b93b0e99c6c754eecde29f9284253d5a5fa038a5b8
MD5 5576457e24613e647304d152906a20de
BLAKE2b-256 68f5b159343d473411b544add85e37c13c0d6b1bc043e69137df4531421b4d7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f6fdd2eba35a37d8b374feb73d87490a1aa34c40ef5f67703dacdb7c44d27878
MD5 1e37a0899582b559b6535103c50641d4
BLAKE2b-256 a635fd0f14dc6a2345aa77f50f5cc35241eb314a2114d946ba0d769a6576bb79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa224fcc1200c0c914cbf45753c50a1c722d07e0e0e28265699e4725438a52bc
MD5 d622efd66706c296e2d8c6941a7e299c
BLAKE2b-256 783e97ccba383d042663a65dd6c12e1547c417619628b463a86f10f9207131b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 611dd71e4ce634610e456f4d60b634d4e911c914192a225d960d143203de8bd8
MD5 0fc81d912887050b783d6106f4f055f1
BLAKE2b-256 90fadf3178564ff084486aa994884fea7e59b2b664aae25269d0f888060b2b1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 554f7557c00579dfa40da3dcf895a2097a3f91c6a3e69d2f8d8fff6f39ff8d35
MD5 6bf46211f9d817373d028270bbfea562
BLAKE2b-256 b10ded5fb8a7df169b23b2589053fb18ee4cc3ca96901e28daecce959a2cb610

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6ae19fea3985601ab1ad294b78d7fc6cac200757e2417b0853ad6f8b547273c4
MD5 2e7d7d32cb023e510dcb80f3ec9edbcb
BLAKE2b-256 a9b8716ed1113c16d4224ab71b59f6d61c60309d153d86ab779f6880f7b483cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85c4fbf758fd98c01af811b5d9a65d3de0a93b24fb46aa3b1f31ed3886e154a5
MD5 36a1fe822ecafe69a2eba6f57c7271ef
BLAKE2b-256 b4e5730efd3dbc6c48c52a7dd5623336ab767d9af0266c69115f22e0b938d55c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5516d54a98f2dbede47f98fe93d6b341d011fdd81d625922b1ce5c2c45a09d4d
MD5 0e0e1b64d839a1a86dd03a95f8274a29
BLAKE2b-256 5b5b0e1c75d73cf380eeb7586196be168414e0f5442e2479df26bef586bb73fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 664dd6adb7450fac54b10bfa940b780ef032632b4e20a4168ae6f9cf8a736f8b
MD5 4eaebf4c159840cd7489daca8b0bbe1b
BLAKE2b-256 d84094033842d3e79ff5ab19d695e574e8f38f9e7467fa74c202e846d947cb54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 86ef015ff577c5f80ee075b98be51dff6da0dcb08bf17a961f5e5e4414269700
MD5 8f13ac9c7dd614b1ceae42c2385febcb
BLAKE2b-256 39d8049844734356625d9a803e00f93ff6b48a85518e90250e883db3e9854468

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d7c87c2d922e391c456745a30a5af432230083766140b8e52f23ddcbddabe8f
MD5 73a803aa05adefd3d85e8d5dcc6791d2
BLAKE2b-256 430ab93fbf7268a5cf1650be53c3875cc43504866a16ee72557ed5647579d9a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2790346869cb94f6466b4e031d5a6556a436be687b6e8593591c4615cb2177ee
MD5 8ad42278475ad1746dacd4549cb3e9b2
BLAKE2b-256 a647c3e06c13653d25aeaefe242f26f3c6130e428c808e0a577de1a22578db90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 77e464f0a4dc3a67208fad932e2f8e80797e02ee10636bb24c249c1be2a82e07
MD5 edeffc1ae0b4cd5fe1cdb24ef7aee31a
BLAKE2b-256 bbe1c19ce9390b020a31c1222f154808d0cc09b90ef49c02635cbce0ddc396a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5e5e3b9cea1d346a507a2d3649ca14ceb53559fdb0f278701f7bc062de356717
MD5 c54e41b7408ff2e10529f85de644a74d
BLAKE2b-256 382f902b19ebd7bd4671fe11a6a5347b12f6d9af1cba577c1611d5be76d9bfc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 57a1dabff207ae3db00c22f81e2cd715c2e442815947b04c8f1808a7aebccac9
MD5 a249d2f6069bac194b946a02ae447a42
BLAKE2b-256 2bff105dcd2561103f29199254b16fda809b4d66feb909ef79b6fb5e410e4ec3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5e8a75ddb0c5e1280be70c76833e725d76768b0ad06730c2c800951014f0c24e
MD5 17522a1563003fe670528c28e65b7081
BLAKE2b-256 d3733cf258492df88edc62f3c75ba9cd980f6ca73ab2c3b817ec3bab2829d5d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1cb04db5acb6d00744bc0afa40d1b1468daf1d53bfaf63b9d76ac98395ac53d5
MD5 5953d306fab1d18b2cfd9a10338088cf
BLAKE2b-256 46faded4fc4b0cc6e9d0ee8e62699678a6f137f6d08772276af585688f310cc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7bfb4171281822a14593722a2ba818ef9448ad29f6ee2844bd1f5c8c5432a120
MD5 e886def7fcad71d4ef5a0f56498504a7
BLAKE2b-256 a93ae18f95fd0f821b7f4d587c210e4be2814f038e7deadfbb9cade5e78e1fd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.11-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3a94fa4c23295807f40ddd1b5bd8b316f7ef0fb93bb8db4637ac17a8b61e250a
MD5 f517e857dee8589df92d930d640969d4
BLAKE2b-256 ec166a86389052ad6b3d9b92bdc69423dae302b0f0a0ff6a0564cbdc6add5b28

See more details on using hashes here.

Provenance

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