Mentions légales du service

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

zgetrf: update quark codelet

parent 7e2f96e4
No related branches found
No related tags found
1 merge request!453Ctest getrf
...@@ -21,13 +21,15 @@ ...@@ -21,13 +21,15 @@
#include "chameleon/tasks_z.h" #include "chameleon/tasks_z.h"
void INSERT_TASK_zgetrf_blocked_diag( const RUNTIME_option_t *options, 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 *A, int Am, int An,
CHAM_desc_t *U, int Um, int Un, CHAM_desc_t *U, int Um, int Un,
CHAM_ipiv_t *ipiv ) CHAM_ipiv_t *ipiv )
{ {
assert( 0 ); assert( 0 );
(void)options; (void)options;
(void)m;
(void)n;
(void)h; (void)h;
(void)m0; (void)m0;
(void)ib; (void)ib;
...@@ -41,13 +43,15 @@ void INSERT_TASK_zgetrf_blocked_diag( const RUNTIME_option_t *options, ...@@ -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, 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 *A, int Am, int An,
CHAM_desc_t *U, int Um, int Un, CHAM_desc_t *U, int Um, int Un,
CHAM_ipiv_t *ipiv ) CHAM_ipiv_t *ipiv )
{ {
assert( 0 ); assert( 0 );
(void)options; (void)options;
(void)m;
(void)n;
(void)h; (void)h;
(void)m0; (void)m0;
(void)ib; (void)ib;
......
...@@ -22,12 +22,14 @@ ...@@ -22,12 +22,14 @@
#include "chameleon/tasks_z.h" #include "chameleon/tasks_z.h"
void INSERT_TASK_zgetrf_percol_diag( const RUNTIME_option_t *options, 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_desc_t *A, int Am, int An,
CHAM_ipiv_t *ipiv ) CHAM_ipiv_t *ipiv )
{ {
assert( 0 ); assert( 0 );
(void)options; (void)options;
(void)m;
(void)n;
(void)h; (void)h;
(void)m0; (void)m0;
(void)A; (void)A;
...@@ -37,12 +39,14 @@ void INSERT_TASK_zgetrf_percol_diag( const RUNTIME_option_t *options, ...@@ -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, 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_desc_t *A, int Am, int An,
CHAM_ipiv_t *ipiv ) CHAM_ipiv_t *ipiv )
{ {
assert( 0 ); assert( 0 );
(void)options; (void)options;
(void)m;
(void)n;
(void)h; (void)h;
(void)m0; (void)m0;
(void)A; (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