Skip to main content

RKNN async inference Python bindings

Project description

ztu_somemodelruntime_ez_rknn_async

An ORT-style RKNPU2/RKNPU3 API for Python and C++

Supported Python versions: 3.7+


🚀 Feature Comparison

Feature This Project Official SDK
Model Loading & Basic Inference ✅ Supported ✅ Supported
Multi-core Tensor Parallel Inference ✅ Supported ✅ Supported
Multi-core Data Parallel Inference ✅ Supported ❌ Not Supported
Pipeline-based Async Inference ✅ Supported ⚠️ Limited (Depth = 1)
True Async Inference (Callback/Future) ✅ Supported ❌ Not Supported
Multi-batch Data Parallel Inference ✅ Supported ⚠️ Limited (Fixed batch/4D only)
Zero-copy Inference ✅ Supported (via OrtValue/io_binding API) ❌ Not Supported
Multi model weight sharing ✅ Supported ❌ Not Supported
Custom Operator Plugins ✅ Supported ❌ Not Supported
Read model embed string ✅ Supported ❌ Not Supported
Python and C++ APIs ✅ Supported ⚠️ Proprietary C API
API Style 🚀 ORT-like (Easy migration) ⚙️ Proprietary (Complex)
Zero Dependencies ✅ Yes (NumPy only) ❌ No
Break Other Packages ✅ No ⚠️ Yes (https://github.com/airockchip/rknn-toolkit2/issues/414)
Open Source 🔓 Yes (AGPLv3) 🔒 No

Installation

pip install ztu-somemodelruntime-ez-rknn-async

or manually build a wheel:

python3 -m pip wheel . -w dist --no-deps

Usage

The usage is similar to ONNXRuntime Python API, you can load a .rknn model and use run() or run_async() to do inference. To use these advanced features, you need to configure corresponding provider_options or run_options (refer to the documentation).

Execution providers

The model header selects the provider automatically: legacy RKNPU2 models use the RKNN magic and RKNPU3 models use RKNX. They can also be selected explicitly as RKNPU2ExecutionProvider and RKNPU3ExecutionProvider. RKNPU3 path-based models require the companion .weight file with the same basename. For model bytes, pass weight_path in the RKNPU3 provider options.

Runtime libraries are loaded dynamically. The default lookup uses bare library names and therefore follows the platform dynamic-linker configuration and LD_LIBRARY_PATH; the project does not contain built-in SDK paths. For example:

export LD_LIBRARY_PATH=/path/to/rknn3-api/Linux/aarch64:$LD_LIBRARY_PATH

Release wheels and C++ packages are built for Linux x86_64 and aarch64. RKNN runtime libraries are not linked or bundled; install the matching vendor runtime separately on the machine that performs inference.

The initial RKNPU3 implementation intentionally exposes only synchronous, single-context native zero-copy inference through IoBinding:

import numpy as np
import ztu_somemodelruntime_ez_rknn_async as ezrknn

session = ezrknn.InferenceSession("model.rknn")
assert session.get_providers() == ["RKNPU3ExecutionProvider"]

input_arg = session.get_native_inputs()[0]
output_arg = session.get_native_outputs()[0]
input_value = ezrknn.OrtValue.ortvalue_from_numpy(
    np.zeros(input_arg.shape, dtype=np.float16),
    "rknpu3",
    session=session,
    name=input_arg.name,
    io_kind="input",
)

binding = session.io_binding()
binding.bind_ortvalue_input(input_arg.name, input_value)
binding.bind_output(output_arg.name, "rknpu3")
session.run_with_iobinding(binding)
output = binding.get_outputs()[0].numpy()

RKNPU3 tensor shapes in this API are native runtime shapes. In particular, a 4D ONNX NCHW input may become a 5D NC1HWC2 tensor with padded channels. Use the reported layout, shape, strides, and aligned_size; do not assume the ONNX shape.

As a temporary compatibility path, copied CPU inputs supplied through bind_cpu_input() or OrtValue.ortvalue_from_numpy() may use 4D NCHW shape when the native RKNPU3 input is 5D NC1HWC2; the provider packs and zero-fills the native buffer. Native OrtValues and dma-bufs still require the reported native shape. Exact logical-shape metadata remains unavailable until the runtime implements RKNN3_QUERY_ORIGIN_INPUT_ATTR correctly.

C++ API

The public C++17 API is available from <ztu/somemodelruntime_rknn.hpp> in the ztu::somemodelruntime::rknn namespace. It intentionally implements the dense-tensor subset needed by RKNN instead of defining or depending on the real Ort namespace. Code that does not include ONNX Runtime in the same translation unit can use a namespace alias to minimize migration changes:

#include <ztu/somemodelruntime_rknn.hpp>

#include <array>

namespace Ort = ztu::somemodelruntime::rknn;

int main() {
  Ort::Env env;
  Ort::RknnProviderOptions provider_options;
  provider_options.layout = Ort::Layout::Nchw;

  Ort::SessionOptions session_options;
  session_options.SetRknnProviderOptions(provider_options);
  Ort::Session session(env, "model.rknn", session_options);

  std::array<int64_t, 4> shape{1, 3, 224, 224};
  std::array<float, 1 * 3 * 224 * 224> input{};
  auto input_value = Ort::Value::CreateTensor<float>(
      Ort::MemoryInfo::CreateCpu(), input.data(), input.size(),
      shape.data(), shape.size());

  const char *input_names[] = {session.GetInputName(0).c_str()};
  auto outputs = session.Run(Ort::RunOptions{}, input_names, &input_value, 1,
                             nullptr, 0);
  const float *output = outputs[0].GetTensorData<float>();
  (void)output;
}

For zero-copy inference, construct an Ort::IoBinding, bind CPU or provider-matching Value objects, and call session.Run(run_options, binding). Session-aware RKNPU2/RKNPU3 buffers and external dma-bufs are created with CreateIoValue() and CreateIoValueFromDmaBuf(). Buffer identities remain explicit (rknpu2 versus rknpu3) because their runtime objects are different.

Build and install the native package with:

cmake -S . -B build/cpp -DZTU_SOMEMODELRUNTIME_RKNN_BUILD_PYTHON=OFF
cmake --build build/cpp -j
cmake --install build/cpp --prefix /your/prefix

Downstream projects can then use:

find_package(ztu_somemodelruntime_rknn CONFIG REQUIRED)
target_link_libraries(your_target PRIVATE ztu::somemodelruntime_rknn)

The RKNPU2 regular Session::Run path preserves the Python API's copied float-output behavior. Native dtype/layout buffers and true zero-copy operation are exposed through IoBinding. Sparse tensors, string tensors, maps/sequences, and graph optimization settings are outside this RKNN-focused compatibility subset.

Documentation

I don't know if it's a good idea to document this library, but anyway, there's an AI generated one that's generally okay: https://deepwiki.com/happyme531/ztu_somemodelruntime_ez_rknn_async , and another one https://mintlify.wiki/happyme531/ztu_somemodelruntime_ez_rknn_async

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

ztu_somemodelruntime_ez_rknn_async-0.11.0.tar.gz (114.2 kB view details)

Uploaded Source

Built Distributions

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

ztu_somemodelruntime_ez_rknn_async-0.11.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

ztu_somemodelruntime_ez_rknn_async-0.11.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

ztu_somemodelruntime_ez_rknn_async-0.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

ztu_somemodelruntime_ez_rknn_async-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

ztu_somemodelruntime_ez_rknn_async-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ztu_somemodelruntime_ez_rknn_async-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ztu_somemodelruntime_ez_rknn_async-0.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

ztu_somemodelruntime_ez_rknn_async-0.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

ztu_somemodelruntime_ez_rknn_async-0.11.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

File details

Details for the file ztu_somemodelruntime_ez_rknn_async-0.11.0.tar.gz.

File metadata

File hashes

Hashes for ztu_somemodelruntime_ez_rknn_async-0.11.0.tar.gz
Algorithm Hash digest
SHA256 6d138a764329315079e22b0af61076197013242379ccf81f8b0ba749b5691544
MD5 829aa08d58b13c38a2b8983f806a41a2
BLAKE2b-256 daa590ecd16830808d6283464c9e8cdbdf50875ccbef07db3add44c4ab575be0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztu_somemodelruntime_ez_rknn_async-0.11.0.tar.gz:

Publisher: release-wheels.yml on happyme531/ztu_somemodelruntime_ez_rknn_async

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztu_somemodelruntime_ez_rknn_async-0.11.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f13be3caeb930b0f6b42d25c94ddcb87a0f163b45534154c5e5956d4de618ea9
MD5 a159d086a85ff25dd2e6641b82e70977
BLAKE2b-256 c8c6f8d32a8fcf3517c611db4a5248231bc75b90e1e64acee74e45318c0b2483

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release-wheels.yml on happyme531/ztu_somemodelruntime_ez_rknn_async

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztu_somemodelruntime_ez_rknn_async-0.11.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0056204711f2e9fdb8609cde17b1b04d42a213c8a9d6ec7d359729ef647ebaa9
MD5 5a1a68141a2defb465545cdd402ec3dc
BLAKE2b-256 2385a64764dc1d29588823429d6f8eaddb6badc8d444f9f58a2abd4986fd66f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release-wheels.yml on happyme531/ztu_somemodelruntime_ez_rknn_async

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztu_somemodelruntime_ez_rknn_async-0.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31bc99bd7358171d2d8b91a2b6dc7ab962a1a4b9bbce4a3fa5157602b00fbdc1
MD5 8031c82cf11a7145c30ba077077ded7b
BLAKE2b-256 56a045d1cc540744c725a809b3ee8eca476dc82f6008f694704941d06b8646f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-wheels.yml on happyme531/ztu_somemodelruntime_ez_rknn_async

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztu_somemodelruntime_ez_rknn_async-0.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9a518cd6809632a8b96b8cbbae90745ef3b869a490893274f8e49559248d1ce
MD5 463a0e5fc3c264d476c2e3014f015d73
BLAKE2b-256 c6c5bb0ec62d0d0cfa21067af2a5efcf16cb69d100af7adf535b70aa7169e070

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-wheels.yml on happyme531/ztu_somemodelruntime_ez_rknn_async

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztu_somemodelruntime_ez_rknn_async-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd06e279c357882fccf3feac42e47391e0f5249b40a98e2e36bad8a7efe6e0ab
MD5 05a6d995dd1e55a6e5f2b0f6eefcefe8
BLAKE2b-256 67286d8604c6affdf0e28f3f941dfe5cae5837e74320ed09b68414c2ac726571

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-wheels.yml on happyme531/ztu_somemodelruntime_ez_rknn_async

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztu_somemodelruntime_ez_rknn_async-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0fb3c91b5ef4e700295c9ea5327e1c0167939622a1b3a30f1f4f54ebbc1009df
MD5 f9ca60253ad43cf8eb699860c1b510e4
BLAKE2b-256 b6c38f1a500ab48265cbc0d58a8cab6f1e16542658bab78a83b4c36a5ef5539d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-wheels.yml on happyme531/ztu_somemodelruntime_ez_rknn_async

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztu_somemodelruntime_ez_rknn_async-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81be3d0590dad208add076449074832de97e29b19d1f0c807562e124b283cc87
MD5 10645e05d2b581774376da98cc251c49
BLAKE2b-256 4607676d28828c352d59ff2a91271b99a0dcad4b30e7a102f9ccf8e87d27fbfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-wheels.yml on happyme531/ztu_somemodelruntime_ez_rknn_async

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztu_somemodelruntime_ez_rknn_async-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5401ed146221e87582d5f3284b691f2aeed4ce7db4b7d82ab961930a2bf1e452
MD5 07b6ba0af6f36fed912cde63cc571382
BLAKE2b-256 b48ce89ce6f91537e102f59cfc806eaa481fca3c05e6fdfeabaa1a3a85146a92

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-wheels.yml on happyme531/ztu_somemodelruntime_ez_rknn_async

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztu_somemodelruntime_ez_rknn_async-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d408bf0ea4340ee788c07f30422a77b063d3dbc91712ad85f28741acaf5c227
MD5 8bb710e0b1831a4c62c4e0c85bc6fef2
BLAKE2b-256 abdc52e0e4a0574c90ae00a09a522c199bfd90e796b6ca75a5221ae6777d0742

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-wheels.yml on happyme531/ztu_somemodelruntime_ez_rknn_async

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztu_somemodelruntime_ez_rknn_async-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 895fb834fab4a268dbbdf3155478f4f1465baddf600aac9bce4ab1151c4f6998
MD5 55e0520d83242e6011445958a1e4f3db
BLAKE2b-256 7864f2c14eb3254be19e68ffa6005e55f8d3ae4346c355a4dc0e4b0f99029614

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-wheels.yml on happyme531/ztu_somemodelruntime_ez_rknn_async

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztu_somemodelruntime_ez_rknn_async-0.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8885f5e2eb025fc08c3bad6399a41a1491332c1d417813ccc9c29d9a0948681c
MD5 277e0015c2250be72a27068081f0e2a4
BLAKE2b-256 dd90854a6a5f8ad96683aab5766c8e0ec91644fca3af1d4335217125bd8a199c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-wheels.yml on happyme531/ztu_somemodelruntime_ez_rknn_async

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztu_somemodelruntime_ez_rknn_async-0.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d9bd3bef7e6c16f81fd5197fc460b3d380a20ab66b7ec86aabec76a010871b35
MD5 28077a634e97dceebac40f0849c38be9
BLAKE2b-256 2d4e55e9b8e114cb2970e1ebd1d6173c925aebfbd80ee3cca75c1f90d135d836

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-wheels.yml on happyme531/ztu_somemodelruntime_ez_rknn_async

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztu_somemodelruntime_ez_rknn_async-0.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb7f0c984c232b782a1baef5fa6c39ea92113046449608652f30277481388920
MD5 4f04dbae63fb16343bf43d97d97f7bfd
BLAKE2b-256 33054ccbbf91732c3332dbd244fde259ff4365914e30f2a8966080b3adc49909

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-wheels.yml on happyme531/ztu_somemodelruntime_ez_rknn_async

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztu_somemodelruntime_ez_rknn_async-0.11.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28809b573de40f98a309e6076c63e2410b1ff3464d84e1f73735db5a356c9ffb
MD5 4f4dae8a32e1da8dee583181895c4271
BLAKE2b-256 51abaa858dfb45212bb313bd88d115f0a6f8a6ccf8846daddeadc431e293ca4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-wheels.yml on happyme531/ztu_somemodelruntime_ez_rknn_async

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztu_somemodelruntime_ez_rknn_async-0.11.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 579ce1656ce4d1c1753f0064849b1fd8bd382f778e43726f8d106dffb63f5cba
MD5 f829bb6661d6831af9526d51b84508fa
BLAKE2b-256 f4c0eee85dc7076459836c3f585c91681f87eed4f8ae2a6191d265a7cb40f79a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-wheels.yml on happyme531/ztu_somemodelruntime_ez_rknn_async

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztu_somemodelruntime_ez_rknn_async-0.11.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 174478ad0a7541078bf646443c1dd959d857d55f86071977d34980af5a609901
MD5 773d05ea805e58c7c065e16e36dbb707
BLAKE2b-256 8a08019573bb0f6d418f197564a76cb68bd3adb23b1beefbcf85538224b673d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztu_somemodelruntime_ez_rknn_async-0.11.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-wheels.yml on happyme531/ztu_somemodelruntime_ez_rknn_async

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