|
libflame
12600
|
Functions | |
| FLA_Error | FLASH_Scal (FLA_Obj alpha, FLA_Obj A) |
Variables | |
| fla_scal_t * | flash_scal_cntl |
| FLA_Error FLASH_Scal | ( | FLA_Obj | alpha, |
| FLA_Obj | A | ||
| ) |
References FLA_Check_error_level(), FLA_Scal_check(), FLA_Scal_internal(), FLASH_Queue_disable(), FLASH_Queue_enable(), and FLASH_Queue_get_enabled().
{
FLA_Error r_val;
FLA_Bool enable_supermatrix;
// Check parameters.
if ( FLA_Check_error_level() >= FLA_MIN_ERROR_CHECKING )
FLA_Scal_check( alpha, A );
// Find the status of SuperMatrix.
enable_supermatrix = FLASH_Queue_get_enabled();
// Temporarily disable SuperMatrix.
FLASH_Queue_disable();
// Execute tasks.
r_val = FLA_Scal_internal( alpha, A, flash_scal_cntl );
// Restore SuperMatrix to its previous status.
if ( enable_supermatrix )
FLASH_Queue_enable();
return r_val;
}
1.7.6.1