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_trsm_t* fla_trsm_cntl_mm;
14 
FLA_Trsm(FLA_Side side,FLA_Uplo uplo,FLA_Trans trans,FLA_Diag diag,FLA_Obj alpha,FLA_Obj A,FLA_Obj B)15 FLA_Error FLA_Trsm( 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 = FLA_SUCCESS;
18 
19   // Check parameters.
20   if ( FLA_Check_error_level() >= FLA_MIN_ERROR_CHECKING )
21     FLA_Trsm_check( side, uplo, trans, diag, alpha, A, B );
22 
23 #ifdef FLA_ENABLE_BLAS3_FRONT_END_CNTL_TREES
24   r_val = FLA_Trsm_internal( side, uplo, trans, diag, alpha, A, B, fla_trsm_cntl_mm );
25 #else
26   r_val = FLA_Trsm_external( side, uplo, trans, diag, alpha, A, B );
27 #endif
28 
29   return r_val;
30 }
31 
32