libflame  revision_anchor
Functions | Variables
FLASH_Trinv.c File Reference

(r)

Functions

FLA_Error FLASH_Trinv (FLA_Uplo uplo, FLA_Diag diag, FLA_Obj A)
 

Variables

fla_trinv_tflash_trinv_cntl
 

Function Documentation

◆ FLASH_Trinv()

FLA_Error FLASH_Trinv ( FLA_Uplo  uplo,
FLA_Diag  diag,
FLA_Obj  A 
)
16 {
17  FLA_Error r_val;
18 
19  // Check parameters.
20  if ( FLA_Check_error_level() >= FLA_MIN_ERROR_CHECKING )
21  FLA_Trinv_check( uplo, diag, A );
22 
23  // Begin a parallel region.
25 
26  // Enqueue tasks via a SuperMatrix-aware control tree.
27  r_val = FLA_Trinv_internal( uplo, diag, A, flash_trinv_cntl );
28 
29  // End the parallel region.
31 
32  return r_val;
33 }
void FLASH_Queue_begin(void)
Definition: FLASH_Queue.c:59
void FLASH_Queue_end(void)
Definition: FLASH_Queue.c:81
fla_trinv_t * flash_trinv_cntl
Definition: FLASH_Trinv_cntl_init.c:17
FLA_Error FLA_Trinv_internal(FLA_Uplo uplo, FLA_Diag diag, FLA_Obj A, fla_trinv_t *cntl)
Definition: FLA_Trinv_internal.c:16
FLA_Error FLA_Trinv_check(FLA_Uplo uplo, FLA_Diag diag, FLA_Obj A)
Definition: FLA_Trinv_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_Trinv_check(), FLA_Trinv_internal(), FLASH_Queue_begin(), FLASH_Queue_end(), and flash_trinv_cntl.

Variable Documentation

◆ flash_trinv_cntl

fla_trinv_t* flash_trinv_cntl
extern