void ATL_drefgemmNT ( const int M, const int N, const int K, const double ALPHA, const double * A, const int LDA, const double * B, const int LDB, const double BETA, double * C, const int LDC ) { /* * .. Local Variables .. */ register double t0; int i, iail, ibj, ibjl, icij, j, jal, jcj, l; /* .. * .. Executable Statements .. * */ for( j = 0, ibj = 0, jcj = 0; j < N; j++, ibj += 1, jcj += LDC ) { Mdgescal( M, 1, BETA, C+jcj, LDC ); for( l = 0, jal = 0, ibjl = ibj; l < K; l++, jal += LDA, ibjl += LDB ) { t0 = ALPHA * B[ibjl]; for( i = 0, iail = jal, icij = jcj; i < M; i++, iail += 1, icij += 1 ) { C[icij] += A[iail] * t0; } } } /* * End of ATL_drefgemmNT */ }
void ATL_dreftrsm ( const enum ATLAS_SIDE SIDE, const enum ATLAS_UPLO UPLO, const enum ATLAS_TRANS TRANS, const enum ATLAS_DIAG DIAG, const int M, const int N, const double ALPHA, const double * A, const int LDA, double * B, const int LDB ) { /* * Purpose * ======= * * ATL_dreftrsm solves one of the matrix equations * * op( A ) * X = alpha * B, or X * op( A ) = alpha * B, * * where alpha is a scalar, X and B are m by n matrices, A is a unit, or * non-unit, upper or lower triangular matrix and op( A ) is one of * * op( A ) = A or op( A ) = A'. * * The matrix X is overwritten on B. * * Arguments * ========= * * SIDE (input) const enum ATLAS_SIDE * On entry, SIDE specifies whether op( A ) appears on the left * or right of X as follows: * * SIDE = AtlasLeft op( A ) * X = alpha * B, * * SIDE = AtlasRight X * op( A ) = alpha * B. * * Unchanged on exit. * * UPLO (input) const enum ATLAS_UPLO * On entry, UPLO specifies whether the matrix is an upper or * lower triangular matrix as follows: * * UPLO = AtlasUpper A is an upper triangular matrix. * * UPLO = AtlasLower A is a lower triangular matrix. * * Unchanged on exit. * * TRANSA (input) const enum ATLAS_TRANS * On entry, TRANSA specifies the form of op( A ) to be used in * the matrix multiplication as follows: * * TRANSA = AtlasNoTrans op( A ) = A, * * TRANSA = AtlasTrans op( A ) = A', * * TRANSA = AtlasConjTrans op( A ) = A'. * * Unchanged on exit. * * DIAG (input) const enum ATLAS_DIAG * On entry, DIAG specifies whether or not A is unit triangu- * lar as follows: * * DIAG = AtlasUnit A is assumed to be unit triangular, * * DIAG = AtlasNonUnit A is not assumed to be unit trian- * gular. * * Unchanged on exit. * * M (input) const int * On entry, M specifies the number of rows of the matrix B. * M must be at least zero. Unchanged on exit. * * N (input) const int * On entry, N specifies the number of columns of the matrix B. * N must be at least zero. Unchanged on exit. * * ALPHA (input) const double * On entry, ALPHA specifies the scalar alpha. When ALPHA is * supplied as zero then the elements of the matrix B need not * be set on input. Unchanged on exit. * * A (input) const double * * On entry, A points to an array of size equal to or greater * than LDA * k * sizeof( double ), where k is m when * SIDE = AtlasLeft and is n otherwise. Before entry with * UPLO = AtlasUpper, the leading k by k upper triangular part * of the array A must contain the upper triangular matrix and * the strictly lower triangular part of A is not referenced. * Before entry with UPLO = AtlasLower, the leading k by k lower * triangular part of the array A must contain the lower trian- * gular matrix and the strictly upper triangular part of A is * not referenced. * Note that when DIAG = AtlasUnit, the diagonal elements of * A are not referenced either, but are assumed to be unity. * Unchanged on exit. * * LDA (input) const int * On entry, LDA specifies the leading dimension of A as decla- * red in the calling (sub) program. LDA must be at least * MAX( 1, m ) when SIDE = AtlasLeft, and MAX( 1, n ) otherwise. * Unchanged on exit. * * B (input/output) double * * On entry, B points to an array of size equal to or greater * than LDB * n * sizeof( double ). Before entry, the lea- * ding m by n part of the array B must contain the matrix B, * except when beta is zero, in which case B need not be set on * entry. On exit, the array B is overwritten by the m by n so- * lution matrix. * * LDB (input) const int * On entry, LDB specifies the leading dimension of B as decla- * red in the calling (sub) program. LDB must be at least * MAX( 1, m ). Unchanged on exit. * * --------------------------------------------------------------------- */ /* .. * .. Executable Statements .. * */ if( ( M == 0 ) || ( N == 0 ) ) return; if( ALPHA == ATL_dZERO ) { Mdgescal( M, N, ALPHA, B, LDB ); return; } if( SIDE == AtlasLeft ) { if( UPLO == AtlasUpper ) { if( TRANS == AtlasNoTrans ) { if( DIAG == AtlasNonUnit ) { ATL_dreftrsmLUNN( M, N, ALPHA, A, LDA, B, LDB ); } else { ATL_dreftrsmLUNU( M, N, ALPHA, A, LDA, B, LDB ); } } else { if( DIAG == AtlasNonUnit ) { ATL_dreftrsmLUTN( M, N, ALPHA, A, LDA, B, LDB ); } else { ATL_dreftrsmLUTU( M, N, ALPHA, A, LDA, B, LDB ); } } } else { if( TRANS == AtlasNoTrans ) { if( DIAG == AtlasNonUnit ) { ATL_dreftrsmLLNN( M, N, ALPHA, A, LDA, B, LDB ); } else { ATL_dreftrsmLLNU( M, N, ALPHA, A, LDA, B, LDB ); } } else { if( DIAG == AtlasNonUnit ) { ATL_dreftrsmLLTN( M, N, ALPHA, A, LDA, B, LDB ); } else { ATL_dreftrsmLLTU( M, N, ALPHA, A, LDA, B, LDB ); } } } } else { if( UPLO == AtlasUpper ) { if( TRANS == AtlasNoTrans ) { if( DIAG == AtlasNonUnit ) { ATL_dreftrsmRUNN( M, N, ALPHA, A, LDA, B, LDB ); } else { ATL_dreftrsmRUNU( M, N, ALPHA, A, LDA, B, LDB ); } } else { if( DIAG == AtlasNonUnit ) { ATL_dreftrsmRUTN( M, N, ALPHA, A, LDA, B, LDB ); } else { ATL_dreftrsmRUTU( M, N, ALPHA, A, LDA, B, LDB ); } } } else { if( TRANS == AtlasNoTrans ) { if( DIAG == AtlasNonUnit ) { ATL_dreftrsmRLNN( M, N, ALPHA, A, LDA, B, LDB ); } else { ATL_dreftrsmRLNU( M, N, ALPHA, A, LDA, B, LDB ); } } else { if( DIAG == AtlasNonUnit ) { ATL_dreftrsmRLTN( M, N, ALPHA, A, LDA, B, LDB ); } else { ATL_dreftrsmRLTU( M, N, ALPHA, A, LDA, B, LDB ); } } } } /* * End of ATL_dreftrsm */ }
void ATL_drefsymm ( const enum ATLAS_SIDE SIDE, const enum ATLAS_UPLO UPLO, const int M, const int N, const double ALPHA, const double * A, const int LDA, const double * B, const int LDB, const double BETA, double * C, const int LDC ) { /* * Purpose * ======= * * ATL_drefsymm performs one of the matrix-matrix operations * * C := alpha * A * B + beta * C, * * or * * C := alpha * B * A + beta * C, * * where alpha and beta are scalars, A is a symmetric matrix and B and * C are m by n matrices. * * Arguments * ========= * * SIDE (input) const enum ATLAS_SIDE * On entry, SIDE specifies whether the symmetric matrix A * appears on the left or right in the operation as follows: * * SIDE = AtlasLeft C := alpha * A * B + beta * C, * * SIDE = AtlasRight C := alpha * B * A + beta * C. * * Unchanged on exit. * * UPLO (input) const enum ATLAS_UPLO * On entry, UPLO specifies whether the upper or lower triangu- * lar part of the array A is to be referenced as follows: * * UPLO = AtlasUpper Only the upper triangular part of A * is to be referenced. * * UPLO = AtlasLower Only the lower triangular part of A * is to be referenced. * * Unchanged on exit. * * M (input) const int * On entry, M specifies the number of rows of the matrix C. * M must be at least zero. Unchanged on exit. * * N (input) const int * On entry, N specifies the number of columns of the matrix C. * N must be at least zero. Unchanged on exit. * * ALPHA (input) const double * On entry, ALPHA specifies the scalar alpha. When ALPHA is * supplied as zero then the elements of the matrices A and B * need not be set on input. * * A (input) const double * * On entry, A points to an array of size equal to or greater * than LDA * ka * sizeof( double ), where ka is m when * SIDE = AtlasLeft and is n otherwise. Before entry with * SIDE = AtlasLeft, the m by m part of the array A must con- * tain the symmetric matrix, such that when UPLO = AtlasUpper, * the leading m by m upper triangular part of the array A must * contain the upper triangular part of the symmetric matrix and * the strictly lower triangular part of A is not referenced, * and when UPLO = AtlasLower, the leading m by m lower trian- * gular part of the array A must contain the lower triangular * part of the symmetric matrix and the strictly upper triangu- * lar part of A is not referenced. * Before entry with SIDE = AtlasRight, the n by n part of * the array A must contain the symmetric matrix, such that * when UPLO = AtlasUpper, the leading n by n upper triangular * part of the array A must contain the upper triangular part * of the symmetric matrix and the strictly lower triangular * part of A is not referenced, and when UPLO = AtlasLower, * the leading n by n lower triangular part of the array A * must contain the lower triangular part of the symmetric * matrix and the strictly upper triangular part of A is not * referenced. Unchanged on exit. * * LDA (input) const int * On entry, LDA specifies the leading dimension of A as decla- * red in the calling (sub) program. LDA must be at least * MAX( 1, m ) when SIDE = AtlasLeft, and MAX( 1, n ) otherwise. * Unchanged on exit. * * B (input) const double * * On entry, B points to an array of size equal to or greater * than LDB * n * sizeof( double ). Before entry, the lea- * ding m by n part of the array B must contain the matrix B. * Unchanged on exit. * * LDB (input) const int * On entry, LDB specifies the leading dimension of B as decla- * red in the calling (sub) program. LDB must be at least * MAX( 1, m ). wise. Unchanged on exit. * * BETA (input) const double * On entry, BETA specifies the scalar beta. When BETA is * supplied as zero then the elements of the matrix C need * not be set on input. Unchanged on exit. * * C (input/output) double * * On entry, C points to an array of size equal to or greater * than LDC * n * sizeof( double ). Before entry, the lea- * ding m by n part of the array C must contain the matrix C, * except when beta is zero, in which case C need not be set on * entry. On exit, the array C is overwritten by the m by n up- * dated matrix. * * LDC (input) const int * On entry, LDC specifies the leading dimension of A as decla- * red in the calling (sub) program. LDC must be at least * MAX( 1, m ). Unchanged on exit. * * --------------------------------------------------------------------- */ /* .. * .. Executable Statements .. * */ if( ( M == 0 ) || ( N == 0 ) || ( ( ALPHA == ATL_dZERO ) && ( BETA == ATL_dONE ) ) ) return; if( ALPHA == ATL_dZERO ) { Mdgescal( M, N, BETA, C, LDC ); return; } if( SIDE == AtlasLeft ) { if( UPLO == AtlasUpper ) { ATL_drefsymmLU( M, N, ALPHA, A, LDA, B, LDB, BETA, C, LDC ); } else { ATL_drefsymmLL( M, N, ALPHA, A, LDA, B, LDB, BETA, C, LDC ); } } else { if( UPLO == AtlasUpper ) { ATL_drefsymmRU( M, N, ALPHA, A, LDA, B, LDB, BETA, C, LDC ); } else { ATL_drefsymmRL( M, N, ALPHA, A, LDA, B, LDB, BETA, C, LDC ); } } /* * End of ATL_drefsymm */ }