Skip to content

Commit

Permalink
add cholesky parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
dglr committed Apr 16, 2024
1 parent 47aa527 commit 927342e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions mlu_op_test.proto
Original file line number Diff line number Diff line change
Expand Up @@ -426,6 +426,7 @@ message Node {
optional BatchMatMulBCastParam batch_matmul_bcast_param = 132; // param
optional FFTParam fft_param = 65536; // param
optional DCNParam dcn_param = 405;
optional CholeskyParam cholesky_param = 618323; // CholeskyParam
}


Expand Down Expand Up @@ -1177,3 +1178,9 @@ message DCNParam {
optional int32 im2col_step = 7;
optional DataType compute_type = 8;
}

//param to call mluOpCholesky()
message CholeskyParam {
optional bool upper = 1 [default = false];
}

0 comments on commit 927342e

Please sign in to comment.