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.7.tar.gz (78.4 kB view details)

Uploaded Source

Built Distributions

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

mlcommons_loadgen-5.0.7-cp313-cp313-win_amd64.whl (299.2 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.7-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.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (517.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

mlcommons_loadgen-5.0.7-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.7-cp310-cp310-win_amd64.whl (299.3 kB view details)

Uploaded CPython 3.10Windows x86-64

mlcommons_loadgen-5.0.7-cp310-cp310-win32.whl (278.8 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

mlcommons_loadgen-5.0.7-cp310-cp310-macosx_11_0_arm64.whl (461.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.7-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.7-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.7-cp39-cp39-macosx_11_0_arm64.whl (461.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

mlcommons_loadgen-5.0.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

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

File metadata

  • Download URL: mlcommons_loadgen-5.0.7.tar.gz
  • Upload date:
  • Size: 78.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for mlcommons_loadgen-5.0.7.tar.gz
Algorithm Hash digest
SHA256 2ad431319c80c27151ba9b132f79f59fd055ae97931f02e44dd90ac6532c97ef
MD5 4c806fd65be10657e6838b124ff605e4
BLAKE2b-256 0f6930fec47d9134d1c2896130b7b8d4b27b6cccb75e1818ddfd66a15fd339e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e11b3638c902bfecf561ec97c501009c2603e0aa60c5d6c3e96dc09dbb0e4f7d
MD5 db8a94aa980bd8dd6451e6830a87b0d3
BLAKE2b-256 fa35334dbf728199d89a1399824913cede63c47471d23ef842cb89105ec5ec87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f087e99614d4dec7cb446de624a3b78ccadfe6ec600204a2675d713667cbc1ac
MD5 2d5b4cbd81865dd56c48527b599d6afb
BLAKE2b-256 ecee35a5adcbc548c82b0ac841541840debe44d94f0cf38cc31e9f6107bc63c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffae85065321e2e336a16ec33d4ed8c84d430c93a42cadd10771d57ec5a49d37
MD5 375b026d72cbb4337fae5d0a983a9173
BLAKE2b-256 3f6ace526443074f22e057ade5aea836b388894246952754be11a2e3d45bcf41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9c70c2d5002ecaf70850163dd0534c1f1f9e30eadd4ceb8481aadd9d6cc2d64c
MD5 e7223f607c434030ba3f188834844009
BLAKE2b-256 4d9e8b11b2f55f48ed234e0fa32134d181905faf945fee95efea939daa983c3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a7c447d9a0385f985c34a4f9034900906bd178799bed07fa8370c36134ab51a
MD5 13cb986716ba60e6188de14d29cceaf9
BLAKE2b-256 44ce254d260e7d00409408835582aefa681a5896dbbcfcbc1ba480ddee095265

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d41baecff05bb00fd3c72501fba869cfe97cfdd267cca0e0fde00fde281a7896
MD5 94935ae35c26071e5a03d3aae026e61a
BLAKE2b-256 6e7d33755cf1523d3cabbea98c0699b6412bd34ba2224a2a3e646dd8768bea7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcf0e21265a162aa75f0f8faf3e35ba989f2fa5396aae1ff88a8d08c28149d08
MD5 811ccf6d1b9afbbcf0db283fb5b46521
BLAKE2b-256 b4c11166164970ad1c42b8fc0f8a3a9ee4d78a182e4761e34afce88e140dae2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 55cdce2647b336b15549c899de481610b136625e0eae4c12a8f69d15c5e3e424
MD5 3ecc99508df04d3d16f05140f0705afd
BLAKE2b-256 b091c10b49913b04f285366b1426eb1b6d158deabf863b1efd8d9e0f674853c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c1b114e04b5300017d1a2f1830e36ebf01290e52f78644370d9cca2d9e58ecdc
MD5 77f398ba856031ef527b501933838dee
BLAKE2b-256 fe777c79ea156b68eaefce225966634202c4ce59628a201c9d853b774c730e02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 32ac5a724a439668e9e1c66248bd13ec72bde84c6868dfb219c52fe1f89b11c7
MD5 1cd20b7b43984be85448bd49870b7f56
BLAKE2b-256 fab89aa7d071ace119ec74ac872e47e7e14003ce3f28f0515985b339a1658681

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4fced6d37a84e4dc941dc1436cf8ec0081f205384b3854308a98a388b3bd385f
MD5 e39a3d8bc0f8f1185553aad5823dc4e0
BLAKE2b-256 cc60f85732721ac261f519fa232f07a37a375eaa2f8ce5625102daf8aef21eb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ab021bd95d30dc317a61b60829d0870b4aeb884baf50b1c3a62c5361ce90e669
MD5 bcd66812153b2d2cfb3096358e51feb7
BLAKE2b-256 a57231cd77f50b47699968a24f035d80e485b7166a36297bb04b121ae36ae9e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7424bba5eff8a8ec5948f5d3005bbeae48216098473aa2669c3a4e3bbac99b4c
MD5 0a51a5984c41d650406907c7e8fc8a55
BLAKE2b-256 c611fc805f0c3e42fc92c6fdb8a006260d26b90d2fdce894949ea64b0f22fbfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5f431af3de224b7d2f42386c48429d506779db94434aef78cba0d75705355518
MD5 109bdfb9d29832993ed800a2daf9b761
BLAKE2b-256 bc0628ccc32c63eece96bc4317a132c3e05ae64480e7b4a916f0868d3e70ed15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08855f5f9f1070a168bdd9bdd0d2dce3840504feaaec96fd7a86f412237e2b15
MD5 4a5ea1b21d026afe97a358c95ef85104
BLAKE2b-256 fad6b12c154bf1cc3d767187beff5cb138c4e6a96b0f01dbd440da95500467d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3a67ab45bcc331ee73a7120ac65dc4cc47a344be13dbc5c8d60595b30ac98374
MD5 4d9bdd34b32b40a288f3037527eefadb
BLAKE2b-256 b2ed33e393acad80345fd3b83f25be095e598d7e3043059f658e59c4c75b5395

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 df6679c6c908d3013f91dda9b18beef4e03e90229d857da38a8577e838504ee7
MD5 2e83a7289494baef5f15436cfb39d6cd
BLAKE2b-256 e80f8ff1cf4aa25eacba204f12455338058fc833e4e4ef1c6ebad024da51ae8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ebcf6666afe947a0ace6423125de6fa8f269de7e0e9ad899b9dbc32c82a59fdf
MD5 aa1b207db6a074ed4e735e15d2a56cff
BLAKE2b-256 4c3fe627ffc7fedb245d489ce5e28c1f76e0e3244753404e59bad49d4948b336

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 82e0eb08b59802864e108fc54f4a2c3df631325c5584ed0e0cb9dbc676e3d011
MD5 039fb78dd98a6b0531ab42de3a043270
BLAKE2b-256 dc196b4e773fceae42e4914e4165d3b984d65b1f99f8bcb2a14c53a49d84a22f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 839683baf5daaf5fa022cf423f2c1edf461cd01b094f953ca9810ba2116c81cd
MD5 1e364b679da9d696ffe5d0428b8f67fa
BLAKE2b-256 4f1c2fc8f618010750756099c9cc66dc5c968f4bff703929cae5e64d342c9d47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21208c4f52a0dd47b75dd439102e543df40ba39f8bde5f670d81ccea3b95e92d
MD5 c14fba21e83c0c2cd9cdb2f61704066e
BLAKE2b-256 cbcd585e350f839f216e2d5a945085cc0588f5bee4f9b9474bb7676bf27643a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 56e8b8403b53acd1790c1d18f9c1039a56b24e1ac37ce199ed0f0e84dc58fa38
MD5 a943c0df80b07bb098e606d5499803ea
BLAKE2b-256 94a8c0151bd56aa8116f6cd57494cb18f7297046eae2d857d8b662096b7943a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a3fe2ea4895e3eef40e9c85aa797e5e7ddd6a610a165bdac00b3f071489be22
MD5 4ab23d4487c32ba18cb5d3a298cbe98f
BLAKE2b-256 d22596824783d0848bda719c5e04acf6cf0118942dfbeddd902d8826a2c1d23c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f8b77c7b9324d6a84659130f9a86294fc012cb38ce173c603543303d774b60c6
MD5 bc35c0c938e222126ade59899a4548e0
BLAKE2b-256 b6f0a3771943a2bbd9ab411e69f0ceca79ed7559117ea8089174225183e0322b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ecebd8eaaba66e6b20b91e415efc9676625edb27007257821f1e1ab273dfc774
MD5 6fc593216dc1e9be1ee9c3c807d9a2c6
BLAKE2b-256 1826fe0292bed7624be9df0c91981b804e1ec92be29cae062d3c6c31203a39e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6e36667a5ba9fbdfe3a8047ecec9106c9aca86017c2c514cd3b80211972d776e
MD5 19ab9cae1dc0e4d407a456e8ebfec335
BLAKE2b-256 6c8c75f50b45c382fdcf41e13237f9d174cdbea9c4b4d035c7e965118930a29b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f5316367dd904171c83935df66ae95fd1b0c48dc13ede1ecb32fce5b7c71eae
MD5 7350ef05850c74e2f816d8f77c8fbf9d
BLAKE2b-256 ca80930afb29f54c36cf54955588d24b1f6241ff8fca26f176b4a9f9fadfec69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2c6df5a56c09f94731c9c44f999008097496a26bab8a9e60100d4724c40759ec
MD5 88b74f4142e88b5599eb1399cb1a0d24
BLAKE2b-256 537399d779a7549a1e6984b069849318b8a6f3f965e1d4308ac5d47c368e14cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98f9e837fbe637396b837791c92319dbde2888c6166b7941762ead0d0d5fe5e8
MD5 4254595e21a438f2132e19d770785fde
BLAKE2b-256 1ad689d919f59bb157d89a70013f259555f9cdf4c1bc363e766b6b3f2f62baac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e2fb2f0b77514a5f332e214d24165f1ec47442ed10137073417dd7eb5f2ff95
MD5 a70b9d6718c0530ba4a5b1d4c7919bc7
BLAKE2b-256 aba7ac5e2357d103e6dac16d3f546d8ad2598a6488d6334e9f3a15fa5dfa2431

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3bcb6cbe78911a8222eb3e9867992594e146d9d7b63742beb49ff3e1c6be5548
MD5 4d5e5fac7dbcb87c5c8e1475ddce421b
BLAKE2b-256 5391b90ca7352385fca4d9328acee750e32f9e70774c772bbc6c089b7e9d281a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 63b684e5c45c565eb60da0afa7b8c306c61faaceb248428a5534babbac869f3f
MD5 1523b6028b64aea6f28641c6d5fc9249
BLAKE2b-256 b6cb3df611d0724b23c6de06066c7b5fafc7c6e5d45c62c683a9714a4aedad31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3eba452f1b39442ca0c9e81333898a37789ecaabbc685852f09c7c1f1c5e3b5c
MD5 a90c387262e555037830f8e786948fbb
BLAKE2b-256 93bd41f25e8fa75cac2968aef86085a663442e13aefb425bba4cfae0ec94f627

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0a2a458f62b99b457aeab9886ebc1d1692b7647e9ef70d766d7c00653321fd36
MD5 9ee92aa508b809b41f51bd9dce792947
BLAKE2b-256 f8123184c1d10b1f5df26581f911ef3a9d0d1319780176923ab7ae502f788b32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 afc4a0677a1b812413b3d40d575d4deceac1cec125ac42ef12e8ce34b2af793b
MD5 6def4baee6295bde12f24a1b55671998
BLAKE2b-256 564afb96ce21fec4db76fbd10ad0f19763ada7c82fb5aa05e6bed60784c8c410

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 574f42781821fcf334f998a34d1b275e793be2fe564102084f0de28e47a1085e
MD5 782854de02e455f1995b53da25dd42f3
BLAKE2b-256 b2470c71a40868423cd5c349051826ae48a74caf3c9f657631235b4d2a08c762

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 184dde31f23cf399713658038894967ed2c036f2839750722bb1191b461b1b5e
MD5 33c6f5df048c4d3b96eb4cdb1ad8eca0
BLAKE2b-256 19b3c3dd553fa72f0ebfed2a4c6277668ea04bdadc4a29fd0ef85b4e9c0062d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 10a9a8a5f19165de8b2a75f98cfa66f471068c540de4a82a4746430ac3daac00
MD5 a3b7ddb75f576353f4bb890cc2d02064
BLAKE2b-256 a7fea8636fa9a26053a65295a2c53bd3e0d799eff0a7481cd91984425f1dd4dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 641aca37aff2e9bb8edf92bddeecd4fc4ff4b10393eac1c9b417865e17b409fc
MD5 28075bd2262be08a719a78c248d96c4b
BLAKE2b-256 b3b58b38528e0724deb11325ad002728df67771f2ed4d43b5200ec3eb408f030

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6653123d549cae5f640d7dc06ad464a0d5260cc38108043d83b3b5cbb616a99e
MD5 f83e4393c351ed5a3d90dd4b29a1381f
BLAKE2b-256 3eafe0f3e35b9907185a3d4f5476bb4a13cf38e3d56178904e1984ed33fd9ded

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 83439e7a6c6bb05032ea39745f4b9f08232eed0ff922cd64bfe9601cbc288dea
MD5 d8345ea0853c053b161bf8802d7ffce6
BLAKE2b-256 0c689155c6ce0ff84c2cb8dca97c3c8f8359da2041a900e49cf67cf1f06dc43a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 03a8270f2f3f90f3933c1eddf60bf299b28232ed35d5c8cd1f97a62541941db0
MD5 c6962da9c7ee174576a0dac0cccf1947
BLAKE2b-256 3652d5546a9e5dbb2ff38a33074a43d8a5847e20dfa55f99bc385ce15a676864

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea363d3281a29475bf982af11e0cbee29f5411993ff244ee2969f906c0ca6580
MD5 7c8975b57f2ef24df99fd1a6c26c4cf7
BLAKE2b-256 c6c27a63d23be26b37cbd8a3c7ac508df21f6648a55667e5a56a5b0396206146

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 89be7363d98b477c570fc6e145e3ae1e1e4c201917aeb4148a8a9dc259df1ffa
MD5 1e3d52b34cf40bdcd301d5b3d5fd7dd2
BLAKE2b-256 0ff3d563e5522389bef87accf18a1f18855db7eedb62a72920d10c87be7dd12b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f5c78796c46a751ff5b691a2596a3e643478952225ec74bd5ffb25b3c44e6d1
MD5 4f46ac80d42d25a88bca885acc341807
BLAKE2b-256 2715506872b62222f7ec5cef7583d63e1f54c1c7afddaf9800cb029f5692c006

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b3c20d1f7deee939a7c3c045f7fff16e6178efd19220280cd0c2bc4b0cc13f9d
MD5 637d370d14260ce09eb764cec3bd9a79
BLAKE2b-256 4ed04d96bd6c057d5a3e97d271e9a77d3db8253859c6a019ffaf2818678a6798

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df7d552482b2e8f1fb9560b4d9e4c5fbd13ed1ffd167001d903dbe9a742d0e6c
MD5 48e492f75ad4b5ec7609ad289ffea858
BLAKE2b-256 b23eaf2517d51ec1a50681ec075334a841f437fcbbb58eaa32eb1cafe58430b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4c83419875f773bb889efb798a5676df3ff574a737a742e5d924ab46b8e3065
MD5 dca61c1338785862f282e2136a719696
BLAKE2b-256 1ac8771e7a1e51b36774f33c0b28e5266e7171d72e0c3706d3e3d9310023af8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c67e631e455bbccba15a02ace9f147d6cfb3e8b68440f19ebcbc36bad52c5ec5
MD5 cb70f733dd1e914500f63d1d1c3bae50
BLAKE2b-256 782297291b6b3406c7014a7bbabb94d95ea8f0c8a8e9328b62bae09410c433b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b2ded71a0410a08c5353b5d86cfc211abb68ec80720bbc0514e58fb9f5fc753d
MD5 8580e104b06792ce5c9bc97dcf5fda45
BLAKE2b-256 3c5944b3e5f515655aa64d93e9fdbbdd12ac2c7ba5cf15e9ca19193b0c857df8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2fb68a01e00ece01e3bbb178bf1146627025bbe97e0526923ee01ceabedbac06
MD5 65c49f948c99125ab1d5b181fe3498b7
BLAKE2b-256 ca56a47cdcf5b3944bbb7041b8b841ab8982530bc190383a2271e5358c80a4ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fe0987239eada8f18e28a8e2966cef7a092681f72772d7f26bffacc2cf0aa2da
MD5 14d464199572b76e10cb5a0bfc4df561
BLAKE2b-256 923d4db327bc95e03fb3bca5d98bb69d1634c6ac058ddd740e775c0c8b13486d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 266eb8eca821f27c0128b583784c29de06941dc621a628237535f42653797491
MD5 ba234e7c8ce7db61511c3e72679c2f89
BLAKE2b-256 8abc0d14047cf17286c057d35a85048b0ca2c9baedd4088aa9744ec1fd505a33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 873c345f84467df3eaa06ca19f4f770a0ea78ae1ec45ee4573c863bd204a7461
MD5 a5b39033b42bc2b9b046d34cf3207458
BLAKE2b-256 3ad6c79124349ab6b41ba32b2f2675c79dee38341aefc3d877efa1c82968b1e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mlcommons_loadgen-5.0.7-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 53060bdee1b48ac2361010f20e6f6bff7e51a65329d5d131148d11e6ab37cbe1
MD5 6776852781f2da6b50c05812a9c26a6a
BLAKE2b-256 8933bb8d3f8d8a36007af4aa00d9169abafc7c030899e9ba7d2b73025f12ea9a

See more details on using hashes here.

Provenance

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