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

Go to the source code of this file.

Functions

void CORE_dsyr2k (int uplo, int trans, int N, int K, double alpha, double *A, int LDA, double *B, int LDB, double beta, double *C, int LDC)
void QUARK_CORE_dsyr2k (Quark *quark, Quark_Task_Flags *task_flags, int uplo, int trans, int n, int k, int nb, double alpha, double *A, int lda, double *B, int ldb, double beta, double *C, int ldc)
void CORE_dsyr2k_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 d Tue Nov 22 14:35:19 2011

Definition in file core_dsyr2k.c.


Function Documentation

void CORE_dsyr2k ( int  uplo,
int  trans,
int  N,
int  K,
double  alpha,
double *  A,
int  LDA,
double *  B,
int  LDB,
double  beta,
double *  C,
int  LDC 
)

Definition at line 28 of file core_dsyr2k.c.

References cblas_dsyr2k(), and CblasColMajor.

{
N, K,
(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_dsyr2k_quark ( Quark quark)

Definition at line 76 of file core_dsyr2k.c.

References A, B, C, CORE_dsyr2k(), quark_unpack_args_12, trans, and uplo.

{
int uplo;
int trans;
int n;
int k;
double alpha;
double *A;
int lda;
double *B;
int ldb;
double beta;
double *C;
int ldc;
quark_unpack_args_12(quark, uplo, trans, n, k, alpha, A, lda, B, ldb, beta, C, ldc);
CORE_dsyr2k(uplo, trans, n, k, 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_dsyr2k ( Quark quark,
Quark_Task_Flags task_flags,
int  uplo,
int  trans,
int  n,
int  k,
int  nb,
double  alpha,
double *  A,
int  lda,
double *  B,
int  ldb,
double  beta,
double *  C,
int  ldc 
)

Definition at line 45 of file core_dsyr2k.c.

References CORE_dsyr2k_quark(), DAG_CORE_SYR2K, INOUT, INPUT, QUARK_Insert_Task(), and VALUE.

{
sizeof(PLASMA_enum), &uplo, VALUE,
sizeof(PLASMA_enum), &trans, VALUE,
sizeof(int), &n, VALUE,
sizeof(int), &k, VALUE,
sizeof(double), &alpha, VALUE,
sizeof(double)*nb*nb, A, INPUT,
sizeof(int), &lda, VALUE,
sizeof(double)*nb*nb, B, INPUT,
sizeof(int), &ldb, VALUE,
sizeof(double), &beta, VALUE,
sizeof(double)*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: