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.4.tar.gz (78.3 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.4-cp313-cp313-win_amd64.whl (299.4 kB view details)

Uploaded CPython 3.13Windows x86-64

mlcommons_loadgen-5.0.4-cp313-cp313-win32.whl (278.2 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.4-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.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (518.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.4-cp313-cp313-macosx_11_0_arm64.whl (464.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mlcommons_loadgen-5.0.4-cp313-cp313-macosx_10_13_x86_64.whl (480.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

mlcommons_loadgen-5.0.4-cp312-cp312-win32.whl (278.2 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (518.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.4-cp312-cp312-macosx_11_0_arm64.whl (464.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mlcommons_loadgen-5.0.4-cp312-cp312-macosx_10_13_x86_64.whl (480.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

mlcommons_loadgen-5.0.4-cp311-cp311-win32.whl (279.6 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (518.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

mlcommons_loadgen-5.0.4-cp311-cp311-macosx_10_9_x86_64.whl (475.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

mlcommons_loadgen-5.0.4-cp310-cp310-win32.whl (278.9 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (517.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

mlcommons_loadgen-5.0.4-cp39-cp39-win32.whl (279.1 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (517.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

mlcommons_loadgen-5.0.4-cp39-cp39-macosx_10_9_x86_64.whl (474.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

mlcommons_loadgen-5.0.4-cp38-cp38-win32.whl (279.0 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.4-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.4-cp38-cp38-macosx_11_0_arm64.whl (461.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

mlcommons_loadgen-5.0.4-cp38-cp38-macosx_10_9_x86_64.whl (474.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

mlcommons_loadgen-5.0.4-cp37-cp37m-win32.whl (280.0 kB view details)

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.4-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (519.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: mlcommons_loadgen-5.0.4.tar.gz
  • Upload date:
  • Size: 78.3 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.4.tar.gz
Algorithm Hash digest
SHA256 f70fe2ff95732942254f8f5a754769337a9130a5d3e6920513db2c28af5631d0
MD5 58910802019dd982669cc5e779c2838c
BLAKE2b-256 8bb91feab741aa80012c9b5811a886d4ccb0a58a56fe3f6d1f9de05990404425

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 390504b8d96e510b1d5b5dbb687cba2af0298bba5a9b7828e5b942042c85b11d
MD5 1af1f0ddbb016686b4ca0130eb83c681
BLAKE2b-256 46a00c258d60071d90809d06b45685289ff8e889fe3a0f98aaab4202d5bea83c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ca5a5b731e56cd2ab273fe72ace5bd040b39da64b26085659bca336b181eae05
MD5 cd556848d5426bb0cb41da9b2c5101f5
BLAKE2b-256 00113f652cd942a9599051da924be7de34d4257b711ec04a450511caf30c364a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cfc9c8e69477ded28a3e181439a1b0ed3fa2d194119dbff17f9d7a22ad7b3bc5
MD5 dbe27e94d1797f3f6986126d64490925
BLAKE2b-256 85ea36be89298ac4ea4b32fb92360cb5c8904301786155f5f2bb1accfbfe12ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7eec1c05546fb8e4e672fef167b947367f171e971a925910bed43dc3ac108378
MD5 834cc816f900988d19f0281105d36b9d
BLAKE2b-256 1ddb9c2cbd4ca6b4770b35ae1d8e8588be83aeaf4a536bf95a4c16c8ab255b51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f00cebc6f97c6f73a9cf96f369aca919bea68598a424148129788f126bf02f8f
MD5 08917c95ba2730c8304f61f1cc6d79b4
BLAKE2b-256 19b954d4f2ce698c4a779aba341ed2caf7bf61d7535862bdddce5186abf5f8a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 81f5829c586e5d495be6370100686a765f026ebbc5f24c41804be7108bd9bd11
MD5 568d926adc5487577eebb726743d3258
BLAKE2b-256 e0d485524fb8421adad086f61724a388bace63e8c4706e5b6bb78425faca9d81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 551f3f94f8844dd139c38373d88f96ad94c49da286db0de48498dabf65654ad4
MD5 761e70ed3899c9b26b05da6234312bd1
BLAKE2b-256 d0d81b2cb9dcae0118cee96fe38cf375b7d04d8be0bc5d5866a5c0ebb1673685

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 73ec5121a87574f8409150b9ed4995802404d1df609ddd57f3c0228cb405c9a4
MD5 c7a4ca2d7559ceacaf9c5ba4c54eb565
BLAKE2b-256 c5157a0d38caa7a35bba122ca7c1eb1df2d37d02e10115f4ad0cabb9497c2506

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f2f4473480ca4a5da8e64ec8f0fa82ec2be3006e79d9dd951732ec2ce9f105f0
MD5 5b86ad31ac1a824c8bd4ba4d8474e9e7
BLAKE2b-256 c0a1c2acaa465ac386a04c7d5e769dde4d408acb1cb8f8fa0389bbb6218d8b21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 94d21bf60420cd28d36e86b437dae1a7b330d988a0c907bd5d5b88b822f97f93
MD5 3794f14ca317c2c3a8f5b3c13fa065b9
BLAKE2b-256 6b3a125852f8ef6cd39b38ab2c4a2eedfa103efc6f1103c0c37f2068a3836125

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5beb6c82a5f17093166ca8acdc821d02938626ca59b48451baec60247a74269e
MD5 3a1f398c3dc00d9e0546696bc1d0abe4
BLAKE2b-256 a13415effbccf06cceaedbcd59f475b777b3601a7dd62574c2c1170a77ca0ad5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4f0eed199ea93f754f9f17102c8a09a67c76a07c755bc592b6c02452c481d3ae
MD5 b42f0890d7972b1ac68e5ac06197cc91
BLAKE2b-256 569dc012723b7ade3868754215cdfa77cc56d1844889242ea3ee453cb5df79a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4cc81d072486565a4c5506e07e2ebf0b8431bcb88247dfa143518ce6db35f06
MD5 aa67b19881cf2a5fc9556f9c308c47e7
BLAKE2b-256 9d3232260270d3c237c666d34570e4f71311bb63dd46838e4f865855b821fd73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e7ac72cb97946d1ab8e0b3e26dcb31d7116a9be8e34c02bfc5d0c2d5562a0b3
MD5 15185818a0cda649c9bfc31107c00f06
BLAKE2b-256 eb0664ffde1dd4711de724ee8a73fd23867e7541a0f583a59c4f871f2414f05a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 086ce2e79a529c271c8e6db6d343bcad0dc25b1f983c35a6b1efdc49ee4d599b
MD5 73a031b8b85a5c6aa91d5d76fcbae376
BLAKE2b-256 2f5b746728f2a1415e055a2c03f386b5ca18a6b1a19a8b8097a4ba4570eb9262

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a7a68988e0413db3e6a5db2f4cedc6c024c8c3c714a9d887e740732d9d74a644
MD5 05da401fed8b4089440cc8cbda34b7f6
BLAKE2b-256 f98653bc7b4beb1010f3aab6bcce6aaa1f1fcd4e94e7a5954eef92955354bdc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d19d200d2a2f13d3a45e70e42e49d76ea358adf79ab4cb41c0fa5ae3c94d1d1f
MD5 45df3525551753ce7074f062f1ec3a2d
BLAKE2b-256 01b2dd907090c2c998d23221ea1482ac531e5e32e3a03a98b674a15077bf4b43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7c6ab8c4b3959c39f508d5ec2b6a770e6f110ed7e4c29a867ae0ef49d7425ed6
MD5 430489416949f0ebb8d5fc7d7f2d1b2a
BLAKE2b-256 00c6729c25025162cb0b396b4f59630d535b2a9f8f1db33e358f9a8135f968fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1630b6a78e1a0cdf2ad7ef6d41d74c86ec251513859a38aa76abfa4ca273dd72
MD5 f15e2fbd295329546a714c70cce5c76e
BLAKE2b-256 ae78acd143279f3f7a395678299aa7750f28eea8958a62908f27aa98e117d8cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 642fa672ded56269147c12045f612009386c715c0fc08b0ca6ade4671d1eddd9
MD5 4779e684407aec2977dfadab295ead09
BLAKE2b-256 89e652e76bb6c8e34b031ff2c359f3942a9e8410c8a1d356ff1273d1e9bae992

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4132ac1c3f90626125366b621ccafa3a0ad2204aa5725273c7039d926a8ed678
MD5 a17aba3bfd3f9935b52c71bb57d71d4d
BLAKE2b-256 03a3502b466febf5b1d2e01809aceb552712b8f4ec97eacc894b68a201d8f905

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 76ae41bf37e048b821304201ba27b330e4d48827ae6a608c7d1469ac7bf90243
MD5 879661ef728055b3fc8d4cd803847b15
BLAKE2b-256 fb33f8b06d8f9107d7cd013a1a18b39a896a6604ec8694fd7075c81078111e63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3fb6a172092debf40ebac2b9df31277139a70bc79d77a633b91047e98065f82
MD5 a74aec82e20c85e3b1026587e6660884
BLAKE2b-256 03019c61dc65949158092986b8ef8321183a7fd725c73fc914662bf67cbb1ef4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7b06a84502626384c476809662ec74e1d1158590c6d1ab36189f11c3c005d86c
MD5 2a31138f067cf5d8cf03d0bf0c8edeaf
BLAKE2b-256 411be3e98746d869dc86f556a9cf2966a0a162e20fb0555cdcab3f68aa3d8451

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ba7d0c084e01e7861aa15ed24dc9a4e0c6ce17e36db5fdbb3575907d4460a0dc
MD5 22f2c8ad26d9b06a413f56fd765161b8
BLAKE2b-256 85cd62f4dd6117c4e1c7046febbc965614b44e8f41842f3a17f1fbe640943925

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a3a0e0e05ad1cf21e6221ffbfc23b1f3d7b46e68eb9bb4c175eb4dee3aec5117
MD5 63c27c1fa591eb9aacb3ed5cf694e195
BLAKE2b-256 533d6cbd0bcd30469cc473bfae8823577b5b7ec25b6cd8641a695f183eae0e03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c988c7fe6fc4cc6be52ce2e74335ee006e8e6bd27496ac6be51786066bdd091b
MD5 21b0ec6382f8364444312f656f3f93eb
BLAKE2b-256 c170b26f374cb57c6966e3a0b947615af4b7d12ce8b4af425c4eba5130b9c5ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f98bc06c3f7fd64eca110e9a92a41c421a969585c0c2a2fcfdf5113ee7e53330
MD5 4ace1d72a79a13fff013404c1dd79abf
BLAKE2b-256 d19a772dca508a715d4133617aa402f211b1212d66cf3eeda71f7148cf2e11d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a124a50c0409dc49a5da18a7df71cc3582c55fcbd2aa537e5e4fc6d915aecd49
MD5 ec2f31a3b4dac685485d1a6ab5fe203b
BLAKE2b-256 1917b968eccdccea0213c5e7e08c0347fbfc171f7db4f9ce281765989137713c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cdbe53097df1915926b70c5ad62bcf1d2d58bc2fcde517e432e0873b9a123cd0
MD5 7d4a653a5f00adfa813cf4d1278ac3c7
BLAKE2b-256 5eba199cdbd37dde251b6de7b8ec9215d14ff461cff7882f69dec781a5d9aec8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 506cbc80bb128568dc088bde9032cd57b55cee4c67d22f8af5301405fd31f66d
MD5 3ccdcc73642fbdab3a99a16aa978b43d
BLAKE2b-256 bdaa0685d9a6e50090b4c7ed66481f4ce169cb9c3ea3f415456cb278bfc31873

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 60a6431c2696ceadd5c5ef1e2a80f8284aa9304c88dcf5ec18622b0c1671233d
MD5 bb3170c15b85e280cf3bd6a210773c26
BLAKE2b-256 7e5b923f8426357b48a8c1e22c86e0ed3572af85fcae03400906f3f39b34fd6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0ecbce4aa37cbc07880c9dab0330ed3ceab867d5169c19ee15dfccafec055afd
MD5 40a9e75391ce4f0d7cb9d111e7d1829e
BLAKE2b-256 c58d9f75d202cdfc60faaeb82f4f635141b6d34ffe8c13e1a7b3a3a106119cb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 67174a18e4f1b5af4cfcc3dc80cebacede7a04dd630008312d88a18bd6c231b1
MD5 cf46469badcd6d492135f34a250d0610
BLAKE2b-256 182f720a3723dc2afbe6e8480277145225cb8bca2ea0b7b068068903fdd88f0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d299f9974ad37b32747e26cf8b95ee4ad56befcfe292282eb6c4b75781415333
MD5 fe2e8611ef83a6dc4e580dc94b370163
BLAKE2b-256 9d229a2fec850a3266638180cf01c6f5105c57f883411225d59d1199e7932711

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d18817ac6475c25ef1ab1e1c0d2349230e559226444143bea45fd11d97631ef
MD5 26974dd5dfff3941c539b8344db2f370
BLAKE2b-256 7e736ea66d0ec2ef75c6f655620c66bdc8191fc7d7e3b2aaa70f0e648c685e2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed0b815d447a2cfde09577972cb3060cae3ed695e7f86c08daa6ba7dad98f624
MD5 3d0908f8b0e7d902594f73fd428da814
BLAKE2b-256 89c5af31f1da8d41218bc31e997b1af5608b2bbc050d373b53bc1fd268f0b79e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 584bcbc4e304d4ebfc88e9f1769e2815767c29cd5060539a7c04c2753b0e5692
MD5 8ef4b9dc0634262cfb250d8241f61f6f
BLAKE2b-256 cbcc2005ecff0a6e121df1d44ede9653d9f727c4d49d4f65b06bcbf262f153b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f01f8690b1cc9970a74a1f9b08c7a9a0b3e36d3f500278b1026e1210a1a5c55
MD5 3d694525f3ed1b723de2786a4743fa9d
BLAKE2b-256 2a1289c6640cdfe287897c8929485857340703f65560e9065a3f925e2be45d23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 82cc34216b635c3a122b78db200c8fb550720e01c9879e15a2b1404ee8882529
MD5 aebdb8f20b00c13dc11226c21d09dd20
BLAKE2b-256 40e30e2df1a2d4a61abdcea9587a23f6489c57931985b183a25080ad44292a04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 aa4f5c28f1f798d2ca487728f291375e9c521e2e00312046e67faff4c272f4cb
MD5 fbf715b3011cde2a0b53aa9fed56c531
BLAKE2b-256 be9a9b46bca94310d6f23b5dc772da0c6bbde1780050eedfb7605fbfa93e377f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 de471ab59d1bde2c92de906c8613d31ebca28595e12e16fb0627394c1984eb93
MD5 116f8b1d59d13a6458128c4106388096
BLAKE2b-256 645d42584517a1b15236f7c2b47740f8fe7e90a4d27bd2d0ea92a860df795250

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c676f700fdcfaea48e547d21d524241c69bb2c2fa653a24aa35f0c1bfd1c967d
MD5 ec844061fad3162c70d896feac877612
BLAKE2b-256 c5a28dbd98a78e713152ef71cebb33c750d3bc4806fbe414c90c2384f7945dfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce4e965b0b21b7b6ccf755d420469f92fc7a8daefa29c749d2d52c854b70a119
MD5 2c0bb9fe6aa2647c595c5ed872b55233
BLAKE2b-256 a48b03dfee270550db835a9e5f4e46fda862227c3c0949f217998e112bdaa22d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf7cff9a8ca8e10b24686096ae1ad06f87fed306fe26cc8caccb6e9073e663a4
MD5 840ea40e30dd3db064d1b11ebec35f40
BLAKE2b-256 6c04d7df14c1d80d86dbfca312724b7e66697abe1a79a0f1ed9811f284920346

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0b18b918aff5e4d0dbf708e7eedf2548df1cc9b7f141183cb106ce3dd743b23b
MD5 235afba4d1ddfe381874c7862ed3fed1
BLAKE2b-256 bcf2ef7fb7f223bdc632759339a2309c2b427153c549e77d63676bb5031fb994

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16da08bede695ddbc330037de4600f815c11edf6689f348d8e4811b5befe145a
MD5 03c8885da86a84c9e38ad0aaababab1d
BLAKE2b-256 29daf473dc7e50cae4ec1be4d233e890bbbee2a0436d237ab8775d991694335a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ad2f3a098d8610cc4b31b7ff94531dea2e8a96c0459d42a430f77ca4c10f198
MD5 141b7c3c014f5343659b97f14b5e37ed
BLAKE2b-256 4c7330d443ae85a9831af476f7a8ccc6650ec7d19dda9b2d699c4f81036ea3ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 57f9ce5bb6fd6e5bf4070bcadb361e77a007045fda03276e5c8ef07eaac8f408
MD5 2c41b9c2fc533131a154224d54f6e281
BLAKE2b-256 c711e09136bf1dd78ae087d5f8aa89daa01022ae69c5071ba8fa03d8b64b5a13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e72ba1009ef5c413c6fcae593b8f03edf5880a2f80d1e9ae9d2643f295784998
MD5 460dbad777265ca67ae968be5f1d897f
BLAKE2b-256 53a36b5c2f14ad0bab66ca8f52072c97e020d0bb2b908132174cd6a679e5bab9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5aa3bb3d005934d688fc62e2fac761b90dada74ec477fa13293f60251c588fef
MD5 aa881df9f351c720760457e630d1a7f7
BLAKE2b-256 f6bfe9fa4c69b9621cebdeea33ed39751e26494e72aa432f65413c97e66c8eb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 855aa1b483db7316612deca3bcd540f4305af45ae05106afbd4d5cb2c04eccb8
MD5 78f3626c48f885faaaff2d9da3c9525b
BLAKE2b-256 e5e0f17db5392ab1065e098927b018e27e0f3b46df23b4b4d805589ef78a1c63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 beb72ce3c5f77bf691c7fb9025979df36f87c3dea74b1cdbca7e7be0e4a11a39
MD5 73737b95dbd30ddb4fbf6661be50dcec
BLAKE2b-256 2713b2b44c884b6ea727f8a8fff6b3966e4cf0648e7cf9846e3eec60823b4ab9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf18332552697d3e310ebfc67de73e47baa9c12f804d6da7b173f12076b47729
MD5 cc2f00f073c60e36a5e86cd4c3793839
BLAKE2b-256 a1148c5491f4c1d3a05589eb75a1f8eb99eae556ff3669933068568269c52ebb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7dcfc2b1be76a301c61e9cc4a5b1365013b8b74efb11668ef5aad865732a478c
MD5 0599faff1882abd299b8ca4d12537ddb
BLAKE2b-256 66932ca7b3bf6d75abba3fe6b2a2ae78e6176553551b88f7c4958859f8f56f03

See more details on using hashes here.

Provenance

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