Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 7e2f96e4 authored by LISITO Alycia's avatar LISITO Alycia
Browse files

zgetrf: update parsec codelet

parent 4bab2f61
No related branches found
No related tags found
1 merge request!453Ctest getrf
......@@ -21,13 +21,15 @@
#include "chameleon/tasks_z.h"
void INSERT_TASK_zgetrf_blocked_diag( const RUNTIME_option_t *options,
int h, int m0, int ib,
int m, int n, int h, int m0, int ib,
CHAM_desc_t *A, int Am, int An,
CHAM_desc_t *U, int Um, int Un,
CHAM_ipiv_t *ipiv )
{
assert( 0 );
(void)options;
(void)m;
(void)n;
(void)h;
(void)m0;
(void)ib;
......@@ -41,13 +43,15 @@ void INSERT_TASK_zgetrf_blocked_diag( const RUNTIME_option_t *options,
}
void INSERT_TASK_zgetrf_blocked_offdiag( const RUNTIME_option_t *options,
int h, int m0, int ib,
int m, int n, int h, int m0, int ib,
CHAM_desc_t *A, int Am, int An,
CHAM_desc_t *U, int Um, int Un,
CHAM_ipiv_t *ipiv )
{
assert( 0 );
(void)options;
(void)m;
(void)n;
(void)h;
(void)m0;
(void)ib;
......
......@@ -22,12 +22,14 @@
#include "chameleon/tasks_z.h"
void INSERT_TASK_zgetrf_percol_diag( const RUNTIME_option_t *options,
int h, int m0,
int m, int n, int h, int m0,
CHAM_desc_t *A, int Am, int An,
CHAM_ipiv_t *ipiv )
{
assert( 0 );
(void)options;
(void)m;
(void)n;
(void)h;
(void)m0;
(void)A;
......@@ -37,12 +39,14 @@ void INSERT_TASK_zgetrf_percol_diag( const RUNTIME_option_t *options,
}
void INSERT_TASK_zgetrf_percol_offdiag( const RUNTIME_option_t *options,
int h, int m0,
int m, int n, int h, int m0,
CHAM_desc_t *A, int Am, int An,
CHAM_ipiv_t *ipiv )
{
assert( 0 );
(void)options;
(void)m;
(void)n;
(void)h;
(void)m0;
(void)A;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment