MAGMA  1.2.0
MatrixAlgebraonGPUandMulticoreArchitectures
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups
codelet_zplghe.c
Go to the documentation of this file.
1 
17 #include "morse_quark.h"
18 /*
19  * Wrapper
20  */
21 void MORSE_zplghe( MorseOption_t *options,
22  double bump, int m, int n, magma_desc_t *A, int Am, int An,
23  int bigM, int m0, int n0, unsigned long long int seed )
24 {
25  int lda = BLKLDD( A, Am );
27  QUARK_Insert_Task(options->quark, CORE_zplghe_quark, options->task_flags,
28  sizeof(double), &bump, VALUE,
29  sizeof(int), &m, VALUE,
30  sizeof(int), &n, VALUE,
31  sizeof(PLASMA_Complex64_t)*lda*n, BLKADDR(A, PLASMA_Complex64_t, Am, An ), OUTPUT,
32  sizeof(int), &lda, VALUE,
33  sizeof(int), &bigM, VALUE,
34  sizeof(int), &m0, VALUE,
35  sizeof(int), &n0, VALUE,
36  sizeof(unsigned long long int), &seed, VALUE,
37  0);
38 }