-
Notifications
You must be signed in to change notification settings - Fork 27
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
[Feature](mluOpCholesky): add cholesky parameter #95
base: master
Are you sure you want to change the base?
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -429,6 +429,7 @@ message Node { | |
optional DCNParam dcn_param = 405; | ||
optional LogcumsumexpParam logcumsumexp_param = 19980423; | ||
optional LgammaParam lgamma_param = 202435; | ||
optional CholeskyParam cholesky_param = 618323; // CholeskyParam | ||
} | ||
|
||
|
||
|
@@ -1191,3 +1192,9 @@ message LogcumsumexpParam { | |
message LgammaParam { | ||
optional bool inplace = 1 [default = false]; | ||
} | ||
|
||
//param to call mluOpCholesky() | ||
message CholeskyParam { | ||
ArtIntAI marked this conversation as resolved.
Show resolved
Hide resolved
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. 支持inplace需要添加类似这里的inplace参数 对应的要修改下generator和gtest代码 |
||
optional bool upper = 1 [default = false]; | ||
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. PR与远端冲突了,建议本地rebase 后再push上来 |
||
} | ||
|
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.
没有修改OpType
参考#105