File tree 3 files changed +12
-0
lines changed
3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -5974,6 +5974,7 @@ filegroup(
5974
5974
"//tensorflow/core/kernels/linalg:linalg_ops_common.h" ,
5975
5975
"//tensorflow/core/kernels/linalg:matrix_diag_op.h" ,
5976
5976
"//tensorflow/core/kernels/linalg:matrix_set_diag_op.h" ,
5977
+ "//tensorflow/core/kernels/linalg:matrix_triangular_solve_op_impl.h" ,
5977
5978
"//tensorflow/core/util:image_resizer_state.h" ,
5978
5979
],
5979
5980
)
@@ -6280,9 +6281,12 @@ filegroup(
6280
6281
"//tensorflow/core/kernels/image:resize_nearest_neighbor_op.cc" ,
6281
6282
"//tensorflow/core/kernels/image:sample_distorted_bounding_box_op.cc" ,
6282
6283
"//tensorflow/core/kernels/linalg:linalg_ops_common.cc" ,
6284
+ "//tensorflow/core/kernels/linalg:cholesky_op.cc" ,
6283
6285
"//tensorflow/core/kernels/linalg:matrix_diag_op.cc" ,
6284
6286
"//tensorflow/core/kernels/linalg:matrix_inverse_op.cc" ,
6285
6287
"//tensorflow/core/kernels/linalg:matrix_set_diag_op.cc" ,
6288
+ "//tensorflow/core/kernels/linalg:matrix_triangular_solve_op_complex.cc" ,
6289
+ "//tensorflow/core/kernels/linalg:matrix_triangular_solve_op_real.cc" ,
6286
6290
],
6287
6291
)
6288
6292
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ package_group(
34
34
35
35
# Export a few files for use on Android.
36
36
exports_files ([
37
+ "cholesky_op.cc" ,
37
38
"einsum_op_impl_half.cc" ,
38
39
"einsum_op_impl_bfloat16.cc" ,
39
40
"einsum_op_impl_int32.cc" ,
@@ -51,6 +52,9 @@ exports_files([
51
52
"matrix_inverse_op.cc" ,
52
53
"matrix_set_diag_op.h" ,
53
54
"matrix_set_diag_op.cc" ,
55
+ "matrix_triangular_solve_op_complex.cc" ,
56
+ "matrix_triangular_solve_op_impl.h" ,
57
+ "matrix_triangular_solve_op_real.cc" ,
54
58
])
55
59
56
60
# Public support libraries ----------------------------------------------------
Original file line number Diff line number Diff line change @@ -67,12 +67,14 @@ const std::set<std::string>& GetFlexAllowlist() {
67
67
" AvgPool3D" ,
68
68
" AvgPool3DGrad" ,
69
69
" AvgPoolGrad" ,
70
+ " BatchCholesky" ,
70
71
" BatchMatMul" ,
71
72
" BatchMatMulV2" ,
72
73
" BatchMatrixDiag" ,
73
74
" BatchMatrixDiagPart" ,
74
75
" BatchMatrixInverse" ,
75
76
" BatchMatrixSetDiag" ,
77
+ " BatchMatrixTriangularSolve" ,
76
78
" BatchNormWithGlobalNormalization" ,
77
79
" BatchNormWithGlobalNormalizationGrad" ,
78
80
" BatchToSpace" ,
@@ -104,6 +106,7 @@ const std::set<std::string>& GetFlexAllowlist() {
104
106
" Ceil" ,
105
107
" CheckNumerics" ,
106
108
" CheckNumericsV2" ,
109
+ " Cholesky" ,
107
110
" CombinedNonMaxSuppression" ,
108
111
" Complex" ,
109
112
" ComplexAbs" ,
@@ -264,6 +267,7 @@ const std::set<std::string>& GetFlexAllowlist() {
264
267
" MatrixSetDiag" ,
265
268
" MatrixSetDiagV2" ,
266
269
" MatrixSetDiagV3" ,
270
+ " MatrixTriangularSolve" ,
267
271
" Max" ,
268
272
" MaxPool" ,
269
273
" MaxPool3D" ,
You can’t perform that action at this time.
0 commit comments