libflame  revision_anchor
Functions
FLA_LU_piv_copy_task.c File Reference

(r)

Functions

FLA_Error FLA_LU_piv_copy_task (FLA_Obj A, FLA_Obj p, FLA_Obj U, fla_lu_t *cntl)
 

Function Documentation

◆ FLA_LU_piv_copy_task()

FLA_Error FLA_LU_piv_copy_task ( FLA_Obj  A,
FLA_Obj  p,
FLA_Obj  U,
fla_lu_t cntl 
)

References FLA_Copy_external(), and FLA_LU_piv_task().

Referenced by FLASH_LU_incpiv_var2(), and FLASH_Queue_exec_task().

14 {
15  FLA_Error r_val;
16 
17  r_val = FLA_LU_piv_task( A, p, cntl );
18 
19  FLA_Copy_external( A, U );
20 
21  return r_val;
22 }
FLA_Error FLA_LU_piv_task(FLA_Obj A, FLA_Obj p, fla_lu_t *cntl)
Definition: FLA_LU_piv_task.c:15
int FLA_Error
Definition: FLA_type_defs.h:47
FLA_Error FLA_Copy_external(FLA_Obj A, FLA_Obj B)
Definition: FLA_Copy_external.c:13