Skip to content

Commit

Permalink
correct paddle install scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
HydrogenSulfate committed Dec 26, 2024
1 parent d0ceca0 commit af81543
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion doc/env.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Control high (double) or low (float) precision of training.

**Choices**: `0`, `1`; **Default**: `0`

{{ paddle_icon }} Enable Paddle CINN Compiler when `PD_JIT` is enabled. Note that this option may either improve or decrease the performance. Requires Paddle to support CINN()(`paddle.device.is_compiled_with_cinn()` is `True`).
{{ paddle_icon }} Enable Paddle CINN Compiler when `PD_JIT` is enabled. Note that this option may either improve or decrease the performance. Requires Paddle to support CINN(`paddle.device.is_compiled_with_cinn()` is `True`).

:::

Expand Down
9 changes: 5 additions & 4 deletions doc/install/easy-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,24 +193,25 @@ Switch to the TensorFlow {{ tensorflow_icon }} tab for more information.
::::{tab-item} CUDA 12.3

```bash
pip install deepmd-kit[paddle]
pip install paddlepaddle-gpu==3.0.0b2 -i https://www.paddlepaddle.org.cn/packages/stable/cu123/
pip install deepmd-kit
```

::::

::::{tab-item} CUDA 11.8

```bash
pip install paddlepaddle-gpu==3.0.0b2 -i https://www.paddlepaddle.org.cn/packages/stable/cu123/
pip install deepmd-kit-cu11
pip install paddlepaddle-gpu==3.0.0b2 -i https://www.paddlepaddle.org.cn/packages/stable/cu118/
pip install deepmd-kit
```

::::

::::{tab-item} CPU

```bash
pip install paddlepaddle-gpu==3.0.0b2 -i https://www.paddlepaddle.org.cn/packages/stable/cu118/
pip install paddlepaddle==3.0.0b2 -i https://www.paddlepaddle.org.cn/packages/stable/cpu/
pip install deepmd-kit
```

Expand Down

0 comments on commit af81543

Please sign in to comment.