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

Go to the source code of this file.

Functions

void CORE_csyrk (int uplo, int trans, int N, int K, PLASMA_Complex32_t alpha, PLASMA_Complex32_t *A, int LDA, PLASMA_Complex32_t beta, PLASMA_Complex32_t *C, int LDC)
void QUARK_CORE_csyrk (Quark *quark, Quark_Task_Flags *task_flags, int uplo, int trans, int n, int k, int nb, PLASMA_Complex32_t alpha, PLASMA_Complex32_t *A, int lda, PLASMA_Complex32_t beta, PLASMA_Complex32_t *C, int ldc)
void CORE_csyrk_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 c Tue Nov 22 14:35:19 2011

Definition in file core_csyrk.c.


Function Documentation

void CORE_csyrk ( int  uplo,
int  trans,
int  N,
int  K,
PLASMA_Complex32_t  alpha,
PLASMA_Complex32_t A,
int  LDA,
PLASMA_Complex32_t  beta,
PLASMA_Complex32_t C,
int  LDC 
)

Definition at line 28 of file core_csyrk.c.

References cblas_csyrk(), CBLAS_SADDR, and CblasColMajor.

Here is the call graph for this function:

Here is the caller graph for this function:

void CORE_csyrk_quark ( Quark quark)

Definition at line 72 of file core_csyrk.c.

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

{
int uplo;
int trans;
int n;
int k;
int lda;
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,
CBLAS_SADDR(alpha), A, lda,
CBLAS_SADDR(beta), C, ldc);
}

Here is the call graph for this function:

Here is the caller graph for this function:

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

Definition at line 44 of file core_csyrk.c.

References CORE_csyrk_quark(), DAG_CORE_SYRK, INOUT, INPUT, QUARK_Insert_Task(), and VALUE.

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