libflame revision_anchor
Functions
FLASH_blas2_prototypes.h File Reference

(r)

Go to the source code of this file.

Functions

FLA_Error FLASH_Gemv (FLA_Trans transa, FLA_Obj alpha, FLA_Obj A, FLA_Obj x, FLA_Obj beta, FLA_Obj y)
 
FLA_Error FLASH_Trsv (FLA_Uplo uplo, FLA_Trans transa, FLA_Diag diag, FLA_Obj A, FLA_Obj x)
 

Function Documentation

◆ FLASH_Gemv()

FLA_Error FLASH_Gemv ( FLA_Trans  transa,
FLA_Obj  alpha,
FLA_Obj  A,
FLA_Obj  x,
FLA_Obj  beta,
FLA_Obj  y 
)
16{
19
20 // Check parameters.
23
24 // Find the status of SuperMatrix.
26
27 // Temporarily disable SuperMatrix.
29
30 // Execute tasks.
32
33 // Restore SuperMatrix to its previous status.
36
37 return r_val;
38}
fla_gemv_t * flash_gemv_cntl_fm_rp
Definition FLASH_Gemv_cntl_init.c:16
FLA_Bool FLASH_Queue_get_enabled(void)
Definition FLASH_Queue.c:171
FLA_Error FLASH_Queue_enable(void)
Definition FLASH_Queue.c:117
FLA_Error FLASH_Queue_disable(void)
Definition FLASH_Queue.c:144
FLA_Error FLA_Gemv_internal(FLA_Trans transa, FLA_Obj alpha, FLA_Obj A, FLA_Obj x, FLA_Obj beta, FLA_Obj y, fla_gemv_t *cntl)
Definition FLA_Gemv_internal.c:16
FLA_Error FLA_Gemv_check(FLA_Trans transa, FLA_Obj alpha, FLA_Obj A, FLA_Obj x, FLA_Obj beta, FLA_Obj y)
Definition FLA_Gemv_check.c:13
unsigned int FLA_Check_error_level(void)
Definition FLA_Check.c:18
int FLA_Error
Definition FLA_type_defs.h:47
int FLA_Bool
Definition FLA_type_defs.h:46
int i
Definition bl1_axmyv2.c:145

References FLA_Check_error_level(), FLA_Gemv_check(), FLA_Gemv_internal(), flash_gemv_cntl_fm_rp, FLASH_Queue_disable(), FLASH_Queue_enable(), FLASH_Queue_get_enabled(), and i.

◆ FLASH_Trsv()

FLA_Error FLASH_Trsv ( FLA_Uplo  uplo,
FLA_Trans  transa,
FLA_Diag  diag,
FLA_Obj  A,
FLA_Obj  x 
)
16{
19
20 // Check parameters.
22 FLA_Trsv_check( uplo, trans, diag, A, x );
23
24 // Find the status of SuperMatrix.
26
27 // Temporarily disable SuperMatrix.
29
30 // Execute tasks.
32
33 // Restore SuperMatrix to its previous status.
36
37 return r_val;
38}
fla_trsv_t * flash_trsv_cntl
Definition FLASH_Trsv_cntl_init.c:16
FLA_Error FLA_Trsv_internal(FLA_Uplo uplo, FLA_Trans transa, FLA_Diag diag, FLA_Obj A, FLA_Obj x, fla_trsv_t *cntl)
Definition FLA_Trsv_internal.c:16
FLA_Error FLA_Trsv_check(FLA_Uplo uplo, FLA_Trans transa, FLA_Diag diag, FLA_Obj A, FLA_Obj x)
Definition FLA_Trsv_check.c:13

References FLA_Check_error_level(), FLA_Trsv_check(), FLA_Trsv_internal(), FLASH_Queue_disable(), FLASH_Queue_enable(), FLASH_Queue_get_enabled(), flash_trsv_cntl, and i.