-
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?
Conversation
|
||
//param to call mluOpCholesky() | ||
message CholeskyParam { | ||
optional bool upper = 1 [default = false]; |
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.
PR与远端冲突了,建议本地rebase 后再push上来
temp
Outdated
@@ -0,0 +1,1186 @@ | |||
/************************************************************************* |
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.
此文件应该删除
@@ -429,6 +429,7 @@ message Node { | |||
optional DCNParam dcn_param = 405; | |||
optional LogcumsumexpParam logcumsumexp_param = 19980423; | |||
optional LgammaParam lgamma_param = 202435; |
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
@@ -1191,3 +1192,9 @@ message LogcumsumexpParam { | |||
message LgammaParam { | |||
optional bool inplace = 1 [default = false]; | |||
} | |||
|
|||
//param to call mluOpCholesky() | |||
message CholeskyParam { |
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.
支持inplace需要添加类似这里的inplace参数
https://github.com/Cambricon/mlu-ops-proto/blob/master/mlu_op_test.proto#L1192
对应的要修改下generator和gtest代码
No description provided.