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

【complex op】No.19 add complex support for triangular_solve #6443

Merged
merged 1 commit into from
Jan 4, 2024
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/linalg/triangular_solve_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ triangular_solve

参数
:::::::::
- **x** (Tensor) - 线性方程组左边的系数方阵,其为一个或一批方阵。``x`` 的形状应为 ``[*, M, M]``,其中 ``*`` 为零或更大的批次维度,数据类型为 float32, float64。
- **y** (Tensor) - 线性方程组右边的矩阵,其为一个或一批矩阵。``y`` 的形状应为 ``[*, M, K]``,其中 ``*`` 为零或更大的批次维度,数据类型为 float32, float64。
- **x** (Tensor) - 线性方程组左边的系数方阵,其为一个或一批方阵。``x`` 的形状应为 ``[*, M, M]``,其中 ``*`` 为零或更大的批次维度,数据类型为 float32, float64,complex64,complex128
- **y** (Tensor) - 线性方程组右边的矩阵,其为一个或一批矩阵。``y`` 的形状应为 ``[*, M, K]``,其中 ``*`` 为零或更大的批次维度,数据类型为 float32, float64,complex64,complex128
- **upper** (bool,可选) - 对系数矩阵 ``x`` 取上三角还是下三角。默认为 True,表示取上三角。
- **transpose** (bool,可选) - 是否对系数矩阵 ``x`` 进行转置。默认为 False,不进行转置。
- **unitriangular** (bool,可选) - 如果为 True,则将系数矩阵 ``x`` 对角线元素假设为 1 来求解方程。默认为 False。
Expand Down