docs: add faq on utilize multipl NV GPUs (#423)
* docs: add faq on utilize multipl NV GPUs * updaterelease-0.2
parent
12a37e2330
commit
491e295a48
|
|
@ -1,3 +1,5 @@
|
||||||
|
import CodeBlock from '@theme/CodeBlock';
|
||||||
|
|
||||||
# ⁉️ Frequently Asked Questions
|
# ⁉️ Frequently Asked Questions
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
|
|
@ -18,3 +20,14 @@
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>How to utilize multiple NVIDIA GPUs?</summary>
|
||||||
|
<div>
|
||||||
|
<p>Tabby supports replicating models on multiple GPUs to increase throughput. You can specify the devices for model replication by using the <b>--device-indices</b> option.</p>
|
||||||
|
<CodeBlock language="bash">
|
||||||
|
# Replicate model to GPU 0 and GPU 1.{'\n'}
|
||||||
|
tabby serve ... --device-indices 0 --device-indices 1
|
||||||
|
</CodeBlock>
|
||||||
|
</div>
|
||||||
|
</details>
|
||||||
Loading…
Reference in New Issue