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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ztu_somemodelruntime_ez_rknn_async-0.11.0.tar.gz.
File metadata
- Download URL: ztu_somemodelruntime_ez_rknn_async-0.11.0.tar.gz
- Upload date:
- Size: 114.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d138a764329315079e22b0af61076197013242379ccf81f8b0ba749b5691544
|
|
| MD5 |
829aa08d58b13c38a2b8983f806a41a2
|
|
| BLAKE2b-256 |
daa590ecd16830808d6283464c9e8cdbdf50875ccbef07db3add44c4ab575be0
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ztu_somemodelruntime_ez_rknn_async-0.11.0.tar.gz -
Subject digest:
6d138a764329315079e22b0af61076197013242379ccf81f8b0ba749b5691544 - Sigstore transparency entry: 2205829556
- Sigstore integration time:
-
Permalink:
happyme531/ztu_somemodelruntime_ez_rknn_async@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/happyme531
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-wheels.yml@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Trigger Event:
push
-
Statement type:
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
- Download URL: ztu_somemodelruntime_ez_rknn_async-0.11.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.14, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f13be3caeb930b0f6b42d25c94ddcb87a0f163b45534154c5e5956d4de618ea9
|
|
| MD5 |
a159d086a85ff25dd2e6641b82e70977
|
|
| BLAKE2b-256 |
c8c6f8d32a8fcf3517c611db4a5248231bc75b90e1e64acee74e45318c0b2483
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ztu_somemodelruntime_ez_rknn_async-0.11.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
f13be3caeb930b0f6b42d25c94ddcb87a0f163b45534154c5e5956d4de618ea9 - Sigstore transparency entry: 2205831393
- Sigstore integration time:
-
Permalink:
happyme531/ztu_somemodelruntime_ez_rknn_async@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/happyme531
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-wheels.yml@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Trigger Event:
push
-
Statement type:
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
- Download URL: ztu_somemodelruntime_ez_rknn_async-0.11.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.14, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0056204711f2e9fdb8609cde17b1b04d42a213c8a9d6ec7d359729ef647ebaa9
|
|
| MD5 |
5a1a68141a2defb465545cdd402ec3dc
|
|
| BLAKE2b-256 |
2385a64764dc1d29588823429d6f8eaddb6badc8d444f9f58a2abd4986fd66f4
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ztu_somemodelruntime_ez_rknn_async-0.11.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
0056204711f2e9fdb8609cde17b1b04d42a213c8a9d6ec7d359729ef647ebaa9 - Sigstore transparency entry: 2205831616
- Sigstore integration time:
-
Permalink:
happyme531/ztu_somemodelruntime_ez_rknn_async@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/happyme531
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-wheels.yml@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Trigger Event:
push
-
Statement type:
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
- Download URL: ztu_somemodelruntime_ez_rknn_async-0.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31bc99bd7358171d2d8b91a2b6dc7ab962a1a4b9bbce4a3fa5157602b00fbdc1
|
|
| MD5 |
8031c82cf11a7145c30ba077077ded7b
|
|
| BLAKE2b-256 |
56a045d1cc540744c725a809b3ee8eca476dc82f6008f694704941d06b8646f1
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ztu_somemodelruntime_ez_rknn_async-0.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
31bc99bd7358171d2d8b91a2b6dc7ab962a1a4b9bbce4a3fa5157602b00fbdc1 - Sigstore transparency entry: 2205831888
- Sigstore integration time:
-
Permalink:
happyme531/ztu_somemodelruntime_ez_rknn_async@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/happyme531
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-wheels.yml@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Trigger Event:
push
-
Statement type:
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
- Download URL: ztu_somemodelruntime_ez_rknn_async-0.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9a518cd6809632a8b96b8cbbae90745ef3b869a490893274f8e49559248d1ce
|
|
| MD5 |
463a0e5fc3c264d476c2e3014f015d73
|
|
| BLAKE2b-256 |
c6c5bb0ec62d0d0cfa21067af2a5efcf16cb69d100af7adf535b70aa7169e070
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ztu_somemodelruntime_ez_rknn_async-0.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
c9a518cd6809632a8b96b8cbbae90745ef3b869a490893274f8e49559248d1ce - Sigstore transparency entry: 2205831970
- Sigstore integration time:
-
Permalink:
happyme531/ztu_somemodelruntime_ez_rknn_async@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/happyme531
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-wheels.yml@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Trigger Event:
push
-
Statement type:
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
- Download URL: ztu_somemodelruntime_ez_rknn_async-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd06e279c357882fccf3feac42e47391e0f5249b40a98e2e36bad8a7efe6e0ab
|
|
| MD5 |
05a6d995dd1e55a6e5f2b0f6eefcefe8
|
|
| BLAKE2b-256 |
67286d8604c6affdf0e28f3f941dfe5cae5837e74320ed09b68414c2ac726571
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ztu_somemodelruntime_ez_rknn_async-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
dd06e279c357882fccf3feac42e47391e0f5249b40a98e2e36bad8a7efe6e0ab - Sigstore transparency entry: 2205830662
- Sigstore integration time:
-
Permalink:
happyme531/ztu_somemodelruntime_ez_rknn_async@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/happyme531
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-wheels.yml@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Trigger Event:
push
-
Statement type:
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
- Download URL: ztu_somemodelruntime_ez_rknn_async-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0fb3c91b5ef4e700295c9ea5327e1c0167939622a1b3a30f1f4f54ebbc1009df
|
|
| MD5 |
f9ca60253ad43cf8eb699860c1b510e4
|
|
| BLAKE2b-256 |
b6c38f1a500ab48265cbc0d58a8cab6f1e16542658bab78a83b4c36a5ef5539d
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ztu_somemodelruntime_ez_rknn_async-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
0fb3c91b5ef4e700295c9ea5327e1c0167939622a1b3a30f1f4f54ebbc1009df - Sigstore transparency entry: 2205831127
- Sigstore integration time:
-
Permalink:
happyme531/ztu_somemodelruntime_ez_rknn_async@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/happyme531
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-wheels.yml@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Trigger Event:
push
-
Statement type:
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
- Download URL: ztu_somemodelruntime_ez_rknn_async-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
81be3d0590dad208add076449074832de97e29b19d1f0c807562e124b283cc87
|
|
| MD5 |
10645e05d2b581774376da98cc251c49
|
|
| BLAKE2b-256 |
4607676d28828c352d59ff2a91271b99a0dcad4b30e7a102f9ccf8e87d27fbfe
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ztu_somemodelruntime_ez_rknn_async-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
81be3d0590dad208add076449074832de97e29b19d1f0c807562e124b283cc87 - Sigstore transparency entry: 2205831768
- Sigstore integration time:
-
Permalink:
happyme531/ztu_somemodelruntime_ez_rknn_async@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/happyme531
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-wheels.yml@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Trigger Event:
push
-
Statement type:
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
- Download URL: ztu_somemodelruntime_ez_rknn_async-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5401ed146221e87582d5f3284b691f2aeed4ce7db4b7d82ab961930a2bf1e452
|
|
| MD5 |
07b6ba0af6f36fed912cde63cc571382
|
|
| BLAKE2b-256 |
b48ce89ce6f91537e102f59cfc806eaa481fca3c05e6fdfeabaa1a3a85146a92
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ztu_somemodelruntime_ez_rknn_async-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
5401ed146221e87582d5f3284b691f2aeed4ce7db4b7d82ab961930a2bf1e452 - Sigstore transparency entry: 2205830390
- Sigstore integration time:
-
Permalink:
happyme531/ztu_somemodelruntime_ez_rknn_async@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/happyme531
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-wheels.yml@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Trigger Event:
push
-
Statement type:
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
- Download URL: ztu_somemodelruntime_ez_rknn_async-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d408bf0ea4340ee788c07f30422a77b063d3dbc91712ad85f28741acaf5c227
|
|
| MD5 |
8bb710e0b1831a4c62c4e0c85bc6fef2
|
|
| BLAKE2b-256 |
abdc52e0e4a0574c90ae00a09a522c199bfd90e796b6ca75a5221ae6777d0742
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ztu_somemodelruntime_ez_rknn_async-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
5d408bf0ea4340ee788c07f30422a77b063d3dbc91712ad85f28741acaf5c227 - Sigstore transparency entry: 2205831274
- Sigstore integration time:
-
Permalink:
happyme531/ztu_somemodelruntime_ez_rknn_async@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/happyme531
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-wheels.yml@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Trigger Event:
push
-
Statement type:
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
- Download URL: ztu_somemodelruntime_ez_rknn_async-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
895fb834fab4a268dbbdf3155478f4f1465baddf600aac9bce4ab1151c4f6998
|
|
| MD5 |
55e0520d83242e6011445958a1e4f3db
|
|
| BLAKE2b-256 |
7864f2c14eb3254be19e68ffa6005e55f8d3ae4346c355a4dc0e4b0f99029614
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ztu_somemodelruntime_ez_rknn_async-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
895fb834fab4a268dbbdf3155478f4f1465baddf600aac9bce4ab1151c4f6998 - Sigstore transparency entry: 2205831492
- Sigstore integration time:
-
Permalink:
happyme531/ztu_somemodelruntime_ez_rknn_async@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/happyme531
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-wheels.yml@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Trigger Event:
push
-
Statement type:
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
- Download URL: ztu_somemodelruntime_ez_rknn_async-0.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8885f5e2eb025fc08c3bad6399a41a1491332c1d417813ccc9c29d9a0948681c
|
|
| MD5 |
277e0015c2250be72a27068081f0e2a4
|
|
| BLAKE2b-256 |
dd90854a6a5f8ad96683aab5766c8e0ec91644fca3af1d4335217125bd8a199c
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ztu_somemodelruntime_ez_rknn_async-0.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
8885f5e2eb025fc08c3bad6399a41a1491332c1d417813ccc9c29d9a0948681c - Sigstore transparency entry: 2205830833
- Sigstore integration time:
-
Permalink:
happyme531/ztu_somemodelruntime_ez_rknn_async@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/happyme531
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-wheels.yml@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Trigger Event:
push
-
Statement type:
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
- Download URL: ztu_somemodelruntime_ez_rknn_async-0.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9bd3bef7e6c16f81fd5197fc460b3d380a20ab66b7ec86aabec76a010871b35
|
|
| MD5 |
28077a634e97dceebac40f0849c38be9
|
|
| BLAKE2b-256 |
2d4e55e9b8e114cb2970e1ebd1d6173c925aebfbd80ee3cca75c1f90d135d836
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ztu_somemodelruntime_ez_rknn_async-0.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
d9bd3bef7e6c16f81fd5197fc460b3d380a20ab66b7ec86aabec76a010871b35 - Sigstore transparency entry: 2205829886
- Sigstore integration time:
-
Permalink:
happyme531/ztu_somemodelruntime_ez_rknn_async@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/happyme531
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-wheels.yml@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Trigger Event:
push
-
Statement type:
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
- Download URL: ztu_somemodelruntime_ez_rknn_async-0.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb7f0c984c232b782a1baef5fa6c39ea92113046449608652f30277481388920
|
|
| MD5 |
4f04dbae63fb16343bf43d97d97f7bfd
|
|
| BLAKE2b-256 |
33054ccbbf91732c3332dbd244fde259ff4365914e30f2a8966080b3adc49909
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ztu_somemodelruntime_ez_rknn_async-0.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
fb7f0c984c232b782a1baef5fa6c39ea92113046449608652f30277481388920 - Sigstore transparency entry: 2205830181
- Sigstore integration time:
-
Permalink:
happyme531/ztu_somemodelruntime_ez_rknn_async@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/happyme531
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-wheels.yml@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Trigger Event:
push
-
Statement type:
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
- Download URL: ztu_somemodelruntime_ez_rknn_async-0.11.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28809b573de40f98a309e6076c63e2410b1ff3464d84e1f73735db5a356c9ffb
|
|
| MD5 |
4f4dae8a32e1da8dee583181895c4271
|
|
| BLAKE2b-256 |
51abaa858dfb45212bb313bd88d115f0a6f8a6ccf8846daddeadc431e293ca4d
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ztu_somemodelruntime_ez_rknn_async-0.11.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
28809b573de40f98a309e6076c63e2410b1ff3464d84e1f73735db5a356c9ffb - Sigstore transparency entry: 2205830977
- Sigstore integration time:
-
Permalink:
happyme531/ztu_somemodelruntime_ez_rknn_async@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/happyme531
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-wheels.yml@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Trigger Event:
push
-
Statement type:
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
- Download URL: ztu_somemodelruntime_ez_rknn_async-0.11.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
579ce1656ce4d1c1753f0064849b1fd8bd382f778e43726f8d106dffb63f5cba
|
|
| MD5 |
f829bb6661d6831af9526d51b84508fa
|
|
| BLAKE2b-256 |
f4c0eee85dc7076459836c3f585c91681f87eed4f8ae2a6191d265a7cb40f79a
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ztu_somemodelruntime_ez_rknn_async-0.11.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
579ce1656ce4d1c1753f0064849b1fd8bd382f778e43726f8d106dffb63f5cba - Sigstore transparency entry: 2205832178
- Sigstore integration time:
-
Permalink:
happyme531/ztu_somemodelruntime_ez_rknn_async@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/happyme531
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-wheels.yml@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Trigger Event:
push
-
Statement type:
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
- Download URL: ztu_somemodelruntime_ez_rknn_async-0.11.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
174478ad0a7541078bf646443c1dd959d857d55f86071977d34980af5a609901
|
|
| MD5 |
773d05ea805e58c7c065e16e36dbb707
|
|
| BLAKE2b-256 |
8a08019573bb0f6d418f197564a76cb68bd3adb23b1beefbcf85538224b673d4
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ztu_somemodelruntime_ez_rknn_async-0.11.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
174478ad0a7541078bf646443c1dd959d857d55f86071977d34980af5a609901 - Sigstore transparency entry: 2205832076
- Sigstore integration time:
-
Permalink:
happyme531/ztu_somemodelruntime_ez_rknn_async@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/happyme531
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-wheels.yml@bd916d005d1d1a3b03f11d83f6a7372107b564c1 -
Trigger Event:
push
-
Statement type: