Skip to content

Commit d67a2f0

Browse files
authored
Minor formatting change on RUNNING_ON_GPU.md
1 parent 8905b14 commit d67a2f0

1 file changed

Lines changed: 17 additions & 19 deletions

File tree

RUNNING_ON_GPU.md

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ tts.SpeakFast("Hello from GPU!", KokoroVoiceManager.GetVoice("af_heart"));
2929

3030
For NVIDIA GPUs with CUDA support:
3131
- Choose either [KokoroSharp.GPU.Windows](https://www.nuget.org/packages/KokoroSharp.GPU.Windows), [KokoroSharp.GPU.Linux](https://www.nuget.org/packages/KokoroSharp.GPU.Linux), or [KokoroSharp.GPU](https://www.nuget.org/packages/KokoroSharp.GPU).
32-
- Download & install [CUDA Toolkit (v12.x)](https://developer.nvidia.com/cuda-12-4-0-download-archive), and make sure it's in SYSTEM PATH or put the libraries next to your compiled executable.
32+
- Download & install [CUDA Toolkit (v12.x)](https://developer.nvidia.com/cuda-12-4-0-download-archive), and make sure it's in SYSTEM PATH.
3333
- Download & install [cuDNN](https://developer.nvidia.com/cudnn), and make sure it's in SYSTEM PATH.
3434
- Restart your IDE/terminal after installation, then, run:
3535
```cs
@@ -39,6 +39,22 @@ KokoroTTS tts = KokoroTTS.LoadModel(sessionOptions: options);
3939
tts.SpeakFast("Hello from GPU!", KokoroVoiceManager.GetVoice("af_heart"));
4040
```
4141

42+
<details>
43+
<summary> **IF you choose to NOT install CUDA/cuDNN, this is the full list of libraries needed to be loaded** [Click to expand] </summary>
44+
- cudnn_engines_runtime_compiled64_9.dll <br>
45+
- cudnn_engines_precompiled64_9.dll <br>
46+
- cudnn_heuristic64_9.dll <br>
47+
- cudnn_graph64_9.dll <br>
48+
- cublasLt64_12.dll <br>
49+
- cudnn_adv64_9.dll <br>
50+
- cudnn_ops64_9.dll <br>
51+
- cublas64_12.dll <br>
52+
- cudart64_12.dll <br>
53+
- cufft64_11.dll <br>
54+
- cudnn64_9.dll <br>
55+
</details>
56+
57+
4258

4359
## CoreML
4460

@@ -65,21 +81,3 @@ It's also possible to receive this error if you have more packages than you shou
6581
`DllNotFoundException` means you have no runtime AT ALL. For plug & play support (still fast), use the [KokoroSharp.CPU](https://www.nuget.org/packages/KokoroSharp.CPU) package.
6682

6783
Always reset your IDE/terminal after installing dependencies, to make sure the system path is in sync.
68-
69-
70-
71-
### Exact list of CUDA / CUDNN libraries nessesary for inference
72-
<details>
73-
<summary>(Preview)</summary>
74-
- cudnn_engines_runtime_compiled64_9.dll <br>
75-
- cudnn_engines_precompiled64_9.dll <br>
76-
- cudnn_heuristic64_9.dll <br>
77-
- cudnn_graph64_9.dll <br>
78-
- cublasLt64_12.dll <br>
79-
- cudnn_adv64_9.dll <br>
80-
- cudnn_ops64_9.dll <br>
81-
- cublas64_12.dll <br>
82-
- cudart64_12.dll <br>
83-
- cufft64_11.dll <br>
84-
- cudnn64_9.dll <br>
85-
</details>

0 commit comments

Comments
 (0)