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

Go to the source code of this file.

Macros

#define COMPLEX

Functions

void CORE_zherk (int uplo, int trans, int N, int K, double alpha, PLASMA_Complex64_t *A, int LDA, double beta, PLASMA_Complex64_t *C, int LDC)
void QUARK_CORE_zherk (Quark *quark, Quark_Task_Flags *task_flags, int uplo, int trans, int n, int k, int nb, double alpha, PLASMA_Complex64_t *A, int lda, double beta, PLASMA_Complex64_t *C, int ldc)
void CORE_zherk_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_zherk.c.


Macro Definition Documentation

#define COMPLEX

Definition at line 20 of file core_zherk.c.


Function Documentation

void CORE_zherk ( int  uplo,
int  trans,
int  N,
int  K,
double  alpha,
PLASMA_Complex64_t A,
int  LDA,
double  beta,
PLASMA_Complex64_t C,
int  LDC 
)

Definition at line 31 of file core_zherk.c.

References cblas_zherk(), and CblasColMajor.

{
N, K,
alpha, A, LDA,
beta, C, LDC);
}

Here is the call graph for this function:

Here is the caller graph for this function:

void CORE_zherk_quark ( Quark quark)

Definition at line 75 of file core_zherk.c.

References A, C, cblas_zherk(), CblasColMajor, quark_unpack_args_10, trans, and uplo.

{
int uplo;
int trans;
int n;
int k;
double alpha;
int lda;
double beta;
int ldc;
quark_unpack_args_10(quark, uplo, trans, n, k, alpha, A, lda, beta, C, ldc);
(CBLAS_UPLO)uplo, (CBLAS_TRANSPOSE)trans,
n, k,
alpha, A, lda,
beta, C, ldc);
}

Here is the call graph for this function:

Here is the caller graph for this function:

void QUARK_CORE_zherk ( Quark quark,
Quark_Task_Flags task_flags,
int  uplo,
int  trans,
int  n,
int  k,
int  nb,
double  alpha,
PLASMA_Complex64_t A,
int  lda,
double  beta,
PLASMA_Complex64_t C,
int  ldc 
)

Definition at line 47 of file core_zherk.c.

References CORE_zherk_quark(), DAG_CORE_HERK, INOUT, INPUT, QUARK_Insert_Task(), and VALUE.

{
QUARK_Insert_Task(quark, CORE_zherk_quark, task_flags,
sizeof(PLASMA_enum), &uplo, VALUE,
sizeof(PLASMA_enum), &trans, VALUE,
sizeof(int), &n, VALUE,
sizeof(int), &k, VALUE,
sizeof(double), &alpha, VALUE,
sizeof(PLASMA_Complex64_t)*nb*nb, A, INPUT,
sizeof(int), &lda, VALUE,
sizeof(double), &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: