Skip to content

Commit 05e01e3

Browse files
Regenerate Julia API
1 parent 1572ffd commit 05e01e3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

julia/LibCEED.jl/src/generated/libceed_bindings.jl

+4-4
Original file line numberDiff line numberDiff line change
@@ -453,6 +453,10 @@ function CeedQRFactorization(ceed, mat, tau, m, n)
453453
ccall((:CeedQRFactorization, libceed), Cint, (Ceed, Ptr{CeedScalar}, Ptr{CeedScalar}, CeedInt, CeedInt), ceed, mat, tau, m, n)
454454
end
455455

456+
function CeedHouseholderApplyQ(mat, Q, tau, t_mode, m, n, k, row, col)
457+
ccall((:CeedHouseholderApplyQ, libceed), Cint, (Ptr{CeedScalar}, Ptr{CeedScalar}, Ptr{CeedScalar}, CeedTransposeMode, CeedInt, CeedInt, CeedInt, CeedInt, CeedInt), mat, Q, tau, t_mode, m, n, k, row, col)
458+
end
459+
456460
function CeedSymmetricSchurDecomposition(ceed, mat, lambda, n)
457461
ccall((:CeedSymmetricSchurDecomposition, libceed), Cint, (Ceed, Ptr{CeedScalar}, Ptr{CeedScalar}, CeedInt), ceed, mat, lambda, n)
458462
end
@@ -1342,10 +1346,6 @@ function CeedMatrixMatrixMultiply(ceed, mat_A, mat_B, mat_C, m, n, kk)
13421346
ccall((:CeedMatrixMatrixMultiply, libceed), Cint, (Ceed, Ptr{CeedScalar}, Ptr{CeedScalar}, Ptr{CeedScalar}, CeedInt, CeedInt, CeedInt), ceed, mat_A, mat_B, mat_C, m, n, kk)
13431347
end
13441348

1345-
function CeedHouseholderApplyQ(A, Q, tau, t_mode, m, n, k, row, col)
1346-
ccall((:CeedHouseholderApplyQ, libceed), Cint, (Ptr{CeedScalar}, Ptr{CeedScalar}, Ptr{CeedScalar}, CeedTransposeMode, CeedInt, CeedInt, CeedInt, CeedInt, CeedInt), A, Q, tau, t_mode, m, n, k, row, col)
1347-
end
1348-
13491349
# Skipping MacroDefinition: CEED_EXTERN extern CEED_VISIBILITY ( default )
13501350

13511351
# Skipping MacroDefinition: CEED_QFUNCTION_HELPER CEED_QFUNCTION_ATTR static inline

0 commit comments

Comments
 (0)