onnxruntime-gpu-extended 0.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2 @@
1
+ include README.md
2
+ include LICENSE
@@ -0,0 +1,79 @@
1
+ Metadata-Version: 2.4
2
+ Name: onnxruntime-gpu-extended
3
+ Version: 0.0.1
4
+ Summary: ONNX Runtime GPU (CUDA) - pre-built wheels for platforms upstream onnxruntime-gpu doesn't ship (e.g. NVIDIA Jetson / aarch64 + CUDA)
5
+ Author: Community Contributor
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://onnxruntime.ai/
8
+ Project-URL: Repository, https://github.com/jeff-hykin/onnxruntime-gpu-extended
9
+ Keywords: onnxruntime,onnx,cuda,gpu,jetson,aarch64,inference
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Intended Audience :: Science/Research
13
+ Classifier: Topic :: Scientific/Engineering
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Programming Language :: Python :: 3.14
20
+ Classifier: Operating System :: POSIX :: Linux
21
+ Classifier: Environment :: GPU :: NVIDIA CUDA
22
+ Requires-Python: >=3.10
23
+ Description-Content-Type: text/markdown
24
+ Requires-Dist: numpy
25
+
26
+ # onnxruntime-gpu-extended
27
+
28
+ Pre-built ONNX Runtime **CUDA** wheels for platforms that upstream
29
+ `onnxruntime-gpu` does **not** ship — primarily **NVIDIA Jetson** (aarch64 +
30
+ CUDA / L4T) — published under a single package name so installation is the same
31
+ everywhere.
32
+
33
+ There is no source code in this repo. It downloads official CUDA wheels from
34
+ PyPI (`onnxruntime-gpu`) and builds the missing aarch64 Jetson wheels with Nix
35
+ (see `flake.nix` + `TARGETS.md`). All wheels are renamed to
36
+ `onnxruntime-gpu-extended` and uploaded to PyPI with a unified version, keeping
37
+ the internal `onnxruntime` package intact so `import onnxruntime` works
38
+ unchanged.
39
+
40
+ ## Install
41
+
42
+ ```sh
43
+ pip install onnxruntime-gpu-extended
44
+ ```
45
+
46
+ Works as a drop-in replacement — just `import onnxruntime` as usual.
47
+
48
+ ## Status
49
+
50
+ **Placeholder / name reserved (0.0.1).** The Jetson wheels build (see CI), but
51
+ publishing the real wheels is blocked on:
52
+
53
+ 1. **PyPI 100 MB per-file limit.** Upstream `onnxruntime-gpu` wheels are
54
+ ~200 MB and the JetPack 6 (CUDA 12.6) wheels are ~150 MB — both over the
55
+ default limit. A per-project file-size increase request to PyPI is required.
56
+ 2. **Version alignment.** nixpkgs' `onnxruntime` (the base for the Jetson
57
+ build) is currently 1.22.x while upstream `onnxruntime-gpu` is 1.27.x. The
58
+ republished set should agree on a version.
59
+ 3. **Jetson wheel portability.** Nix-built wheels carry `/nix/store` rpaths and
60
+ are not yet stock-Jetson portable (repath/bundle against JetPack-provided
61
+ CUDA is a separate step), plus no runtime GPU smoke-test yet.
62
+
63
+ ## Platform Coverage (target)
64
+
65
+ | | Linux x86_64 (CUDA) | Windows (CUDA) | Linux aarch64 / Jetson (CUDA) |
66
+ |---|---|---|---|
67
+ | Python 3.10 | upstream | upstream | nix (JetPack 5/6) |
68
+ | Python 3.11 | upstream | upstream | nix (JetPack 5/6) |
69
+ | Python 3.12 | upstream | upstream | nix (JetPack 5/6) |
70
+ | Python 3.13 | upstream | upstream | nix (best-effort) |
71
+ | Python 3.14 | upstream | upstream | nix (best-effort) |
72
+
73
+ ## Building & Publishing
74
+
75
+ - `nix build .#jp6-cp312` (on a native aarch64 runner) — build a Jetson wheel.
76
+ See `TARGETS.md` for the full matrix and `.github/workflows/build-jetson-nix.yml`.
77
+ - `run/publish` — download upstream wheels, collect local Nix builds, rename all
78
+ to `onnxruntime-gpu-extended`, and upload to PyPI. `PUBLISH_SKIP_UPLOAD=1` does
79
+ a dry run (build + rename only).
@@ -0,0 +1,54 @@
1
+ # onnxruntime-gpu-extended
2
+
3
+ Pre-built ONNX Runtime **CUDA** wheels for platforms that upstream
4
+ `onnxruntime-gpu` does **not** ship — primarily **NVIDIA Jetson** (aarch64 +
5
+ CUDA / L4T) — published under a single package name so installation is the same
6
+ everywhere.
7
+
8
+ There is no source code in this repo. It downloads official CUDA wheels from
9
+ PyPI (`onnxruntime-gpu`) and builds the missing aarch64 Jetson wheels with Nix
10
+ (see `flake.nix` + `TARGETS.md`). All wheels are renamed to
11
+ `onnxruntime-gpu-extended` and uploaded to PyPI with a unified version, keeping
12
+ the internal `onnxruntime` package intact so `import onnxruntime` works
13
+ unchanged.
14
+
15
+ ## Install
16
+
17
+ ```sh
18
+ pip install onnxruntime-gpu-extended
19
+ ```
20
+
21
+ Works as a drop-in replacement — just `import onnxruntime` as usual.
22
+
23
+ ## Status
24
+
25
+ **Placeholder / name reserved (0.0.1).** The Jetson wheels build (see CI), but
26
+ publishing the real wheels is blocked on:
27
+
28
+ 1. **PyPI 100 MB per-file limit.** Upstream `onnxruntime-gpu` wheels are
29
+ ~200 MB and the JetPack 6 (CUDA 12.6) wheels are ~150 MB — both over the
30
+ default limit. A per-project file-size increase request to PyPI is required.
31
+ 2. **Version alignment.** nixpkgs' `onnxruntime` (the base for the Jetson
32
+ build) is currently 1.22.x while upstream `onnxruntime-gpu` is 1.27.x. The
33
+ republished set should agree on a version.
34
+ 3. **Jetson wheel portability.** Nix-built wheels carry `/nix/store` rpaths and
35
+ are not yet stock-Jetson portable (repath/bundle against JetPack-provided
36
+ CUDA is a separate step), plus no runtime GPU smoke-test yet.
37
+
38
+ ## Platform Coverage (target)
39
+
40
+ | | Linux x86_64 (CUDA) | Windows (CUDA) | Linux aarch64 / Jetson (CUDA) |
41
+ |---|---|---|---|
42
+ | Python 3.10 | upstream | upstream | nix (JetPack 5/6) |
43
+ | Python 3.11 | upstream | upstream | nix (JetPack 5/6) |
44
+ | Python 3.12 | upstream | upstream | nix (JetPack 5/6) |
45
+ | Python 3.13 | upstream | upstream | nix (best-effort) |
46
+ | Python 3.14 | upstream | upstream | nix (best-effort) |
47
+
48
+ ## Building & Publishing
49
+
50
+ - `nix build .#jp6-cp312` (on a native aarch64 runner) — build a Jetson wheel.
51
+ See `TARGETS.md` for the full matrix and `.github/workflows/build-jetson-nix.yml`.
52
+ - `run/publish` — download upstream wheels, collect local Nix builds, rename all
53
+ to `onnxruntime-gpu-extended`, and upload to PyPI. `PUBLISH_SKIP_UPLOAD=1` does
54
+ a dry run (build + rename only).
@@ -0,0 +1,14 @@
1
+ """
2
+ onnxruntime-gpu-extended: Pre-built ONNX Runtime CUDA wheels for platforms
3
+ upstream onnxruntime-gpu does not ship (primarily NVIDIA Jetson / aarch64 + CUDA).
4
+
5
+ Real releases republish the upstream `onnxruntime-gpu` wheels plus Nix-built
6
+ Jetson wheels under this single name, keeping the internal `onnxruntime` package
7
+ intact so `import onnxruntime` works unchanged.
8
+
9
+ Usage:
10
+ pip install onnxruntime-gpu-extended
11
+ import onnxruntime
12
+ """
13
+
14
+ __version__ = "0.0.1"
@@ -0,0 +1,79 @@
1
+ Metadata-Version: 2.4
2
+ Name: onnxruntime-gpu-extended
3
+ Version: 0.0.1
4
+ Summary: ONNX Runtime GPU (CUDA) - pre-built wheels for platforms upstream onnxruntime-gpu doesn't ship (e.g. NVIDIA Jetson / aarch64 + CUDA)
5
+ Author: Community Contributor
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://onnxruntime.ai/
8
+ Project-URL: Repository, https://github.com/jeff-hykin/onnxruntime-gpu-extended
9
+ Keywords: onnxruntime,onnx,cuda,gpu,jetson,aarch64,inference
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Intended Audience :: Science/Research
13
+ Classifier: Topic :: Scientific/Engineering
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Programming Language :: Python :: 3.14
20
+ Classifier: Operating System :: POSIX :: Linux
21
+ Classifier: Environment :: GPU :: NVIDIA CUDA
22
+ Requires-Python: >=3.10
23
+ Description-Content-Type: text/markdown
24
+ Requires-Dist: numpy
25
+
26
+ # onnxruntime-gpu-extended
27
+
28
+ Pre-built ONNX Runtime **CUDA** wheels for platforms that upstream
29
+ `onnxruntime-gpu` does **not** ship — primarily **NVIDIA Jetson** (aarch64 +
30
+ CUDA / L4T) — published under a single package name so installation is the same
31
+ everywhere.
32
+
33
+ There is no source code in this repo. It downloads official CUDA wheels from
34
+ PyPI (`onnxruntime-gpu`) and builds the missing aarch64 Jetson wheels with Nix
35
+ (see `flake.nix` + `TARGETS.md`). All wheels are renamed to
36
+ `onnxruntime-gpu-extended` and uploaded to PyPI with a unified version, keeping
37
+ the internal `onnxruntime` package intact so `import onnxruntime` works
38
+ unchanged.
39
+
40
+ ## Install
41
+
42
+ ```sh
43
+ pip install onnxruntime-gpu-extended
44
+ ```
45
+
46
+ Works as a drop-in replacement — just `import onnxruntime` as usual.
47
+
48
+ ## Status
49
+
50
+ **Placeholder / name reserved (0.0.1).** The Jetson wheels build (see CI), but
51
+ publishing the real wheels is blocked on:
52
+
53
+ 1. **PyPI 100 MB per-file limit.** Upstream `onnxruntime-gpu` wheels are
54
+ ~200 MB and the JetPack 6 (CUDA 12.6) wheels are ~150 MB — both over the
55
+ default limit. A per-project file-size increase request to PyPI is required.
56
+ 2. **Version alignment.** nixpkgs' `onnxruntime` (the base for the Jetson
57
+ build) is currently 1.22.x while upstream `onnxruntime-gpu` is 1.27.x. The
58
+ republished set should agree on a version.
59
+ 3. **Jetson wheel portability.** Nix-built wheels carry `/nix/store` rpaths and
60
+ are not yet stock-Jetson portable (repath/bundle against JetPack-provided
61
+ CUDA is a separate step), plus no runtime GPU smoke-test yet.
62
+
63
+ ## Platform Coverage (target)
64
+
65
+ | | Linux x86_64 (CUDA) | Windows (CUDA) | Linux aarch64 / Jetson (CUDA) |
66
+ |---|---|---|---|
67
+ | Python 3.10 | upstream | upstream | nix (JetPack 5/6) |
68
+ | Python 3.11 | upstream | upstream | nix (JetPack 5/6) |
69
+ | Python 3.12 | upstream | upstream | nix (JetPack 5/6) |
70
+ | Python 3.13 | upstream | upstream | nix (best-effort) |
71
+ | Python 3.14 | upstream | upstream | nix (best-effort) |
72
+
73
+ ## Building & Publishing
74
+
75
+ - `nix build .#jp6-cp312` (on a native aarch64 runner) — build a Jetson wheel.
76
+ See `TARGETS.md` for the full matrix and `.github/workflows/build-jetson-nix.yml`.
77
+ - `run/publish` — download upstream wheels, collect local Nix builds, rename all
78
+ to `onnxruntime-gpu-extended`, and upload to PyPI. `PUBLISH_SKIP_UPLOAD=1` does
79
+ a dry run (build + rename only).
@@ -0,0 +1,9 @@
1
+ MANIFEST.in
2
+ README.md
3
+ pyproject.toml
4
+ onnxruntime_gpu_extended/__init__.py
5
+ onnxruntime_gpu_extended.egg-info/PKG-INFO
6
+ onnxruntime_gpu_extended.egg-info/SOURCES.txt
7
+ onnxruntime_gpu_extended.egg-info/dependency_links.txt
8
+ onnxruntime_gpu_extended.egg-info/requires.txt
9
+ onnxruntime_gpu_extended.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ onnxruntime_gpu_extended
@@ -0,0 +1,39 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "onnxruntime-gpu-extended"
7
+ version = "0.0.1"
8
+ description = "ONNX Runtime GPU (CUDA) - pre-built wheels for platforms upstream onnxruntime-gpu doesn't ship (e.g. NVIDIA Jetson / aarch64 + CUDA)"
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = "MIT"
12
+ dependencies = [
13
+ "numpy",
14
+ ]
15
+ authors = [
16
+ {name = "Community Contributor"}
17
+ ]
18
+ classifiers = [
19
+ "Development Status :: 3 - Alpha",
20
+ "Intended Audience :: Developers",
21
+ "Intended Audience :: Science/Research",
22
+ "Topic :: Scientific/Engineering",
23
+ "Programming Language :: Python :: 3",
24
+ "Programming Language :: Python :: 3.10",
25
+ "Programming Language :: Python :: 3.11",
26
+ "Programming Language :: Python :: 3.12",
27
+ "Programming Language :: Python :: 3.13",
28
+ "Programming Language :: Python :: 3.14",
29
+ "Operating System :: POSIX :: Linux",
30
+ "Environment :: GPU :: NVIDIA CUDA",
31
+ ]
32
+ keywords = ["onnxruntime", "onnx", "cuda", "gpu", "jetson", "aarch64", "inference"]
33
+
34
+ [project.urls]
35
+ Homepage = "https://onnxruntime.ai/"
36
+ Repository = "https://github.com/jeff-hykin/onnxruntime-gpu-extended"
37
+
38
+ [tool.setuptools]
39
+ packages = ["onnxruntime_gpu_extended"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+