libflame  revision_anchor
Functions
FLA_Copyt_task.c File Reference

(r)

Functions

FLA_Error FLA_Copyt_task (FLA_Trans trans, FLA_Obj A, FLA_Obj B, fla_copyt_t *cntl)
 
FLA_Error FLA_Copyt_n_task (FLA_Obj A, FLA_Obj B, fla_copyt_t *cntl)
 
FLA_Error FLA_Copyt_t_task (FLA_Obj A, FLA_Obj B, fla_copyt_t *cntl)
 
FLA_Error FLA_Copyt_c_task (FLA_Obj A, FLA_Obj B, fla_copyt_t *cntl)
 
FLA_Error FLA_Copyt_h_task (FLA_Obj A, FLA_Obj B, fla_copyt_t *cntl)
 

Function Documentation

◆ FLA_Copyt_c_task()

FLA_Error FLA_Copyt_c_task ( FLA_Obj  A,
FLA_Obj  B,
fla_copyt_t cntl 
)
29 {
30  return FLA_Copyt_external( FLA_CONJ_NO_TRANSPOSE, A, B );
31 }
FLA_Error FLA_Copyt_external(FLA_Trans trans, FLA_Obj A, FLA_Obj B)
Definition: FLA_Copyt_external.c:13

References FLA_Copyt_external().

Referenced by FLA_Copyt_c().

◆ FLA_Copyt_h_task()

FLA_Error FLA_Copyt_h_task ( FLA_Obj  A,
FLA_Obj  B,
fla_copyt_t cntl 
)
34 {
35  return FLA_Copyt_external( FLA_CONJ_TRANSPOSE, A, B );
36 }

References FLA_Copyt_external().

Referenced by FLA_Copyt_h().

◆ FLA_Copyt_n_task()

FLA_Error FLA_Copyt_n_task ( FLA_Obj  A,
FLA_Obj  B,
fla_copyt_t cntl 
)
19 {
20  return FLA_Copyt_external( FLA_NO_TRANSPOSE, A, B );
21 }

References FLA_Copyt_external().

Referenced by FLA_Copyt_n().

◆ FLA_Copyt_t_task()

FLA_Error FLA_Copyt_t_task ( FLA_Obj  A,
FLA_Obj  B,
fla_copyt_t cntl 
)
24 {
25  return FLA_Copyt_external( FLA_TRANSPOSE, A, B );
26 }

References FLA_Copyt_external().

Referenced by FLA_Copyt_t().

◆ FLA_Copyt_task()

FLA_Error FLA_Copyt_task ( FLA_Trans  trans,
FLA_Obj  A,
FLA_Obj  B,
fla_copyt_t cntl 
)
14 {
15  return FLA_Copyt_external( trans, A, B );
16 }

References FLA_Copyt_external().

Referenced by FLASH_Queue_exec_task().