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

Go to the source code of this file.

Functions

void CORE_dlacpy (PLASMA_enum uplo, int M, int N, double *A, int LDA, double *B, int LDB)
void QUARK_CORE_dlacpy (Quark *quark, Quark_Task_Flags *task_flags, PLASMA_enum uplo, int m, int n, int nb, double *A, int lda, double *B, int ldb)
void CORE_dlacpy_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 d Tue Nov 22 14:35:19 2011

Definition in file core_dlacpy.c.


Function Documentation

void CORE_dlacpy ( PLASMA_enum  uplo,
int  M,
int  N,
double *  A,
int  LDA,
double *  B,
int  LDB 
)

Definition at line 29 of file core_dlacpy.c.

References lapack_const.

{
LAPACKE_dlacpy_work(
LAPACK_COL_MAJOR,
M, N, A, LDA, B, LDB);
}

Here is the caller graph for this function:

void CORE_dlacpy_quark ( Quark quark)

Definition at line 66 of file core_dlacpy.c.

References A, B, lapack_const, quark_unpack_args_7, and uplo.

{
int M;
int N;
double *A;
int LDA;
double *B;
int LDB;
quark_unpack_args_7(quark, uplo, M, N, A, LDA, B, LDB);
LAPACKE_dlacpy_work(
LAPACK_COL_MAJOR,
lapack_const(uplo),
M, N, A, LDA, B, LDB);
}

Here is the caller graph for this function:

void QUARK_CORE_dlacpy ( Quark quark,
Quark_Task_Flags task_flags,
PLASMA_enum  uplo,
int  m,
int  n,
int  nb,
double *  A,
int  lda,
double *  B,
int  ldb 
)

Definition at line 42 of file core_dlacpy.c.

References CORE_dlacpy_quark(), DAG_CORE_LACPY, INPUT, OUTPUT, QUARK_Insert_Task(), and VALUE.

{
sizeof(PLASMA_enum), &uplo, VALUE,
sizeof(int), &m, VALUE,
sizeof(int), &n, VALUE,
sizeof(double)*nb*nb, A, INPUT,
sizeof(int), &lda, VALUE,
sizeof(double)*nb*nb, B, OUTPUT,
sizeof(int), &ldb, VALUE,
0);
}

Here is the call graph for this function:

Here is the caller graph for this function: