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

Go to the source code of this file.

Functions

void CORE_slauum (int uplo, int N, float *A, int LDA)
void QUARK_CORE_slauum (Quark *quark, Quark_Task_Flags *task_flags, int uplo, int n, int nb, float *A, int lda)
void CORE_slauum_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:
Julien Langou
Henricus Bouwmeester
Mathieu Faverge
Date:
2010-11-15 s Tue Nov 22 14:35:18 2011

Definition in file core_slauum.c.


Function Documentation

void CORE_slauum ( int  uplo,
int  N,
float *  A,
int  LDA 
)

Definition at line 29 of file core_slauum.c.

References lapack_const.

{
LAPACKE_slauum_work(LAPACK_COL_MAJOR, lapack_const(uplo), N, A, LDA );
}
void CORE_slauum_quark ( Quark quark)

Definition at line 57 of file core_slauum.c.

References A, lapack_const, quark_unpack_args_4, and uplo.

{
int uplo;
int N;
float *A;
int LDA;
quark_unpack_args_4(quark, uplo, N, A, LDA);
LAPACKE_slauum_work(LAPACK_COL_MAJOR, lapack_const(uplo), N, A, LDA);
}

Here is the caller graph for this function:

void QUARK_CORE_slauum ( Quark quark,
Quark_Task_Flags task_flags,
int  uplo,
int  n,
int  nb,
float *  A,
int  lda 
)

Definition at line 37 of file core_slauum.c.

References CORE_slauum_quark(), DAG_CORE_LAUUM, INOUT, QUARK_Insert_Task(), and VALUE.

{
sizeof(PLASMA_enum), &uplo, VALUE,
sizeof(int), &n, VALUE,
sizeof(float)*nb*nb, A, INOUT,
sizeof(int), &lda, VALUE,
0);
}

Here is the call graph for this function:

Here is the caller graph for this function: