libflame  12600
Functions | Variables
FLASH_Copyr.c File Reference

(r12600)

Functions

FLA_Error FLASH_Copyr (FLA_Uplo uplo, FLA_Obj A, FLA_Obj B)

Variables

fla_copyr_tflash_copyr_cntl

Function Documentation

FLA_Error FLASH_Copyr ( FLA_Uplo  uplo,
FLA_Obj  A,
FLA_Obj  B 
)

References FLA_Check_error_level(), FLA_Copyr_check(), FLA_Copyr_internal(), FLASH_Queue_begin(), and FLASH_Queue_end().

Referenced by FLA_CAQR_UT_inc_copy_triangles().

{
  FLA_Error r_val;
  
  // Check parameters.
  if ( FLA_Check_error_level() >= FLA_MIN_ERROR_CHECKING )
    FLA_Copyr_check( uplo, A, B );

  // Begin a parallel region.
  FLASH_Queue_begin();
  
  // Execute tasks.
  r_val = FLA_Copyr_internal( uplo, A, B, flash_copyr_cntl );

  // End the parallel region.
  FLASH_Queue_end();
  
  return r_val;
}

Variable Documentation