-
Notifications
You must be signed in to change notification settings - Fork 107
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
[WIP]add mluop cholesky #1146
base: master
Are you sure you want to change the base?
[WIP]add mluop cholesky #1146
Changes from all commits
fc47e70
77db74c
0e9a1f8
6051cce
86a2c41
efa3d08
4872a42
0f12676
86ceaba
beb7e53
40f62ba
d935fb9
e42d270
bfcf2b2
e4f330b
9eb9dc4
76631ee
23acef7
40661cc
4d34d54
fc1a0ac
b0d5b6e
9f7dcd5
7888578
435f829
4f9a1af
43bbe67
976a88b
284e6e8
65705ea
4d18629
5ae8c94
2b5822d
ecc80ec
0938f55
3213104
a9c9db6
876ebc2
94664e5
2c96f6f
9718b02
a472285
5d35eca
55ff179
b52a27a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -793,3 +793,10 @@ mluOpLgamma | |||||
|
||||||
- ``x`` 为输入张量。 | ||||||
|
||||||
.. cholesky:: | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
mluOpCholesky | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 有公式的话,需要补充下公式。 |
||||||
--------------- | ||||||
执行 Cholesky 分解,将一个正定矩阵分解为其下三角矩阵(L)或其转置的上三角矩阵(U),具体分解为上三角或下三角取决于参数``upper``。 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
可以把里面的“其”删除吗? |
||||||
|
||||||
该算子包含7个输入:handle 为操作句柄,input_desc 与 d_input 分别描述并提供输入矩阵的信息;两个输出:output_desc 与 d_output 分别描述并存储输出矩阵的信息;此外,还包含一个布尔参数 upper,用于指定输出是上三角还是下三角矩阵,以及一个 workspace 用于临时存储计算过程中的数据。 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
7个输入,这里只说明了3个(handle,input_desc 与 d_input)?upper,workspace也是输入的话,建议放在一起说明。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里的.. cholesky::是多写了吧?