Skip to main content

MLPerf Inference LoadGen python bindings

Project description

Overview {#mainpage}

Introduction

  • The LoadGen is a reusable module that efficiently and fairly measures the performance of inference systems.
  • It generates traffic for scenarios as formulated by a diverse set of experts in the MLCommons working group.
  • The scenarios emulate the workloads seen in mobile devices, autonomous vehicles, robotics, and cloud-based setups.
  • Although the LoadGen is not model or dataset aware, its strength is in its reusability with logic that is.

Integration Example and Flow

The following is an diagram of how the LoadGen can be integrated into an inference system, resembling how some of the MLPerf reference models are implemented.

  1. Benchmark knows the model, dataset, and preprocessing.
  2. Benchmark hands dataset sample IDs to LoadGen.
  3. LoadGen starts generating queries of sample IDs.
  4. Benchmark creates requests to backend.
  5. Result is post processed and forwarded to LoadGen.
  6. LoadGen outputs logs for analysis.

Useful Links

Scope of the LoadGen's Responsibilities

In Scope

  • Provide a reusable C++ library with python bindings.
  • Implement the traffic patterns of the MLPerf Inference scenarios and modes.
  • Record all traffic generated and received for later analysis and verification.
  • Summarize the results and whether performance constraints were met.
  • Target high-performance systems with efficient multi-thread friendly logging utilities.
  • Generate trust via a shared, well-tested, and community-hardened code base.

Out of Scope

The LoadGen is:

  • NOT aware of the ML model it is running against.
  • NOT aware of the data formats of the model's inputs and outputs.
  • NOT aware of how to score the accuracy of a model's outputs.
  • NOT aware of MLPerf rules regarding scenario-specific constraints.

Limitting the scope of the LoadGen in this way keeps it reusable across different models and datasets without modification. Using composition and dependency injection, the user can define their own model, datasets, and metrics.

Additionally, not hardcoding MLPerf-specific test constraints, like test duration and performance targets, allows users to use the LoadGen unmodified for custom testing and continuous integration purposes.

Submission Considerations

Upstream all local modifications

  • As a rule, no local modifications to the LoadGen's C++ library are allowed for submission.
  • Please upstream early and often to keep the playing field level.

Choose your TestSettings carefully!

  • Since the LoadGen is oblivious to the model, it can't enforce the MLPerf requirements for submission. e.g.: target percentiles and latencies.
  • For verification, the values in TestSettings are logged.
  • To help make sure your settings are spec compliant, use TestSettings::FromConfig in conjunction with the relevant config file provided with the reference models.

Responsibilities of a LoadGen User

Implement the Interfaces

  • Implement the SystemUnderTest and QuerySampleLibrary interfaces and pass them to the StartTest function.
  • Call QuerySampleComplete for every sample received by SystemUnderTest::IssueQuery.

Assess Accuracy

  • Process the mlperf_log_accuracy.json output by the LoadGen to determine the accuracy of your system.
  • For the official models, Python scripts will be provided by the MLPerf model owners for you to do this automatically.

For templates of how to do the above in detail, refer to code for the demos, tests, and reference models.

LoadGen over the Network

For reference, on a high level a submission looks like this:

The LoadGen implementation is common to all submissions, while the QSL (“Query Sample Library”) and SUT (“System Under Test”) are implemented by submitters. QSL is responsible for loading the data and includes untimed preprocessing.

A submission over the network introduces a new component “QDL” (query dispatch library) that is added to the system as presented in the following diagram:

QDL is a proxy for a load-balancer, that dispatches queries to SUT over a physical network, receives the responses and passes them back to LoadGen. It is implemented by the submitter. The interface of the QDL is the same as the API to SUT.

In scenarios using QDL, data may be compressed in QSL at the choice of the submitter in order to reduce network transmission time. Decompression is part of the timed processing in SUT. A set of approved standard compression schemes will be specified for each benchmark; additional compression schemes must be approved in advance by the Working Group.

All communication between LoadGen/QSL and SUT is via QDL, and all communication between QDL and SUT must pass over a physical network.

QDL implements the protocol to transmit queries over the network and receive responses. It also implements decompression of any response returned by the SUT, where compression of responses is allowed. Performing any part of the timed preprocessing or inference in QDL is specifically disallowed. Currently no batching is allowed in QDL, although this may be revisited in future.

The MLperf over the Network will run in Server mode and Offline mode. All LoadGen modes are expected to work as is with insignificant changes. These include running the test in performance mode, accuracy mode, find peak performance mode and compliance mode. The same applies for power measurements.

QDL details

The Query Dispatch Library is implemented by the submitter and interfaces with LoadGen using the same SUT API. All MLPerf Inference SUTs implement the mlperf::SystemUnderTest class which is defined in system_under_test.h. The QDL implements mlperf::QueryDispatchLibrary class which inherits the mlperf::SystemUnderTest class and has the same API and support all existing mlperf::SystemUnderTest methods. It has a separate header file query_dispatch_library.h. Using sut with mlperf::SystemUnderTest class in LoadGen StartTest is natively upcasting mlperf::QueryDispatchLibrary class.

QDL Query issue and response over the network

The QDL gets the queries from the LoadGen through

void IssueQuery(const std::vector<QuerySample>& samples)

The QDL dispatches the queries to the SUT over the physical media. The exact method and implementation for it are submitter specific and would not be specified at MLCommons. Submitter implementation includes all methods required to serialize the query, load balance, drive it to the Operating system and network interface card and send to the SUT.

The QDL receives the query responses over the network from the SUT. The exact method and implementation for it are submitter specific and would not be specified at MLCommons. The submitter implementation includes all methods required to receive the network data from the Network Interface card, go through the Operating system, deserialize the query response, and provide it back to the LoadGen through query completion by:

struct QuerySampleResponse {
  ResponseId id;
  uintptr_t data;
  size_t size;
};
void QuerySamplesComplete(QuerySampleResponse* responses, 
                          size_t response_count);

QDL Additional Methods

In addition to that the QDL needs to implement the following methods that are provided by the SUT interface to the LoadGen:

const std::string& Name();

The Name function returns a known string for over the Network SUTs to identify it as over the network benchmark.

void FlushQueries();

It is not specified here how the QDL would query and configure the SUT to execute the above methods. The QDL responds to the LoadGen after receiving its own response from the SUT.

Example

Refer to LON demo for a reference example illustrating usage of Loadgen over the network.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

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

Built Distributions

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

mlcommons_loadgen-5.0.9-cp313-cp313-win_amd64.whl (299.3 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.9-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.9-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (517.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.9-cp313-cp313-macosx_11_0_arm64.whl (464.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (517.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.9-cp312-cp312-macosx_11_0_arm64.whl (464.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mlcommons_loadgen-5.0.9-cp312-cp312-macosx_10_13_x86_64.whl (479.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

mlcommons_loadgen-5.0.9-cp311-cp311-win32.whl (279.5 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (517.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.9-cp311-cp311-macosx_11_0_arm64.whl (463.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mlcommons_loadgen-5.0.9-cp311-cp311-macosx_10_9_x86_64.whl (475.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (517.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (517.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.9-cp39-cp39-macosx_11_0_arm64.whl (461.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mlcommons_loadgen-5.0.9-cp39-cp39-macosx_10_9_x86_64.whl (474.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

mlcommons_loadgen-5.0.9-cp38-cp38-win32.whl (278.9 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.9-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (516.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8macOS 11.0+ ARM64

mlcommons_loadgen-5.0.9-cp38-cp38-macosx_10_9_x86_64.whl (474.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

mlcommons_loadgen-5.0.9-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (519.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.9-cp37-cp37m-macosx_10_9_x86_64.whl (471.5 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 11cdefd14e8824d2db4629f694410b50beef31aa2929f0b99bf1a072c17afae8
MD5 4b58127820cda78c4285dc08dd2dd4bd
BLAKE2b-256 ef717676bd66ccd92ccf5d4bdbe7596061356b37fe6a0dcb3e10fe848568f6c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 45a4213f9124466b87b02296b64cbc9467679891a021bcc3f413232e76488a52
MD5 a114c0f3ef9fe8d667f1c858fe69fd3f
BLAKE2b-256 ceb4eb8c8c0cd80be5dc6725b4c4539e208b7c9f0a962ebbe602332444e141eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7b90d150103a7a5ab1499f3fb00ab025c3e0ed4984d5afb698d05ea754ed43d
MD5 3e912c39a5e5a4bb5c1d0a46f1755a0a
BLAKE2b-256 4154dd753b2a7cf8e5c38295f70945578715dd75e249052ccf350652b06b5ae5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a6c04bd2aaf5a761dd78eebe99fa29f57c7c31c04060c596d88d15b3dcd9e61
MD5 6b998a34d6ca29cf35538e941ad478ab
BLAKE2b-256 7ceb8bcf25bbbc3bddf51af5f8eaedacd27feddbd95948048c8769eed5b3fff5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 121b6448c958eb0786bb2c56389cb95375bc828cd0bc85fa527b56a0ccfd42c1
MD5 ac4df4e405fcecdf760ea539e5544e01
BLAKE2b-256 314b72f2c7e99fee09e276139c463d596d5c61ec4e04bc458c9c8cbbcb0a4ba5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 848b0f17fc61880a177ac8d02c7a6193fa6c420d37b2d3554b177eb403b87fdf
MD5 7a18d6f5379c6d3e852fa1fc5454a8d8
BLAKE2b-256 4c8dbedf586dae00b8336bd5db0e29779bc3056ac17d5cbf2a203721baa3381b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c45c3c72b47cb85343bbfb1959a39de8978b915b3570252949f61ecde0ae701e
MD5 d3013251b52f6d6d7cdf3359b3dfb015
BLAKE2b-256 bc04850d186f7ac1e1a7cfc7f30572f4e2f9d56708cd2b29e50c7fa441b5ace9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6a1c703f4de8878e786d1af5a27df176272e7dcf8852c51d1ca3a29d23f0fc46
MD5 75236bcf4b9f65d9105e53495002be9a
BLAKE2b-256 76c31e85856f315f727e2afbd71b194493abef070a21af430312068f1e4295c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4ace824386cdcff4fb85290b2c9505b411e8c93c90987f11b4963e2cdbb9918e
MD5 e5c6031155bf90e0dc25f20989c3a441
BLAKE2b-256 ef9353d217ac7c604dcac0324f5f8bf0f50b0dd205aac84e096cb7fda89ca0ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 60fbf4dbafe2c7af50d2bcb89199284359db5bef93fa6ce8123edcbf01808525
MD5 b7c27f527c622fcfee406a1345d5b95a
BLAKE2b-256 661cc0828f3d2147ed16861d61b77fd789b8adfc4e83dd3b164baebc137cdab8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6e18ba154285b132059f153ea8d91c3c22fbf1cb98919231214458702549c1c
MD5 78c9c390b73c6f9e40882da53563d3a5
BLAKE2b-256 6047f5d955be793fa760a1f8bae79ad1d9959ea313d57081c7f48372cadbcb54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5eb66b409ee01eb79d8535a6997892b79e3c1cb838b058edeaa60f6ccc9d4f54
MD5 f69f8beb8a4e67a5052d6777c4e4e522
BLAKE2b-256 a2326fed54717154aa532263239c9fff233b66c1dfb97a4b8b1a32f054a3a496

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e30eefc5c967258c7f48841c603526905423ad0a6ae6f4b846dae92ad3fff06
MD5 966f6749e6d8f68b75ad168a43633689
BLAKE2b-256 fdf4aa44fd16203b63126c3fa799ad441fe695ced8056de6edfe16fa414408b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ef4b87b8a8a1c0b02bc9f992dd35b336f04178e8b6be536a9faa01fc00c59efa
MD5 76bef682920629a9506afed416c69e15
BLAKE2b-256 1548d89f514fe98aae70d0306e1e53785ad5e64685ddff505d369b5760c4f4a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bdaedaf8330ea649b02c5ee02a49ca124aa6b2380cdfc09f8b415b1b2164db80
MD5 643fcc36496db59c9465fb731be22144
BLAKE2b-256 f90b959e3146dadbba386c120f61584f67631de453906ebb82ee2f5dc3b6bbde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 67f42905329fc9de000d491db033e15ceceace49347a8d81fbbc9382b39e9c08
MD5 c1228b796e8d4d7b3944382da3d9fe96
BLAKE2b-256 8d7c15887559ccaf780c48e52fcd7c609d130824b670cff0caa3181a87d91dca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9655fc7cd0f9d0c84dd1bfd805a6f7eda854245617798a6f3986e38508ca09db
MD5 c06cb6fc974a8962004c89ca6292b337
BLAKE2b-256 8556b7be68f18cf2099f7571d15aa252a94e5156ef92e77444f51dc181fa5311

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f95f46bd178bb858aa9c97ac6ebcc8ff4891b5b21c40a69fac7ce9a3f0dfa781
MD5 91e1ea6136366154405d34e66f794e57
BLAKE2b-256 e15d03dc872c6d172ca4df48b27c6d3e9752c77955b48a239c8f9bcec0b01f46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b40e239d6a541fd9f7e63d2805cd80b9c3473ee2cdd773c5e5ae6a2d34554e77
MD5 50750f7e7fa918e50b8db6557ddc7013
BLAKE2b-256 feb4629af3d660a23b80c1775a594b1904aa767a4be4634704c3055c9df7e8bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 59e1fbb005041d7a9548fc582e8b38573f06777f5473c0e34121874753f854b2
MD5 366c3fbfb00ab8b5e1862c13d3a573b8
BLAKE2b-256 38ce135df4df89d63838cb5e0dbe75ba4824b9dfcd98950bfd547082940cc5b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e896d3a5ca91aa180afc67704161fbbeb9b510226953b7931bbe37ecf1469721
MD5 67e9a20dfcc8d9a8941cdc2ee4a75fd2
BLAKE2b-256 a784d619756e6c40ce80a3be36d59bb4be985b83af676e306eab30fdfca9b75b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4da48f5a8f0597d947efe35cee58353768fc47ebef73f4b7e0b3ea4766171a89
MD5 c3097adfa2c335656e42909d66da51b4
BLAKE2b-256 e05554704ad6ef32f3bb6ea037fedf92c53213bf7439578c0abf2d526985055d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7b44639f3f7b9bd8027cf2399e688838d3e64acd038bf64270b6f41bbe11a97
MD5 70eb62dc7e184b76689c7552efb6c280
BLAKE2b-256 1091864ffaf0f32f809e1443eeacfd8eb14ff403b5d26220f9d1daf6f35d5eb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 74a4ae2a645835f5f39c3cb39cdc42b59a1c43e34bc5261de069a397500eeaba
MD5 5aee0cee27b592357323e32a6bdd07d6
BLAKE2b-256 65398129d153d70bab117e70571c9979fcd49520501cbdd951887f7d9228fb0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3e626839545201c69080ba115347b99a26d6b738745d38758fe61672942bd6f5
MD5 61d34a9a639d712df3a4b164775aacc3
BLAKE2b-256 caf7dcbeb0b28d0e8a0834cf16a8768653fc42b415a6f593ea4720c50298e8ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5eaf9316e46db41d9a14dcdc4c349ba40fc7d10f3350269845b46c98c2b0cdb5
MD5 c8f11c1530c35b5fc29dded605d0d442
BLAKE2b-256 8afb92b1070f099d66d546eb387c2f7f818ae4ee40dffa8ae3dcd4b672152c9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 876c904be953f5e21a016ba2a214db25df8c3bed585407b3dfc8ffd074a51e18
MD5 d33e3223044befdd131033b29e2540a0
BLAKE2b-256 97da6560cd42451d7df011da6a1da77f4b6a44c0ae220eae2aed45ff132bedfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b27be32386f3aa4d5b48499d489f72f222baf3af560176948ea1c26c5e4f1559
MD5 280279e76708f1f91c92f9722f2afdf3
BLAKE2b-256 f25eed209ca1aa80fa1db830ab7337eeb3759c4e72bd515fa6f50f0c8de3e9ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5fda17b8e048f1bbb2b00e35f9c3fb6a27c55ef94bf345f81cf702ed829c0d5
MD5 0c2e17bc7c1700569323e2fd86107bb4
BLAKE2b-256 d9e99eb50e0c48583adc34f7d16754c517ad3d0f8f63bfc553921f1f849dc977

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c29d275363c507db8dcb796bc21e2313454a309176a452382db2ec5e1f2a1455
MD5 3ea367129f81f64e2c7206ba44fed268
BLAKE2b-256 ce82479fb670eb928c4fa1cc437475359e0a7a41b74fe17e94f8c5a956cdb4ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b188c3db45e164aef2d4411cfff5576ae957ed835b12483076ee2571376f53bb
MD5 18f84cdfa0f22e9b9d3b69a8e86bfd77
BLAKE2b-256 b73a2ee9f94949e359a39f0380ba808887bfbcc6c9375b2187a3e2a134f19051

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 031efc588424eb6a18e0a27fe595fe358215689b57d13aae6bf3fcf3c9d1f606
MD5 dc5ad8eb62637524d95972cb2b8919e4
BLAKE2b-256 1df34518be562b8745219e4ebab275d58cbcd003f6b6b1570010651cb367023b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5522e6273979c811343f2a2bbf4c5dd2ce1e2082d88f5e69fb7f80c8f6679881
MD5 553a14f76f9a3ae9cb97ffc70ce14d73
BLAKE2b-256 e5d51ec0e08956d342841d2e64a4784e6192930877e4d58305a0d5f4d1111052

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 16aecf4d27f91bf7dfdb44ba1ced6d91507835f7318d3fb21545bb310f5717b3
MD5 2d192da04bcacbf6f8fc70b0358de9c3
BLAKE2b-256 62da6609e0d34e7ff3b4653554320b3f26a43ea8cd09ed11838f67f25a819a3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe1117979e080c59d35dfa6cc69c649d7d682deea95162abc17bb54137ca522a
MD5 5ca70dc128d93269ea626670ca68e6f9
BLAKE2b-256 f4d55b31a99ef5986eac85121b5bb693c56f9298205d8126378fa0016987aa82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 251beb46d41b15c18cea1b3a613d35ab9caddcf51324f5bdfa57cdb0d0843931
MD5 c148f5ef9919cac401b0db1be59862c3
BLAKE2b-256 8b07dc8f410c1e4131a80d64c1f48bb8fa2af5aadf3207b2aff15e7832e5245d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99f2054408b492720b3432492e102b5d60c695f68a7305e04886248e6f0c20f0
MD5 2f3c5636781e7c1e57b4a14ce46c26e2
BLAKE2b-256 eafa00787c40f3063172426562c1f6679e0662555b0fef3e652e22dc9547fb71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 74c278d3dba2dd30cb1da427f327e32ec5316cac4b45e1942f473122f159c388
MD5 5e5c30fffa5754a948260e0498c53c6e
BLAKE2b-256 259e9181d1baa483ca4a2aebd688287f8ba774390b5583d51beaa586ffd13980

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 826334b8f40f6c199aaf8a19f51f9f61e7e51c8ad8b8f12bfa196d2ff30dc593
MD5 861d7f1bca7206b0a339107aa1065f3a
BLAKE2b-256 b8b0525393b4634d675489702081d7ebe3f691b97ae1ca72f85137a9191b02e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cab1b2b9b9af4646f8a3e9313ee22bdee7caeee955a60bbc4d00d44f6368539b
MD5 f400d0dbf1760ba8fc80bd9d5a449425
BLAKE2b-256 c17e61eb47acb8c947548cfa618c610667132c082595f23605ce316add56f126

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 25a65a81bcbf5f10b3710375da61c5ba3206875e41b31508e57ccc7811b3219c
MD5 c6bca468e9261fcbecacabd8cbfa3f65
BLAKE2b-256 e0bd0688faefdfb29b6ef4ed53b6b0d09015054c8c9fe488ac39e15e6708d749

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 37c54f8e81c46d4bcbebbcbcc8663ed4a090a0ab0d092cba0eb7cf886bc28cb3
MD5 deb6678c53a7675df0fef4065fb361a7
BLAKE2b-256 b602fd9c76e50738b345cd678605aac19fe6584702a88d705f71b77f63214bbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc04632a96dfc382de7d989f5f57c09f7a7e42838c2da652fc843213dfbd1004
MD5 63c046c72008c378a46be5c21fc4085f
BLAKE2b-256 3b19d5b1cd2c29d0725aee14c2ad79ba724dd90d02d18c1ed0b80066412bd4a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c75d7a3d56430f0c2987bd9a4aa40981584b7a8adba517344ebd14a10de0048a
MD5 640b14cc9773b5251b6ad93311123473
BLAKE2b-256 1c98fb367b238e172971339e034678ca2dba69d8d63cd1bac0d3964a6c193bb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07ecd577aedc26cf4e744d73d3e80b58604d97306d85907e4b7cfb826839170d
MD5 4423d11d8d581494d34921ff04bf6062
BLAKE2b-256 139d9d81590c89f206de74cc8dd87082b67a5d0df19974530a84fe5bf89715c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 56d889900d06d65dc8753973d6633540d5cfe401425190df02f19c66f99d9471
MD5 30c3285d535c03af650219f6f50342e2
BLAKE2b-256 c9a0ecfb071c60a2d10389c08d5cf01fe20489b90543e1f66e1ec42d6d1e46ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1886280aefd73bfbe8ed9c831f4e9f04e321acd2259734b8913c45df5c759640
MD5 ff5f107c590dce414312fd75b593c852
BLAKE2b-256 a099c852e8064dd8459c0dcd558edde3b06fedeadebb54a066d776c7506d8a59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0c80d5c71ea4f9d57fd0a30161718d8ce91c9e0c05f10583d90deb81a928ad86
MD5 6da22adcaef1ea563f7415ec0e5334cb
BLAKE2b-256 793707e25650c642810b8b8ad44b17cdd8e60f5ecae80f69c762dfa3e4f81437

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e9758c2adc6f554f5436a51d2e64c55583c0645210cce3cdfe7842c26068b324
MD5 188351d28f34488e6aab468b7d566a8c
BLAKE2b-256 b106848752716ea669dfc0b64fd84ded298a78f45bcebe79a9ad761fc4d8379a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 842cfbc51d57265f50c1b9033d51a438c7b604d8d797d7de09bf5fa984618d69
MD5 d82a44844179cf99507f42a848997750
BLAKE2b-256 7368f5e7b74ab33f73bc6037261fe34d5cb9e72d8fb4c23e84e450a5a7d3acc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e84bf5a2c1c2f56bc6c0e5733e5dbd1d59190277bbb609daccdaf00d5cda251e
MD5 c38a0bf1d5b8033306a6e1a580950187
BLAKE2b-256 942a5a6a9a994d096dd0fbebfa5c01e56d4e36614510f8db545301cf49986b62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4f884ed8915978bbe5b75bae69c6e7124e1258232350dbc0489275670d0893f3
MD5 a219a035b064e3a98dfaecc299f25aaf
BLAKE2b-256 1bcd0b4eef9d45c6242ede41697929463a48c5a9da05f157c6fb1e57379919c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5097a536e9348a7d6f9f00c56f61f1523838cc76bad6331346a8072d442af3cc
MD5 ddef99c0390f2e3926dd5252a88435bb
BLAKE2b-256 36b8d128f921ed7108f755a585fd1a0958c244e82f892a7cabc5d9381cdc64ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 60938758f5b4cdf24c087067a2f520221dfb0a0063dfc335df4ffef072a07cbe
MD5 50629ddc0b75d71e4d395c6c4dac1199
BLAKE2b-256 60027e0b8d849f58e48c55a7c663157aeabb2bd5da76d32e85a8aa4a8f72acdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.9-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c97280c30c8bdbb5b703a74e140218bf9b2fccae0b6370f473bc8c9b20cda88f
MD5 7cd101ea67df319afd8d805514221038
BLAKE2b-256 f073f83bf839754126b045994e8a3c1b223a9c47cb148ac1ead12d8d10db1543

See more details on using hashes here.

Provenance

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