Diff for /rpl/lapack/blas/ztrmm.f between versions 1.13 and 1.16

version 1.13, 2017/06/17 10:53:46 version 1.16, 2023/08/07 08:38:46
Line 109 Line 109
 *>  *>
 *> \param[in] A  *> \param[in] A
 *> \verbatim  *> \verbatim
 *>          A is COMPLEX*16 array of DIMENSION ( LDA, k ), where k is m  *>          A is COMPLEX*16 array, dimension ( LDA, k ), where k is m
 *>           when  SIDE = 'L' or 'l'  and is  n  when  SIDE = 'R' or 'r'.  *>           when  SIDE = 'L' or 'l'  and is  n  when  SIDE = 'R' or 'r'.
 *>           Before entry  with  UPLO = 'U' or 'u',  the  leading  k by k  *>           Before entry  with  UPLO = 'U' or 'u',  the  leading  k by k
 *>           upper triangular part of the array  A must contain the upper  *>           upper triangular part of the array  A must contain the upper
Line 132 Line 132
 *>           then LDA must be at least max( 1, n ).  *>           then LDA must be at least max( 1, n ).
 *> \endverbatim  *> \endverbatim
 *>  *>
 *> \param[in] B  *> \param[in,out] B
 *> \verbatim  *> \verbatim
 *>          B is (input/output) COMPLEX*16 array of DIMENSION ( LDB, n ).  *>          B is COMPLEX*16 array, dimension ( LDB, N ).
 *>           Before entry,  the leading  m by n part of the array  B must  *>           Before entry,  the leading  m by n part of the array  B must
 *>           contain the matrix  B,  and  on exit  is overwritten  by the  *>           contain the matrix  B,  and  on exit  is overwritten  by the
 *>           transformed matrix.  *>           transformed matrix.
Line 156 Line 156
 *> \author Univ. of Colorado Denver  *> \author Univ. of Colorado Denver
 *> \author NAG Ltd.  *> \author NAG Ltd.
 *  *
 *> \date December 2016  
 *  
 *> \ingroup complex16_blas_level3  *> \ingroup complex16_blas_level3
 *  *
 *> \par Further Details:  *> \par Further Details:
Line 177 Line 175
 *  =====================================================================  *  =====================================================================
       SUBROUTINE ZTRMM(SIDE,UPLO,TRANSA,DIAG,M,N,ALPHA,A,LDA,B,LDB)        SUBROUTINE ZTRMM(SIDE,UPLO,TRANSA,DIAG,M,N,ALPHA,A,LDA,B,LDB)
 *  *
 *  -- Reference BLAS level3 routine (version 3.7.0) --  *  -- Reference BLAS level3 routine --
 *  -- Reference BLAS is a software package provided by Univ. of Tennessee,    --  *  -- Reference BLAS is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--  *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     December 2016  
 *  *
 *     .. Scalar Arguments ..  *     .. Scalar Arguments ..
       COMPLEX*16 ALPHA        COMPLEX*16 ALPHA
Line 447 Line 444
 *  *
       RETURN        RETURN
 *  *
 *     End of ZTRMM .  *     End of ZTRMM
 *  *
       END        END

Removed from v.1.13  
changed lines
  Added in v.1.16


CVSweb interface <joel.bertrand@systella.fr>