1 /*
2 
3     Copyright (C) 2014, The University of Texas at Austin
4 
5     This file is part of libflame and is available under the 3-Clause
6     BSD license, which can be found in the LICENSE file at the top-level
7     directory, or at http://opensource.org/licenses/BSD-3-Clause
8 
9 */
10 
11 #include "FLAME.h"
12 
13 extern fla_trmm_t* flash_trmm_cntl_mm;
14 
FLASH_Trmm(FLA_Side side,FLA_Uplo uplo,FLA_Trans trans,FLA_Diag diag,FLA_Obj alpha,FLA_Obj A,FLA_Obj B)15 FLA_Error FLASH_Trmm( FLA_Side side, FLA_Uplo uplo, FLA_Trans trans, FLA_Diag diag, FLA_Obj alpha, FLA_Obj A, FLA_Obj B )
16 {
17   FLA_Error r_val;
18 
19   // Check parameters.
20   if ( FLA_Check_error_level() >= FLA_MIN_ERROR_CHECKING )
21     FLA_Trmm_check( side, uplo, trans, diag, alpha, A, B );
22 
23   // Begin a parallel region.
24   FLASH_Queue_begin();
25 
26   // Enqueue tasks via a SuperMatrix-aware control tree.
27   r_val = FLA_Trmm_internal( side, uplo, trans, diag, alpha, A, B, flash_trmm_cntl_mm );
28 
29   // End the parallel region.
30   FLASH_Queue_end();
31 
32   return r_val;
33 }
34 
35