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_strsm.c File Reference
#include "common.h"
Include dependency graph for core_strsm.c:

Go to the source code of this file.

Functions

void CORE_strsm (int side, int uplo, int transA, int diag, int M, int N, float alpha, float *A, int LDA, float *B, int LDB)
void QUARK_CORE_strsm (Quark *quark, Quark_Task_Flags *task_flags, int side, int uplo, int transA, int diag, int m, int n, int nb, float alpha, float *A, int lda, float *B, int ldb)
void CORE_strsm_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:
Hatem Ltaief
Mathieu Faverge
Jakub Kurzak
Date:
2010-11-15 s Tue Nov 22 14:35:19 2011

Definition in file core_strsm.c.


Function Documentation

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

Definition at line 28 of file core_strsm.c.

References cblas_strsm(), and CblasColMajor.

{
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_strsm_quark ( Quark quark)

Definition at line 75 of file core_strsm.c.

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

{
int side;
int uplo;
int transA;
int diag;
int m;
int n;
float alpha;
float *A;
int lda;
float *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_strsm ( Quark quark,
Quark_Task_Flags task_flags,
int  side,
int  uplo,
int  transA,
int  diag,
int  m,
int  n,
int  nb,
float  alpha,
float *  A,
int  lda,
float *  B,
int  ldb 
)

Definition at line 46 of file core_strsm.c.

References CORE_strsm_quark(), DAG_CORE_TRSM, INOUT, INPUT, LOCALITY, QUARK_Insert_Task(), and VALUE.

{
QUARK_Insert_Task(quark, CORE_strsm_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(float), &alpha, VALUE,
sizeof(float)*nb*nb, A, INPUT,
sizeof(int), &lda, VALUE,
sizeof(float)*nb*nb, B, INOUT | LOCALITY,
sizeof(int), &ldb, VALUE,
0);
}

Here is the call graph for this function:

Here is the caller graph for this function: