[docs] remove duplicate tip block. (#7625)

remove duplicate tip block.
This commit is contained in:
Sayak Paul
2024-04-10 10:31:11 +05:30
committed by GitHub
parent b99b1617cf
commit a402431de0

View File

@@ -66,7 +66,7 @@ For example, if you have two 8GB GPUs, then using [`~DiffusionPipeline.enable_mo
To make use of both GPUs, you can use the "balanced" device placement strategy which splits the models across all available GPUs.
> [!TIP]
> [!WARNING]
> Only the "balanced" strategy is supported at the moment, and we plan to support additional mapping strategies in the future.
```diff
@@ -81,9 +81,6 @@ image = pipeline("a dog").images[0]
image
```
> [!WARNING]
> Currently, we support only "balanced" `device_map`. We plan to support more device mapping strategies in future.
You can also pass a dictionary to enforce the maximum GPU memory that can be used on each device:
```diff