PLASMA  2.4.5
PLASMA - Parallel Linear Algebra for Scalable Multi-core Architectures
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups
core_dtrmm.c File Reference
#include "common.h"
Include dependency graph for core_dtrmm.c:

Go to the source code of this file.

Functions

void CORE_dtrmm (int side, int uplo, int transA, int diag, int M, int N, double alpha, double *A, int LDA, double *B, int LDB)
void QUARK_CORE_dtrmm (Quark *quark, Quark_Task_Flags *task_flags, int side, int uplo, int transA, int diag, int m, int n, int nb, double alpha, double *A, int lda, double *B, int ldb)
void CORE_dtrmm_quark (Quark *quark)
void QUARK_CORE_dtrmm_p2 (Quark *quark, Quark_Task_Flags *task_flags, int side, int uplo, int transA, int diag, int m, int n, int nb, double alpha, double *A, int lda, double **B, int ldb)
void CORE_dtrmm_p2_quark (Quark *quark)

Detailed Description

PLASMA core_blas kernel PLASMA is a software package provided by Univ. of Tennessee, Univ. of California Berkeley and Univ. of Colorado Denver

Version:
2.4.5
Author:
Julien Langou
Henricus Bouwmeester
Mathieu Faverge
Date:
2010-11-15 d Tue Nov 22 14:35:19 2011

Definition in file core_dtrmm.c.


Function Documentation

void CORE_dtrmm ( int  side,
int  uplo,
int  transA,
int  diag,
int  M,
int  N,
double  alpha,
double *  A,
int  LDA,
double *  B,
int  LDB 
)

Definition at line 28 of file core_dtrmm.c.

References cblas_dtrmm(), and CblasColMajor.

{
M, N,
(alpha), A, LDA,
B, LDB);
}

Here is the call graph for this function:

void CORE_dtrmm_p2_quark ( Quark quark)

Definition at line 132 of file core_dtrmm.c.

References A, B, cblas_dtrmm(), CblasColMajor, diag, quark_unpack_args_11, side, and uplo.

{
int side;
int uplo;
int transA;
int diag;
int M;
int N;
double alpha;
double *A;
int LDA;
double **B;
int LDB;
quark_unpack_args_11(quark, side, uplo, transA, diag, M, N, alpha, A, LDA, B, LDB);
(CBLAS_SIDE)side, (CBLAS_UPLO)uplo,
(CBLAS_TRANSPOSE)transA, (CBLAS_DIAG)diag,
M, N,
(alpha), A, LDA,
*B, LDB);
}

Here is the call graph for this function:

Here is the caller graph for this function:

void CORE_dtrmm_quark ( Quark quark)

Definition at line 76 of file core_dtrmm.c.

References A, B, cblas_dtrmm(), CblasColMajor, diag, quark_unpack_args_11, side, and uplo.

{
int side;
int uplo;
int transA;
int diag;
int M;
int N;
double alpha;
double *A;
int LDA;
double *B;
int LDB;
quark_unpack_args_11(quark, side, uplo, transA, diag, M, N, alpha, A, LDA, B, LDB);
(CBLAS_SIDE)side, (CBLAS_UPLO)uplo,
(CBLAS_TRANSPOSE)transA, (CBLAS_DIAG)diag,
M, N,
(alpha), A, LDA,
B, LDB);
}

Here is the call graph for this function:

Here is the caller graph for this function:

void QUARK_CORE_dtrmm ( Quark quark,
Quark_Task_Flags task_flags,
int  side,
int  uplo,
int  transA,
int  diag,
int  m,
int  n,
int  nb,
double  alpha,
double *  A,
int  lda,
double *  B,
int  ldb 
)

Definition at line 47 of file core_dtrmm.c.

References CORE_dtrmm_quark(), DAG_CORE_TRMM, INOUT, INPUT, QUARK_Insert_Task(), and VALUE.

{
QUARK_Insert_Task(quark, CORE_dtrmm_quark, task_flags,
sizeof(PLASMA_enum), &side, VALUE,
sizeof(PLASMA_enum), &uplo, VALUE,
sizeof(PLASMA_enum), &transA, VALUE,
sizeof(PLASMA_enum), &diag, VALUE,
sizeof(int), &m, VALUE,
sizeof(int), &n, VALUE,
sizeof(double), &alpha, VALUE,
sizeof(double)*nb*nb, A, INPUT,
sizeof(int), &lda, VALUE,
sizeof(double)*nb*nb, B, INOUT,
sizeof(int), &ldb, VALUE,
0);
}

Here is the call graph for this function:

Here is the caller graph for this function:

void QUARK_CORE_dtrmm_p2 ( Quark quark,
Quark_Task_Flags task_flags,
int  side,
int  uplo,
int  transA,
int  diag,
int  m,
int  n,
int  nb,
double  alpha,
double *  A,
int  lda,
double **  B,
int  ldb 
)

Definition at line 103 of file core_dtrmm.c.

References CORE_dtrmm_p2_quark(), DAG_CORE_TRMM, INOUT, INPUT, QUARK_Insert_Task(), and VALUE.

{
sizeof(PLASMA_enum), &side, VALUE,
sizeof(PLASMA_enum), &uplo, VALUE,
sizeof(PLASMA_enum), &transA, VALUE,
sizeof(PLASMA_enum), &diag, VALUE,
sizeof(int), &m, VALUE,
sizeof(int), &n, VALUE,
sizeof(double), &alpha, VALUE,
sizeof(double)*lda*nb, A, INPUT,
sizeof(int), &lda, VALUE,
sizeof(double*), B, INOUT,
sizeof(int), &ldb, VALUE,
0);
}

Here is the call graph for this function: