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

Go to the source code of this file.

Functions

void CORE_ssymm (int side, int uplo, int M, int N, float alpha, float *A, int LDA, float *B, int LDB, float beta, float *C, int LDC)
void QUARK_CORE_ssymm (Quark *quark, Quark_Task_Flags *task_flags, int side, int uplo, int m, int n, int nb, float alpha, float *A, int lda, float *B, int ldb, float beta, float *C, int ldc)
void CORE_ssymm_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_ssymm.c.


Function Documentation

void CORE_ssymm ( int  side,
int  uplo,
int  M,
int  N,
float  alpha,
float *  A,
int  LDA,
float *  B,
int  LDB,
float  beta,
float *  C,
int  LDC 
)

Definition at line 28 of file core_ssymm.c.

References cblas_ssymm(), and CblasColMajor.

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

Here is the call graph for this function:

Here is the caller graph for this function:

void CORE_ssymm_quark ( Quark quark)

Definition at line 77 of file core_ssymm.c.

References A, B, C, cblas_ssymm(), CblasColMajor, quark_unpack_args_12, side, and uplo.

{
int side;
int uplo;
int M;
int N;
float alpha;
float *A;
int LDA;
float *B;
int LDB;
float beta;
float *C;
int LDC;
quark_unpack_args_12(quark, side, uplo, M, N, alpha, A, LDA, B, LDB, beta, C, LDC);
(CBLAS_SIDE)side, (CBLAS_UPLO)uplo,
M, N,
(alpha), A, LDA,
B, LDB,
(beta), C, LDC);
}

Here is the call graph for this function:

Here is the caller graph for this function:

void QUARK_CORE_ssymm ( Quark quark,
Quark_Task_Flags task_flags,
int  side,
int  uplo,
int  m,
int  n,
int  nb,
float  alpha,
float *  A,
int  lda,
float *  B,
int  ldb,
float  beta,
float *  C,
int  ldc 
)

Definition at line 46 of file core_ssymm.c.

References CORE_ssymm_quark(), DAG_CORE_SYMM, INOUT, INPUT, QUARK_Insert_Task(), and VALUE.

{
QUARK_Insert_Task(quark, CORE_ssymm_quark, task_flags,
sizeof(PLASMA_enum), &side, VALUE,
sizeof(PLASMA_enum), &uplo, 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, INPUT,
sizeof(int), &ldb, VALUE,
sizeof(float), &beta, VALUE,
sizeof(float)*nb*nb, C, INOUT,
sizeof(int), &ldc, VALUE,
0);
}

Here is the call graph for this function:

Here is the caller graph for this function: