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

Go to the source code of this file.

Macros

#define COMPLEX

Functions

void CORE_zhemm (int side, int uplo, int M, int N, PLASMA_Complex64_t alpha, PLASMA_Complex64_t *A, int LDA, PLASMA_Complex64_t *B, int LDB, PLASMA_Complex64_t beta, PLASMA_Complex64_t *C, int LDC)
void QUARK_CORE_zhemm (Quark *quark, Quark_Task_Flags *task_flags, int side, int uplo, int m, int n, int nb, PLASMA_Complex64_t alpha, PLASMA_Complex64_t *A, int lda, PLASMA_Complex64_t *B, int ldb, PLASMA_Complex64_t beta, PLASMA_Complex64_t *C, int ldc)
void CORE_zhemm_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 normal z -> c

Definition in file core_zhemm.c.


Macro Definition Documentation

#define COMPLEX

Definition at line 20 of file core_zhemm.c.


Function Documentation

void CORE_zhemm ( int  side,
int  uplo,
int  M,
int  N,
PLASMA_Complex64_t  alpha,
PLASMA_Complex64_t A,
int  LDA,
PLASMA_Complex64_t B,
int  LDB,
PLASMA_Complex64_t  beta,
PLASMA_Complex64_t C,
int  LDC 
)

Definition at line 31 of file core_zhemm.c.

References CBLAS_SADDR, cblas_zhemm(), and CblasColMajor.

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

Here is the call graph for this function:

Here is the caller graph for this function:

void CORE_zhemm_quark ( Quark quark)

Definition at line 80 of file core_zhemm.c.

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

{
int side;
int uplo;
int M;
int N;
int LDA;
int LDB;
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,
CBLAS_SADDR(alpha), A, LDA,
B, LDB,
CBLAS_SADDR(beta), C, LDC);
}

Here is the call graph for this function:

Here is the caller graph for this function:

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

Definition at line 49 of file core_zhemm.c.

References CORE_zhemm_quark(), DAG_CORE_HEMM, INOUT, INPUT, QUARK_Insert_Task(), and VALUE.

{
QUARK_Insert_Task(quark, CORE_zhemm_quark, task_flags,
sizeof(PLASMA_enum), &side, VALUE,
sizeof(PLASMA_enum), &uplo, VALUE,
sizeof(int), &m, VALUE,
sizeof(int), &n, VALUE,
sizeof(PLASMA_Complex64_t), &alpha, VALUE,
sizeof(PLASMA_Complex64_t)*nb*nb, A, INPUT,
sizeof(int), &lda, VALUE,
sizeof(PLASMA_Complex64_t)*nb*nb, B, INPUT,
sizeof(int), &ldb, VALUE,
sizeof(PLASMA_Complex64_t), &beta, VALUE,
sizeof(PLASMA_Complex64_t)*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: