Reyev commited on
Commit
ecb83a4
·
verified ·
1 Parent(s): 75b8880

Add tensorflow-2.20.0.dev0+selfbuilt-cp312-cp312-linux_aarch64.whl (TF 2.20 + CUDA 12.8, sm_90/sm_120, aarch64)

Browse files
.gitattributes CHANGED
@@ -58,3 +58,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
61
+ tensorflow-2.20.0.dev0+selfbuilt-cp312-cp312-linux_aarch64.whl filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - tensorflow
7
+ - tensorflow-gpu
8
+ - aarch64
9
+ - arm64
10
+ - linux-aarch64
11
+ - cuda
12
+ - cuda-12
13
+ - cudnn-9
14
+ - gpu
15
+ - blackwell
16
+ - gb10
17
+ - sm_90
18
+ - sm_120
19
+ - python-3.12
20
+ - wheel
21
+ - selfbuilt
22
+ pretty_name: TensorFlow GPU wheels for linux_aarch64 (CUDA 12.8 / cuDNN 9.8)
23
+ size_categories:
24
+ - n<1K
25
+ ---
26
+
27
+ # TensorFlow 2.20 GPU wheel for linux_aarch64 (CUDA 12.8 / cuDNN 9.8)
28
+
29
+ Self-built `tensorflow` wheel for the platforms PyPI does **not** ship a
30
+ GPU build for. Produced by
31
+ [`scripts/build_tf_gpu_aarch64.sh`](https://github.com/Infineon/lpwwd/blob/main/scripts/build_tf_gpu_aarch64.sh)
32
+ in the LPWWD pipeline repo on an NVIDIA Spark / GB10 host.
33
+
34
+ ## Why this exists
35
+
36
+ PyPI ships a CPU-only `tensorflow` wheel for `linux_aarch64`. There is no
37
+ pip-installable GPU TensorFlow on this platform/Python combo, so to get
38
+ GPU acceleration without Docker the wheel has to be built from source.
39
+ A cold from-source build is 2–4 h and ~50–80 GB of bazel artifacts; this
40
+ repo lets every other aarch64 host skip that.
41
+
42
+ ## Contents
43
+
44
+ | File | Size | sha256 |
45
+ |---|---:|---|
46
+ | `tensorflow-2.20.0.dev0+selfbuilt-cp312-cp312-linux_aarch64.whl` | ~495 MiB | `6c63ce87206ac1485b5858a100f098674943098da946837b77d8d6c07a7ec35b` |
47
+ | `tensorflow-2.20.0.dev0+selfbuilt-cp312-cp312-linux_aarch64.whl.sha256` | — | sidecar |
48
+
49
+ ## Build configuration
50
+
51
+ | Setting | Value |
52
+ |---|---|
53
+ | TensorFlow | `v2.20.0` |
54
+ | Python | 3.12 (cp312) |
55
+ | Platform tag | `linux_aarch64` (ARM 64-bit) |
56
+ | CUDA | 12.8 (hermetic) |
57
+ | cuDNN | 9.8 (hermetic) |
58
+ | Compute capabilities | `9.0` (Hopper) + `12.0` (Blackwell / GB10 `sm_120`) |
59
+ | Device compiler | `nvcc` |
60
+ | Host compiler | `clang-17` (via `--config=nvcc_clang`) |
61
+ | Bazel | 7.4.1 |
62
+ | Build host | NVIDIA Spark (GB10, aarch64, 20 cores, 121.7 GiB unified memory) |
63
+
64
+ This wheel will run on any `linux_aarch64` host with a CUDA-12.x driver
65
+ and a GPU of compute capability 9.0 or 12.0 (e.g. H100/H200/Hopper and
66
+ Blackwell/GB10). Other compute capabilities are not embedded — if your
67
+ device has e.g. `sm_80` you need a rebuild.
68
+
69
+ ## Install
70
+
71
+ ```bash
72
+ pip download \
73
+ --no-deps \
74
+ --dest . \
75
+ "https://huggingface.co/datasets/infineon/tensorflow-gpu/resolve/main/tensorflow-2.20.0.dev0+selfbuilt-cp312-cp312-linux_aarch64.whl"
76
+ sha256sum -c <(echo "6c63ce87206ac1485b5858a100f098674943098da946837b77d8d6c07a7ec35b tensorflow-2.20.0.dev0+selfbuilt-cp312-cp312-linux_aarch64.whl")
77
+ pip install --upgrade "./tensorflow-2.20.0.dev0+selfbuilt-cp312-cp312-linux_aarch64.whl"
78
+ ```
79
+
80
+ Or with `huggingface_hub`:
81
+
82
+ ```python
83
+ from huggingface_hub import hf_hub_download
84
+ whl = hf_hub_download(
85
+ repo_id="infineon/tensorflow-gpu",
86
+ repo_type="dataset",
87
+ filename="tensorflow-2.20.0.dev0+selfbuilt-cp312-cp312-linux_aarch64.whl",
88
+ )
89
+ ```
90
+
91
+ Then verify the GPU is visible:
92
+
93
+ ```python
94
+ import tensorflow as tf
95
+ print(tf.__version__, tf.config.list_physical_devices("GPU"))
96
+ ```
97
+
98
+ ## Compatibility matrix
99
+
100
+ | Host arch | CUDA driver | GPU SM | Status |
101
+ |---|---|---|---|
102
+ | `linux_aarch64` | 12.8+ | `sm_90` (Hopper) | OK |
103
+ | `linux_aarch64` | 12.8+ | `sm_120` (Blackwell / GB10) | OK |
104
+ | `linux_aarch64` | 12.8+ | other SM | rebuild required |
105
+ | `linux_x86_64` | — | — | wrong arch; use upstream PyPI |
106
+ | `macOS` / Windows | — | — | not supported |
107
+
108
+ ## Provenance
109
+
110
+ Built from the upstream `tensorflow/tensorflow` repo at tag `v2.20.0`
111
+ (no patches) using
112
+ [`scripts/build_tf_gpu_aarch64.sh`](https://github.com/Infineon/lpwwd/blob/main/scripts/build_tf_gpu_aarch64.sh).
113
+ The build script pins all toolchain versions (Bazel, CUDA, cuDNN, clang)
114
+ and is the single source of truth — re-running it on a fresh aarch64
115
+ host with `TF_VERSION=v2.20.0` reproduces this wheel bit-identically
116
+ modulo timestamps.
117
+
118
+ ## License
119
+
120
+ TensorFlow itself is Apache-2.0. This dataset card is also Apache-2.0.
tensorflow-2.20.0.dev0+selfbuilt-cp312-cp312-linux_aarch64.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c63ce87206ac1485b5858a100f098674943098da946837b77d8d6c07a7ec35b
3
+ size 518467640
tensorflow-2.20.0.dev0+selfbuilt-cp312-cp312-linux_aarch64.whl.sha256 ADDED
@@ -0,0 +1 @@
 
 
1
+ 6c63ce87206ac1485b5858a100f098674943098da946837b77d8d6c07a7ec35b tensorflow-2.20.0.dev0+selfbuilt-cp312-cp312-linux_aarch64.whl