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

Go to the source code of this file.

Functions

void CORE_cpotrf (int uplo, int N, PLASMA_Complex32_t *A, int LDA, int *INFO)
void QUARK_CORE_cpotrf (Quark *quark, Quark_Task_Flags *task_flags, int uplo, int n, int nb, PLASMA_Complex32_t *A, int lda, PLASMA_sequence *sequence, PLASMA_request *request, int iinfo)
void CORE_cpotrf_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:18 2011

Definition in file core_cpotrf.c.


Function Documentation

void CORE_cpotrf ( int  uplo,
int  N,
PLASMA_Complex32_t A,
int  LDA,
int *  INFO 
)

Definition at line 29 of file core_cpotrf.c.

References lapack_const.

{
*INFO = LAPACKE_cpotrf_work(
LAPACK_COL_MAJOR,
N, A, LDA );
}

Here is the caller graph for this function:

void CORE_cpotrf_quark ( Quark quark)

Definition at line 65 of file core_cpotrf.c.

References A, lapack_const, plasma_sequence_flush(), PLASMA_SUCCESS, quark_unpack_args_7, plasma_sequence_t::status, and uplo.

{
int uplo;
int n;
int lda;
PLASMA_sequence *sequence;
PLASMA_request *request;
int iinfo;
int info;
quark_unpack_args_7(quark, uplo, n, A, lda, sequence, request, iinfo);
info = LAPACKE_cpotrf_work(
LAPACK_COL_MAJOR,
lapack_const(uplo),
n, A, lda);
if (sequence->status == PLASMA_SUCCESS && info != 0)
plasma_sequence_flush(quark, sequence, request, iinfo+info);
}

Here is the call graph for this function:

Here is the caller graph for this function:

void QUARK_CORE_cpotrf ( Quark quark,
Quark_Task_Flags task_flags,
int  uplo,
int  n,
int  nb,
PLASMA_Complex32_t A,
int  lda,
PLASMA_sequence sequence,
PLASMA_request request,
int  iinfo 
)

Definition at line 40 of file core_cpotrf.c.

References CORE_cpotrf_quark(), DAG_CORE_POTRF, INOUT, QUARK_Insert_Task(), and VALUE.

{
sizeof(PLASMA_enum), &uplo, VALUE,
sizeof(int), &n, VALUE,
sizeof(PLASMA_Complex32_t)*nb*nb, A, INOUT,
sizeof(int), &lda, VALUE,
sizeof(PLASMA_sequence*), &sequence, VALUE,
sizeof(PLASMA_request*), &request, VALUE,
sizeof(int), &iinfo, VALUE,
0);
}

Here is the call graph for this function:

Here is the caller graph for this function: