hoangneee commited on
Commit
1e81649
·
verified ·
1 Parent(s): 355d905

Add dataset card / README (contents, GPU matrix, NVIDIA license notice)

Browse files
Files changed (1) hide show
  1. README.md +98 -0
README.md ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: nvidia-cuda-cudnn-redistributable
4
+ license_link: https://docs.nvidia.com/cuda/eula/index.html
5
+ pretty_name: MBFS CUDA Runtime Bundle (cuda_v12)
6
+ tags:
7
+ - cuda
8
+ - cudnn
9
+ - onnxruntime
10
+ - runtime-libraries
11
+ - windows
12
+ ---
13
+
14
+ # MBFS CUDA Runtime Bundle (`cuda_v12`)
15
+
16
+ A self-contained, **ABI-matched** CUDA 12 execution stack for running
17
+ [ONNX Runtime](https://onnxruntime.ai/) **1.23.2** on Windows with the CUDA
18
+ execution provider. Used as the preferred runtime source by the MBFS
19
+ Speech-to-Text build (`scripts/build_windows.py`), which downloads the
20
+ `cuda_v12/` folder into `dist/lib/cuda_v12/`.
21
+
22
+ > ⚠️ These are **runtime redistributable libraries**, not source. The CUDA and
23
+ > cuDNN DLLs are © NVIDIA Corporation and remain under NVIDIA's licenses — see
24
+ > **[License & redistribution](#license--redistribution)** below.
25
+
26
+ ## Contents (`cuda_v12/`)
27
+
28
+ | File | Component | Approx. size |
29
+ |---|---|---|
30
+ | `onnxruntime.dll` | ONNX Runtime 1.23.2 (combined CUDA + DirectML + TensorRT + CPU build) | 15 MB |
31
+ | `onnxruntime_providers_cuda.dll` | ONNX Runtime CUDA execution provider | 361 MB |
32
+ | `onnxruntime_providers_shared.dll` | ONNX Runtime shared provider interface | <1 MB |
33
+ | `cublas64_12.dll`, `cublasLt64_12.dll` | CUDA 12 cuBLAS | 96 / 451 MB |
34
+ | `cudart64_12.dll` | CUDA 12 runtime | <1 MB |
35
+ | `cufft64_11.dll` | CUDA 12 cuFFT | 279 MB |
36
+ | `cudnn64_9.dll` + `cudnn_*64_9.dll` (9 files) | cuDNN 9 | ~1.4 GB |
37
+
38
+ **Total ≈ 2.0 GiB.** All DLLs come from a single matched build — the ONNX Runtime
39
+ provider DLLs are ABI-locked to `onnxruntime.dll`, so the set must be used together
40
+ (never mix with another ONNX Runtime release, or the CUDA EP fails to load).
41
+
42
+ ## Requirements
43
+
44
+ - **OS:** Windows x64
45
+ - **NVIDIA driver:** **R527+** (the minimum for CUDA 12.x). The CUDA *Toolkit* does
46
+ **not** need to be installed — this bundle ships the runtime.
47
+ - **GPU:** see the support matrix below.
48
+
49
+ ## GPU support matrix
50
+
51
+ `onnxruntime_providers_cuda.dll` is compiled with cubins for the following
52
+ architectures (no PTX is embedded, so there is **no JIT forward-compatibility** to
53
+ newer archs):
54
+
55
+ | Compute capability | Architecture | Example GPUs | Native CUDA |
56
+ |---|---|---|---|
57
+ | 5.2 | Maxwell | GTX 9xx | ✅ |
58
+ | 6.0 | Pascal | Tesla P100 | ✅ |
59
+ | 7.0 | Volta | V100 | ✅ |
60
+ | 7.5 | Turing | T4, RTX 20xx | ✅ |
61
+ | 8.0 | Ampere | A100, A30 | ✅ |
62
+ | 8.6 | Ampere | A40, RTX 30xx | ✅ |
63
+ | 8.9 | Ada | L4, L40, RTX 40xx | ✅ |
64
+ | 9.0a | Hopper | H100, H200 | ✅ |
65
+ | 10.x / 12.x | **Blackwell** | B100/B200, RTX 50xx | ❌ not native |
66
+
67
+ On a GPU outside this range (e.g. Blackwell), or with a too-old driver, the host
68
+ application should fall back to DirectML (`DmlExecutionProvider`, requires
69
+ `DirectML.dll` — **not** included here) or CPU. This bundle covers the native CUDA
70
+ path only.
71
+
72
+ ## Usage
73
+
74
+ The MBFS STT build pulls this automatically. To fetch it manually:
75
+
76
+ ```bash
77
+ # whole bundle into ./dist/lib (lands at ./dist/lib/cuda_v12/)
78
+ hf download MBFSAITeam/cuda-runtime-bundle --repo-type dataset \
79
+ --include "cuda_v12/*" --local-dir ./dist/lib
80
+ ```
81
+
82
+ For reproducible builds, pin a commit revision with `--revision <sha>` instead of
83
+ `main`.
84
+
85
+ ## License & redistribution
86
+
87
+ This repository bundles components under **different licenses**:
88
+
89
+ - **ONNX Runtime** (`onnxruntime*.dll`) — MIT License, © Microsoft.
90
+ - **CUDA runtime** (`cudart`, `cublas`, `cublasLt`, `cufft`) — © NVIDIA Corporation,
91
+ redistributed under the [NVIDIA CUDA Toolkit EULA](https://docs.nvidia.com/cuda/eula/index.html).
92
+ - **cuDNN** (`cudnn*64_9.dll`) — © NVIDIA Corporation, redistributed under the
93
+ [NVIDIA cuDNN Software License Agreement](https://docs.nvidia.com/deeplearning/cudnn/sla/index.html).
94
+
95
+ The NVIDIA libraries are redistributed **unmodified** as runtime dependencies, as
96
+ permitted by the above agreements. NVIDIA, CUDA, and cuDNN are trademarks of NVIDIA
97
+ Corporation. This repository is not affiliated with or endorsed by NVIDIA. By using
98
+ these files you agree to the respective NVIDIA license terms.