| 
    libflame
    12600
    
   
   | 
  
  
  
 
Functions | |
| FLA_Error | FLA_Copyr_task (FLA_Uplo uplo, FLA_Obj A, FLA_Obj B, fla_copyr_t *cntl) | 
| FLA_Error | FLA_Copyr_l_task (FLA_Obj A, FLA_Obj B, fla_copyr_t *cntl) | 
| FLA_Error | FLA_Copyr_u_task (FLA_Obj A, FLA_Obj B, fla_copyr_t *cntl) | 
| FLA_Error FLA_Copyr_l_task | ( | FLA_Obj | A, | 
| FLA_Obj | B, | ||
| fla_copyr_t * | cntl | ||
| ) | 
References FLA_Copyr_external().
Referenced by FLA_Copyr_l().
{
  return FLA_Copyr_external( FLA_LOWER_TRIANGULAR, A, B );
}
| FLA_Error FLA_Copyr_task | ( | FLA_Uplo | uplo, | 
| FLA_Obj | A, | ||
| FLA_Obj | B, | ||
| fla_copyr_t * | cntl | ||
| ) | 
References FLA_Copyr_external().
Referenced by FLASH_Queue_exec_task().
{
  return FLA_Copyr_external( uplo, A, B );
}
| FLA_Error FLA_Copyr_u_task | ( | FLA_Obj | A, | 
| FLA_Obj | B, | ||
| fla_copyr_t * | cntl | ||
| ) | 
References FLA_Copyr_external().
Referenced by FLA_Copyr_u().
{
  return FLA_Copyr_external( FLA_UPPER_TRIANGULAR, A, B );
}
 1.7.6.1