Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add complex dtype for isclose #6154

Merged
merged 1 commit into from
Sep 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/api/paddle/isclose_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ isclose
参数
:::::::::

- **x** (Tensor) - 输入的 `Tensor`,数据类型为float16、float32、float64。
- **y** (Tensor) - 输入的 `Tensor`,数据类型为float16、float32、float64。
- **x** (Tensor) - 输入的 `Tensor`,数据类型为 float16、float32、float64、complex64 或 complex128
- **y** (Tensor) - 输入的 `Tensor`,数据类型为 float16、float32、float64、complex64 或 complex128
- **rtol** (float,可选) - 相对容忍误差,默认值为 1e-5。
- **atol** (float,可选) - 绝对容忍误差,默认值为 1e-8。
- **equal_nan** (bool,可选) - 如果设置为 True,则两个 NaN 数值将被视为相等,默认值为 False。
Expand Down