| 
    libflame
    12600
    
   
   | 
  
  
  
 
Functions | |
| FLA_Error | FLA_Axpyt_task (FLA_Trans trans, FLA_Obj alpha, FLA_Obj A, FLA_Obj B, fla_axpyt_t *cntl) | 
| FLA_Error | FLA_Axpyt_n_task (FLA_Obj alpha, FLA_Obj A, FLA_Obj B, fla_axpyt_t *cntl) | 
| FLA_Error | FLA_Axpyt_t_task (FLA_Obj alpha, FLA_Obj A, FLA_Obj B, fla_axpyt_t *cntl) | 
| FLA_Error | FLA_Axpyt_c_task (FLA_Obj alpha, FLA_Obj A, FLA_Obj B, fla_axpyt_t *cntl) | 
| FLA_Error | FLA_Axpyt_h_task (FLA_Obj alpha, FLA_Obj A, FLA_Obj B, fla_axpyt_t *cntl) | 
| FLA_Error FLA_Axpyt_c_task | ( | FLA_Obj | alpha, | 
| FLA_Obj | A, | ||
| FLA_Obj | B, | ||
| fla_axpyt_t * | cntl | ||
| ) | 
References FLA_Axpyt_external().
Referenced by FLA_Axpyt_c().
{
  return FLA_Axpyt_external( FLA_CONJ_NO_TRANSPOSE, alpha, A, B );
}
| FLA_Error FLA_Axpyt_h_task | ( | FLA_Obj | alpha, | 
| FLA_Obj | A, | ||
| FLA_Obj | B, | ||
| fla_axpyt_t * | cntl | ||
| ) | 
References FLA_Axpyt_external().
Referenced by FLA_Axpyt_h().
{
  return FLA_Axpyt_external( FLA_CONJ_TRANSPOSE, alpha, A, B );
}
| FLA_Error FLA_Axpyt_n_task | ( | FLA_Obj | alpha, | 
| FLA_Obj | A, | ||
| FLA_Obj | B, | ||
| fla_axpyt_t * | cntl | ||
| ) | 
References FLA_Axpyt_external().
Referenced by FLA_Axpyt_n().
{
  return FLA_Axpyt_external( FLA_NO_TRANSPOSE, alpha, A, B );
}
| FLA_Error FLA_Axpyt_t_task | ( | FLA_Obj | alpha, | 
| FLA_Obj | A, | ||
| FLA_Obj | B, | ||
| fla_axpyt_t * | cntl | ||
| ) | 
References FLA_Axpyt_external().
Referenced by FLA_Axpyt_t().
{
  return FLA_Axpyt_external( FLA_TRANSPOSE, alpha, A, B );
}
| FLA_Error FLA_Axpyt_task | ( | FLA_Trans | trans, | 
| FLA_Obj | alpha, | ||
| FLA_Obj | A, | ||
| FLA_Obj | B, | ||
| fla_axpyt_t * | cntl | ||
| ) | 
References FLA_Axpyt_external().
Referenced by FLASH_Queue_exec_task().
{
  return FLA_Axpyt_external( trans, alpha, A, B );
}
 1.7.6.1