libflame  12600
Functions | Variables
FLASH_Hemm.c File Reference

(r12600)

Functions

FLA_Error FLASH_Hemm (FLA_Side side, FLA_Uplo uplo, FLA_Obj alpha, FLA_Obj A, FLA_Obj B, FLA_Obj beta, FLA_Obj C)

Variables

fla_hemm_tflash_hemm_cntl_mm

Function Documentation

FLA_Error FLASH_Hemm ( FLA_Side  side,
FLA_Uplo  uplo,
FLA_Obj  alpha,
FLA_Obj  A,
FLA_Obj  B,
FLA_Obj  beta,
FLA_Obj  C 
)

References FLA_Check_error_level(), FLA_Hemm_check(), FLA_Hemm_internal(), FLASH_Queue_begin(), and FLASH_Queue_end().

{
  FLA_Error r_val;
  
  // Check parameters.
  if ( FLA_Check_error_level() >= FLA_MIN_ERROR_CHECKING )
    FLA_Hemm_check( side, uplo, alpha, A, B, beta, C );

  // Begin a parallel region.
  FLASH_Queue_begin();
  
  // Enqueue tasks via a SuperMatrix-aware control tree.
  r_val = FLA_Hemm_internal( side, uplo, alpha, A, B, beta, C, flash_hemm_cntl_mm );
  
  // End the parallel region.
  FLASH_Queue_end();
  
  return r_val;
}

Variable Documentation