libflame revision_anchor
|
Functions | |
FLA_Error | FLASH_Copy (FLA_Obj A, FLA_Obj B) |
Variables | |
fla_copy_t * | flash_copy_cntl |
References FLA_Check_error_level(), FLA_Copy_check(), FLA_Copy_internal(), FLASH_Queue_disable(), FLASH_Queue_enable(), and FLASH_Queue_get_enabled().
Referenced by FLASH_Chol_solve(), FLASH_LQ_UT_solve(), FLASH_LU_incpiv_solve(), FLASH_LU_nopiv_solve(), FLASH_LU_piv_solve(), FLASH_Obj_create_copy_of(), FLASH_QR_UT_inc_solve(), FLASH_QR_UT_solve(), and FLASH_UDdate_UT_inc_solve().
{ FLA_Error r_val; FLA_Bool enable_supermatrix; // Check parameters. if ( FLA_Check_error_level() >= FLA_MIN_ERROR_CHECKING ) FLA_Copy_check( A, B ); // Find the status of SuperMatrix. enable_supermatrix = FLASH_Queue_get_enabled(); // Temporarily disable SuperMatrix. FLASH_Queue_disable(); // Execute tasks. r_val = FLA_Copy_internal( A, B, flash_copy_cntl ); // Restore SuperMatrix to its previous status. if ( enable_supermatrix ) FLASH_Queue_enable(); return r_val; }