libflame  revision_anchor
Functions | Variables
FLASH_Hemm.c File Reference

(r)

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

◆ FLASH_Hemm()

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 
)
16 {
17  FLA_Error r_val;
18 
19  // Check parameters.
20  if ( FLA_Check_error_level() >= FLA_MIN_ERROR_CHECKING )
21  FLA_Hemm_check( side, uplo, alpha, A, B, beta, C );
22 
23  // Begin a parallel region.
25 
26  // Enqueue tasks via a SuperMatrix-aware control tree.
27  r_val = FLA_Hemm_internal( side, uplo, alpha, A, B, beta, C, flash_hemm_cntl_mm );
28 
29  // End the parallel region.
31 
32  return r_val;
33 }
fla_hemm_t * flash_hemm_cntl_mm
Definition: FLASH_Hemm_cntl_init.c:21
void FLASH_Queue_begin(void)
Definition: FLASH_Queue.c:59
void FLASH_Queue_end(void)
Definition: FLASH_Queue.c:81
FLA_Error FLA_Hemm_internal(FLA_Side side, FLA_Uplo uplo, FLA_Obj alpha, FLA_Obj A, FLA_Obj B, FLA_Obj beta, FLA_Obj C, fla_hemm_t *cntl)
Definition: FLA_Hemm_internal.c:16
FLA_Error FLA_Hemm_check(FLA_Side side, FLA_Uplo uplo, FLA_Obj alpha, FLA_Obj A, FLA_Obj B, FLA_Obj beta, FLA_Obj C)
Definition: FLA_Hemm_check.c:13
unsigned int FLA_Check_error_level(void)
Definition: FLA_Check.c:18
int FLA_Error
Definition: FLA_type_defs.h:47

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

Variable Documentation

◆ flash_hemm_cntl_mm

fla_hemm_t* flash_hemm_cntl_mm
extern