diff --git a/runtime/starpu/codelets/codelet_convert.c b/runtime/starpu/codelets/codelet_convert.c index 7dfc1d42b909de2570e8dfc59ff2fe84d92c8571..8a637a493c00b0169b1aedae56c043070c93fcc4 100644 --- a/runtime/starpu/codelets/codelet_convert.c +++ b/runtime/starpu/codelets/codelet_convert.c @@ -119,7 +119,6 @@ insert_task_convert( const RUNTIME_option_t *options, } rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &m, sizeof(int), STARPU_VALUE, &n, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_dlag2h.c b/runtime/starpu/codelets/codelet_dlag2h.c index 4906969978e1b7b0ce046a5b14eec4caa0c41210..f2106e3b6214d57db268a3edf4053693e3bd37b6 100644 --- a/runtime/starpu/codelets/codelet_dlag2h.c +++ b/runtime/starpu/codelets/codelet_dlag2h.c @@ -81,7 +81,6 @@ void INSERT_TASK_dlag2h( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &m, sizeof(int), STARPU_VALUE, &n, sizeof(int), @@ -147,7 +146,6 @@ void INSERT_TASK_hlag2d( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &m, sizeof(int), STARPU_VALUE, &n, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_dlag2z.c b/runtime/starpu/codelets/codelet_dlag2z.c index 242242ea4bbcc8d6989e236dc20e1b143b473369..a3dc89cd5cb5f25183db641107d3a1092264d076 100644 --- a/runtime/starpu/codelets/codelet_dlag2z.c +++ b/runtime/starpu/codelets/codelet_dlag2z.c @@ -61,7 +61,6 @@ void INSERT_TASK_dlag2z( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &uplo, sizeof(uplo), STARPU_VALUE, &m, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_dzasum.c b/runtime/starpu/codelets/codelet_dzasum.c index 6f5d4abba2d9e3d94431a0996e23aa6449bc6869..3c4a6b4d80594b12fca50a9f938a2a49e10c25cf 100644 --- a/runtime/starpu/codelets/codelet_dzasum.c +++ b/runtime/starpu/codelets/codelet_dzasum.c @@ -62,7 +62,6 @@ void INSERT_TASK_dzasum( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &storev, sizeof(cham_store_t), STARPU_VALUE, &uplo, sizeof(cham_uplo_t), diff --git a/runtime/starpu/codelets/codelet_gemm.c b/runtime/starpu/codelets/codelet_gemm.c index 2f9df76d7e174cf476482bb97dafcca39011db6a..436a5b5639786f165d9d20a4a6e30d96ee403f0e 100644 --- a/runtime/starpu/codelets/codelet_gemm.c +++ b/runtime/starpu/codelets/codelet_gemm.c @@ -184,7 +184,6 @@ INSERT_TASK_gemm( const RUNTIME_option_t *options, /* Insert the task */ rt_starpu_insert_task( - options->sequence->comm, codelet, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, argssize, diff --git a/runtime/starpu/codelets/codelet_gemmex.c b/runtime/starpu/codelets/codelet_gemmex.c index d8577943f844519096ff372b62e7b3c6a321063e..c59af2cb0d334cd6c036e631732d5dff7a7fb033 100644 --- a/runtime/starpu/codelets/codelet_gemmex.c +++ b/runtime/starpu/codelets/codelet_gemmex.c @@ -179,7 +179,6 @@ void INSERT_TASK_gemmex_Astat( const RUNTIME_option_t *options, /* Insert the task */ rt_starpu_insert_task( - options->sequence->comm, &cl_gemmex, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, sizeof(struct cl_gemmex_args_s), @@ -258,7 +257,6 @@ void INSERT_TASK_gemmex( const RUNTIME_option_t *options, /* Insert the task */ rt_starpu_insert_task( - options->sequence->comm, &cl_gemmex, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, sizeof(struct cl_gemmex_args_s), diff --git a/runtime/starpu/codelets/codelet_hgemm.c b/runtime/starpu/codelets/codelet_hgemm.c index 39e41525c60edbc1b6f77933a041785abe51d434..4565c15af431f05f35da67e4dd9c8d9f4e1019db 100644 --- a/runtime/starpu/codelets/codelet_hgemm.c +++ b/runtime/starpu/codelets/codelet_hgemm.c @@ -158,7 +158,6 @@ void INSERT_TASK_hgemm_Astat( const RUNTIME_option_t *options, /* Insert the task */ rt_starpu_insert_task( - options->sequence->comm, &cl_hgemm, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, sizeof(struct cl_hgemm_args_s), @@ -230,7 +229,6 @@ void INSERT_TASK_hgemm( const RUNTIME_option_t *options, /* Insert the task */ rt_starpu_insert_task( - options->sequence->comm, &cl_hgemm, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, sizeof(struct cl_hgemm_args_s), diff --git a/runtime/starpu/codelets/codelet_ipiv_to_perm.c b/runtime/starpu/codelets/codelet_ipiv_to_perm.c index 04439a19876e41539d08eddd580ac6eb18964252..f615e2304bfae1fefda53f04eae2b0b7a40da80a 100644 --- a/runtime/starpu/codelets/codelet_ipiv_to_perm.c +++ b/runtime/starpu/codelets/codelet_ipiv_to_perm.c @@ -56,7 +56,6 @@ void INSERT_TASK_ipiv_to_perm( const RUNTIME_option_t *options, struct starpu_codelet *codelet = &cl_ipiv_to_perm; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &m0, sizeof(int), STARPU_VALUE, &m, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_map.c b/runtime/starpu/codelets/codelet_map.c index a9eace549f9ef1dc80e99bead99acc9ddc6bb28e..6bdaed3eb2bf37abd32c63eeafbf1d2b438dac5e 100644 --- a/runtime/starpu/codelets/codelet_map.c +++ b/runtime/starpu/codelets/codelet_map.c @@ -59,7 +59,6 @@ void INSERT_TASK_map( const RUNTIME_option_t *options, A->get_blktile( A, Am, An ) ); rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &A, sizeof(CHAM_desc_t*), STARPU_VALUE, &uplo, sizeof(cham_uplo_t), diff --git a/runtime/starpu/codelets/codelet_zaxpy.c b/runtime/starpu/codelets/codelet_zaxpy.c index 2b818bd03239392614067acf1f29e6f817c6fd39..3aa9e8523a395a0fe63ab22bbfdd58dfb6f038d3 100644 --- a/runtime/starpu/codelets/codelet_zaxpy.c +++ b/runtime/starpu/codelets/codelet_zaxpy.c @@ -62,7 +62,6 @@ void INSERT_TASK_zaxpy( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &M, sizeof(int), STARPU_VALUE, &alpha, sizeof(CHAMELEON_Complex64_t), diff --git a/runtime/starpu/codelets/codelet_zbuild.c b/runtime/starpu/codelets/codelet_zbuild.c index b93d33b21b46a4d31193dcf6182a3db8d716bfbe..f96db26a88ad966fcf3d4c41d4cf6a9d021bbbdd 100644 --- a/runtime/starpu/codelets/codelet_zbuild.c +++ b/runtime/starpu/codelets/codelet_zbuild.c @@ -74,7 +74,6 @@ CODELETS_CPU(zbuild, cl_zbuild_cpu_func) col_min = An*A->nb ; col_max = An == A->nt-1 ? A->n-1 : col_min+A->nb-1 ; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &row_min, sizeof(int), STARPU_VALUE, &row_max, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zcesca.c b/runtime/starpu/codelets/codelet_zcesca.c index 2e28accc88158f97850b305af3e991d06d5870f1..25708af1c25b4673c6e127ac9c64fc0f8829f088 100644 --- a/runtime/starpu/codelets/codelet_zcesca.c +++ b/runtime/starpu/codelets/codelet_zcesca.c @@ -94,7 +94,6 @@ void INSERT_TASK_zcesca( const RUNTIME_option_t *options, } rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_CL_ARGS, clargs, sizeof(struct cl_zcesca_args_s), STARPU_R, RTBLKADDR(Gi, ChamComplexDouble, Gim, Gin), diff --git a/runtime/starpu/codelets/codelet_zgeadd.c b/runtime/starpu/codelets/codelet_zgeadd.c index 9f2bf00715ab69f82ce829b868d0a974f1a646b8..37c6a78790701f77ce2937cb8c61f2531af610c1 100644 --- a/runtime/starpu/codelets/codelet_zgeadd.c +++ b/runtime/starpu/codelets/codelet_zgeadd.c @@ -99,7 +99,6 @@ void INSERT_TASK_zgeadd( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &trans, sizeof(int), STARPU_VALUE, &m, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zgelqt.c b/runtime/starpu/codelets/codelet_zgelqt.c index 840257376437339cbca002e6be36991e2cea6fcf..3727a8f52e9fcb789dc5deb4ea89b398b732bc81 100644 --- a/runtime/starpu/codelets/codelet_zgelqt.c +++ b/runtime/starpu/codelets/codelet_zgelqt.c @@ -76,7 +76,6 @@ void INSERT_TASK_zgelqt(const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &m, sizeof(int), STARPU_VALUE, &n, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zgemm.c b/runtime/starpu/codelets/codelet_zgemm.c index 21eac7fd36c27b00d8a872a8cda718ca9927c273..ed64d0ef3539f3395214716418ecfd27d881c78a 100644 --- a/runtime/starpu/codelets/codelet_zgemm.c +++ b/runtime/starpu/codelets/codelet_zgemm.c @@ -186,7 +186,6 @@ void INSERT_TASK_zgemm_Astat( const RUNTIME_option_t *options, /* Insert the task */ rt_starpu_insert_task( - options->sequence->comm, &cl_zgemm, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, sizeof(struct cl_zgemm_args_s), @@ -258,7 +257,6 @@ void INSERT_TASK_zgemm( const RUNTIME_option_t *options, /* Insert the task */ rt_starpu_insert_task( - options->sequence->comm, &cl_zgemm, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, sizeof(struct cl_zgemm_args_s), diff --git a/runtime/starpu/codelets/codelet_zgemv.c b/runtime/starpu/codelets/codelet_zgemv.c index acb50f65fb1cbfbc36bbd2db24774baca6fa3f7b..35830c312217dab4f7b8ca1162f281cf4b7b0033 100644 --- a/runtime/starpu/codelets/codelet_zgemv.c +++ b/runtime/starpu/codelets/codelet_zgemv.c @@ -104,7 +104,6 @@ void INSERT_TASK_zgemv( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &trans, sizeof(cham_trans_t), STARPU_VALUE, &m, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zgeqrt.c b/runtime/starpu/codelets/codelet_zgeqrt.c index 54cb174f4ad899f4a7985d1e689973a1cf02d9c1..bb350b8d4f953da08e8e4872231cc991214d41a6 100644 --- a/runtime/starpu/codelets/codelet_zgeqrt.c +++ b/runtime/starpu/codelets/codelet_zgeqrt.c @@ -77,7 +77,6 @@ void INSERT_TASK_zgeqrt(const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &m, sizeof(int), STARPU_VALUE, &n, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zgered.c b/runtime/starpu/codelets/codelet_zgered.c index b634db06b7d4cef538bb3b9d4ff155ddba7107ce..a6f8cab2804921a580f33344eae60fb88d57b744 100644 --- a/runtime/starpu/codelets/codelet_zgered.c +++ b/runtime/starpu/codelets/codelet_zgered.c @@ -78,7 +78,6 @@ void INSERT_TASK_zgered( const RUNTIME_option_t *options, starpu_cham_tile_register( &handleAout, -1, tileA, ChamComplexHalf ); rt_starpu_insert_task( - options->sequence->comm, &cl_dlag2h, STARPU_VALUE, &m, sizeof(int), STARPU_VALUE, &n, sizeof(int), @@ -120,7 +119,6 @@ void INSERT_TASK_zgered( const RUNTIME_option_t *options, starpu_cham_tile_register( &handleAout, -1, tileA, ChamComplexFloat ); rt_starpu_insert_task( - options->sequence->comm, &cl_zlag2c, STARPU_VALUE, &m, sizeof(int), STARPU_VALUE, &n, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zgerst.c b/runtime/starpu/codelets/codelet_zgerst.c index d41a704563d05ae9177a2aa77b23056bae83a9b2..7aca89b00fd3731ee07d46c8fd7ecd236abb6b26 100644 --- a/runtime/starpu/codelets/codelet_zgerst.c +++ b/runtime/starpu/codelets/codelet_zgerst.c @@ -70,7 +70,6 @@ void INSERT_TASK_zgerst( const RUNTIME_option_t *options, A->myrank, Am, An ); #endif rt_starpu_insert_task( - options->sequence->comm, &cl_hlag2d, STARPU_VALUE, &m, sizeof(int), STARPU_VALUE, &n, sizeof(int), @@ -93,7 +92,6 @@ void INSERT_TASK_zgerst( const RUNTIME_option_t *options, A->myrank, Am, An ); #endif rt_starpu_insert_task( - options->sequence->comm, &cl_clag2z, STARPU_VALUE, &m, sizeof(int), STARPU_VALUE, &n, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zgessm.c b/runtime/starpu/codelets/codelet_zgessm.c index fba34de91016b2cfe1e49e7f26043754a9125676..4c2f1fb1b51671bce652acdd344ef11b4a2cb8ea 100644 --- a/runtime/starpu/codelets/codelet_zgessm.c +++ b/runtime/starpu/codelets/codelet_zgessm.c @@ -71,7 +71,6 @@ void INSERT_TASK_zgessm( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &m, sizeof(int), STARPU_VALUE, &n, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zgessq.c b/runtime/starpu/codelets/codelet_zgessq.c index 92da99f2270347d2bcfd06cd4dac60089dcc0c64..a951ac6bc1248f74ed52bfc3c42cc3076614ecac 100644 --- a/runtime/starpu/codelets/codelet_zgessq.c +++ b/runtime/starpu/codelets/codelet_zgessq.c @@ -61,7 +61,6 @@ void INSERT_TASK_zgessq( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &storev, sizeof(cham_store_t), STARPU_VALUE, &m, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zgesum.c b/runtime/starpu/codelets/codelet_zgesum.c index e5f1dc9179b7914ae003711e0f94c2b3d10855be..a301533d1de006ab7e2cb07eb03d57df60f9b952 100644 --- a/runtime/starpu/codelets/codelet_zgesum.c +++ b/runtime/starpu/codelets/codelet_zgesum.c @@ -67,7 +67,6 @@ void INSERT_TASK_zgesum( const RUNTIME_option_t *options, } rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_CL_ARGS, clargs, sizeof(struct cl_zgesum_args_s), STARPU_R, RTBLKADDR(A, ChamComplexDouble, Am, An), diff --git a/runtime/starpu/codelets/codelet_zgetrf.c b/runtime/starpu/codelets/codelet_zgetrf.c index b99cec415181055ca8490b4b9bfb31c6e875922c..181f57df0a156220595ad64f7f657614e4294958 100644 --- a/runtime/starpu/codelets/codelet_zgetrf.c +++ b/runtime/starpu/codelets/codelet_zgetrf.c @@ -71,7 +71,6 @@ void INSERT_TASK_zgetrf( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &m, sizeof(int), STARPU_VALUE, &n, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zgetrf_blocked.c b/runtime/starpu/codelets/codelet_zgetrf_blocked.c index 1d654ce23bd77bc9a66d6fcfa87dc97c02621055..832132f4f1498c19d6cd1d7982772044658d16fc 100644 --- a/runtime/starpu/codelets/codelet_zgetrf_blocked.c +++ b/runtime/starpu/codelets/codelet_zgetrf_blocked.c @@ -122,7 +122,6 @@ void INSERT_TASK_zgetrf_blocked_diag( const RUNTIME_option_t *options, A->get_blktile( A, Am, An ) ); rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &h, sizeof(int), STARPU_VALUE, &m0, sizeof(int), @@ -206,7 +205,6 @@ void INSERT_TASK_zgetrf_blocked_offdiag( const RUNTIME_option_t *options, A->get_blktile( A, Am, An ) ); rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &h, sizeof(int), STARPU_VALUE, &m0, sizeof(int), @@ -285,7 +283,6 @@ void INSERT_TASK_zgetrf_blocked_trsm( const RUNTIME_option_t *options, U->get_blktile( U, Um, Un ) ); rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &m, sizeof(int), STARPU_VALUE, &n, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zgetrf_incpiv.c b/runtime/starpu/codelets/codelet_zgetrf_incpiv.c index 12af072834fe88f36ca69a3d3bd6670c930e5543..4ff218c4c0f8cd050cc63ac921e29d822255c594 100644 --- a/runtime/starpu/codelets/codelet_zgetrf_incpiv.c +++ b/runtime/starpu/codelets/codelet_zgetrf_incpiv.c @@ -79,7 +79,6 @@ void INSERT_TASK_zgetrf_incpiv(const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &m, sizeof(int), STARPU_VALUE, &n, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zgetrf_nopiv.c b/runtime/starpu/codelets/codelet_zgetrf_nopiv.c index aee43a54f228270ffe9fee22e762d4501d460a02..3c0bccc80158b41ef3bbc7a2b732f0dcc478bd64 100644 --- a/runtime/starpu/codelets/codelet_zgetrf_nopiv.c +++ b/runtime/starpu/codelets/codelet_zgetrf_nopiv.c @@ -71,7 +71,6 @@ void INSERT_TASK_zgetrf_nopiv(const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &m, sizeof(int), STARPU_VALUE, &n, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zgetrf_nopiv_percol.c b/runtime/starpu/codelets/codelet_zgetrf_nopiv_percol.c index 75222747a3fab8593000d32aea9a7627de061176..5643f3e638c5c6f45adb57d6c4518ec5eabd6d75 100644 --- a/runtime/starpu/codelets/codelet_zgetrf_nopiv_percol.c +++ b/runtime/starpu/codelets/codelet_zgetrf_nopiv_percol.c @@ -90,7 +90,6 @@ void INSERT_TASK_zgetrf_nopiv_percol_diag( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &m, sizeof(int), STARPU_VALUE, &n, sizeof(int), @@ -162,7 +161,6 @@ void INSERT_TASK_zgetrf_nopiv_percol_trsm( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &m, sizeof(int), STARPU_VALUE, &n, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zgetrf_percol.c b/runtime/starpu/codelets/codelet_zgetrf_percol.c index a4c3a9695b3c439c85c6af1eee420c92ba8a444f..7829c3f3e70bf28bd57495b2fecd1bf55be3cb43 100644 --- a/runtime/starpu/codelets/codelet_zgetrf_percol.c +++ b/runtime/starpu/codelets/codelet_zgetrf_percol.c @@ -100,7 +100,6 @@ void INSERT_TASK_zgetrf_percol_diag( const RUNTIME_option_t *options, A->get_blktile( A, Am, An ) ); rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &h, sizeof(int), STARPU_VALUE, &m0, sizeof(int), @@ -170,7 +169,6 @@ void INSERT_TASK_zgetrf_percol_offdiag( const RUNTIME_option_t *options, A->get_blktile( A, Am, An ) ); rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &h, sizeof(int), STARPU_VALUE, &m0, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zgram.c b/runtime/starpu/codelets/codelet_zgram.c index f2f5d0258c8b832de2e5f281192146c463bb42e9..d43e7884f99e868600338a9c9f349ef8b0d97bf6 100644 --- a/runtime/starpu/codelets/codelet_zgram.c +++ b/runtime/starpu/codelets/codelet_zgram.c @@ -64,7 +64,6 @@ void INSERT_TASK_zgram( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &uplo, sizeof(int), STARPU_VALUE, &m, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zhe2ge.c b/runtime/starpu/codelets/codelet_zhe2ge.c index a1c6dee97f29a19e1a1c3f8e35b33b4b201d9ef6..19af61a01076047ff6d00aa28a66a985c6642754 100644 --- a/runtime/starpu/codelets/codelet_zhe2ge.c +++ b/runtime/starpu/codelets/codelet_zhe2ge.c @@ -61,7 +61,6 @@ void INSERT_TASK_zhe2ge( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &uplo, sizeof(int), STARPU_VALUE, &m, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zhemm.c b/runtime/starpu/codelets/codelet_zhemm.c index cbaca240a1c598300c80063497aa0e42adf97b85..bb87a2bd118ceeefd2761c052e9303bacf438cc3 100644 --- a/runtime/starpu/codelets/codelet_zhemm.c +++ b/runtime/starpu/codelets/codelet_zhemm.c @@ -188,7 +188,6 @@ void INSERT_TASK_zhemm_Astat( const RUNTIME_option_t *options, /* Insert the task */ rt_starpu_insert_task( - options->sequence->comm, &cl_zhemm, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, sizeof(struct cl_zhemm_args_s), @@ -259,7 +258,6 @@ void INSERT_TASK_zhemm( const RUNTIME_option_t *options, /* Insert the task */ rt_starpu_insert_task( - options->sequence->comm, &cl_zhemm, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, sizeof(struct cl_zhemm_args_s), diff --git a/runtime/starpu/codelets/codelet_zher2k.c b/runtime/starpu/codelets/codelet_zher2k.c index adfc14e1cd7263077fd579be769a4a1939529616..400f14612eedc17699f313def07115ebd6452083 100644 --- a/runtime/starpu/codelets/codelet_zher2k.c +++ b/runtime/starpu/codelets/codelet_zher2k.c @@ -148,7 +148,6 @@ INSERT_TASK_zher2k( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &uplo, sizeof(int), STARPU_VALUE, &trans, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zherfb.c b/runtime/starpu/codelets/codelet_zherfb.c index d8c0fc85bcac7f854f17d45601514e518d887970..f7c168edda1839004c51689971eedf7c15b615b3 100644 --- a/runtime/starpu/codelets/codelet_zherfb.c +++ b/runtime/starpu/codelets/codelet_zherfb.c @@ -99,7 +99,6 @@ void INSERT_TASK_zherfb(const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &uplo, sizeof(int), STARPU_VALUE, &n, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zherk.c b/runtime/starpu/codelets/codelet_zherk.c index 5e6fd114a7ee5975f059a9c0ababd0b0fc3297a7..e22373ea57f919326db85dc6c118628ca5129f04 100644 --- a/runtime/starpu/codelets/codelet_zherk.c +++ b/runtime/starpu/codelets/codelet_zherk.c @@ -154,7 +154,6 @@ void INSERT_TASK_zherk( const RUNTIME_option_t *options, /* Insert the task */ rt_starpu_insert_task( - options->sequence->comm, &cl_zherk, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, sizeof(struct cl_zherk_args_s), diff --git a/runtime/starpu/codelets/codelet_zlacpy.c b/runtime/starpu/codelets/codelet_zlacpy.c index b9363cfef1fe2e605a71d77b20898456ce021a1b..0d998b617f714a945b644f7e4f7b1844502a143f 100644 --- a/runtime/starpu/codelets/codelet_zlacpy.c +++ b/runtime/starpu/codelets/codelet_zlacpy.c @@ -183,7 +183,6 @@ void INSERT_TASK_zlacpyx( const RUNTIME_option_t *options, /* Insert the task */ rt_starpu_insert_task( - options->sequence->comm, &cl_zlacpyx, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, sizeof(struct cl_zlacpy_args_s), @@ -259,7 +258,6 @@ void INSERT_TASK_zlacpy( const RUNTIME_option_t *options, callback = options->profiling ? cl_zlacpy_callback : NULL; rt_starpu_insert_task( - options->sequence->comm, &cl_zlacpy, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, sizeof(struct cl_zlacpy_args_s), diff --git a/runtime/starpu/codelets/codelet_zlag2c.c b/runtime/starpu/codelets/codelet_zlag2c.c index 4d50142f81dea8c764d813807cf22279952c6c29..1a56bc748671464a452e8dbcb29aff43630ce060 100644 --- a/runtime/starpu/codelets/codelet_zlag2c.c +++ b/runtime/starpu/codelets/codelet_zlag2c.c @@ -97,7 +97,6 @@ void INSERT_TASK_zlag2c(const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &m, sizeof(int), STARPU_VALUE, &n, sizeof(int), @@ -176,7 +175,6 @@ void INSERT_TASK_clag2z( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &m, sizeof(int), STARPU_VALUE, &n, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zlange.c b/runtime/starpu/codelets/codelet_zlange.c index f4ff38318d3287ec15058a3b10345a91b2323824..01ac3d111d591531423bc495ba3e40e6ece46bdc 100644 --- a/runtime/starpu/codelets/codelet_zlange.c +++ b/runtime/starpu/codelets/codelet_zlange.c @@ -66,7 +66,6 @@ void INSERT_TASK_zlange( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &norm, sizeof(cham_normtype_t), STARPU_VALUE, &M, sizeof(int), @@ -121,7 +120,6 @@ void INSERT_TASK_zlange_max(const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_R, RTBLKADDR(A, ChamRealDouble, Am, An), STARPU_RW, RTBLKADDR(B, ChamRealDouble, Bm, Bn), diff --git a/runtime/starpu/codelets/codelet_zlanhe.c b/runtime/starpu/codelets/codelet_zlanhe.c index eccd6bdfd051e0f628dacf9fc48f7956b4b69b50..3a12a9befcd4c6e5fed4a6b26756e3d5081ebc76 100644 --- a/runtime/starpu/codelets/codelet_zlanhe.c +++ b/runtime/starpu/codelets/codelet_zlanhe.c @@ -65,7 +65,6 @@ void INSERT_TASK_zlanhe(const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &norm, sizeof(int), STARPU_VALUE, &uplo, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zlansy.c b/runtime/starpu/codelets/codelet_zlansy.c index 1776ed907940b795f1b3da808aea861a7e89ec46..d07dd10b7dcb480fb3e3def31c66600315553e7d 100644 --- a/runtime/starpu/codelets/codelet_zlansy.c +++ b/runtime/starpu/codelets/codelet_zlansy.c @@ -66,7 +66,6 @@ void INSERT_TASK_zlansy( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &norm, sizeof(int), STARPU_VALUE, &uplo, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zlantr.c b/runtime/starpu/codelets/codelet_zlantr.c index ba8d692582025ef088794a3a3799788892298d58..cee8c0b7f7447dc95f320d2ec8bd59e629d4d9b0 100644 --- a/runtime/starpu/codelets/codelet_zlantr.c +++ b/runtime/starpu/codelets/codelet_zlantr.c @@ -65,7 +65,6 @@ void INSERT_TASK_zlantr( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &norm, sizeof(int), STARPU_VALUE, &uplo, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zlascal.c b/runtime/starpu/codelets/codelet_zlascal.c index 9af659b9291da707d79f84803a1f65871da3bd11..000f4b8b96a62dd42421ef93c09a251058db8a7c 100644 --- a/runtime/starpu/codelets/codelet_zlascal.c +++ b/runtime/starpu/codelets/codelet_zlascal.c @@ -88,7 +88,6 @@ void INSERT_TASK_zlascal( const RUNTIME_option_t *options, /* Insert the task */ rt_starpu_insert_task( - options->sequence->comm, &cl_zlascal, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, sizeof(struct cl_zlascal_args_s), diff --git a/runtime/starpu/codelets/codelet_zlaset.c b/runtime/starpu/codelets/codelet_zlaset.c index d4ba3c6b2d6b14c1a27ac49aa63e78e6747831df..1992b98159ea3e4c2bf832285df1d134fef3a627 100644 --- a/runtime/starpu/codelets/codelet_zlaset.c +++ b/runtime/starpu/codelets/codelet_zlaset.c @@ -82,7 +82,6 @@ void INSERT_TASK_zlaset( const RUNTIME_option_t *options, /* Insert the task */ rt_starpu_insert_task( - options->sequence->comm, &cl_zlaset, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, sizeof(struct cl_zlaset_args_s), diff --git a/runtime/starpu/codelets/codelet_zlaset2.c b/runtime/starpu/codelets/codelet_zlaset2.c index 8dc3f32069a4d6691d183276d99451bc0776fef8..deef53db08adf0af79411f1bd7f62aa5673f1d48 100644 --- a/runtime/starpu/codelets/codelet_zlaset2.c +++ b/runtime/starpu/codelets/codelet_zlaset2.c @@ -61,7 +61,6 @@ void INSERT_TASK_zlaset2(const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &uplo, sizeof(int), STARPU_VALUE, &M, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zlaswp.c b/runtime/starpu/codelets/codelet_zlaswp.c index 756959aad946bf650f203f1ffbe914918f90aee3..4ffa8384cdec2faab1f264571cc3757263cee138 100644 --- a/runtime/starpu/codelets/codelet_zlaswp.c +++ b/runtime/starpu/codelets/codelet_zlaswp.c @@ -51,7 +51,6 @@ void INSERT_TASK_zlaswp_get( const RUNTIME_option_t *options, //void (*callback)(void*) = options->profiling ? cl_zlaswp_get_callback : NULL; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &m0, sizeof(int), STARPU_VALUE, &k, sizeof(int), @@ -96,7 +95,6 @@ void INSERT_TASK_zlaswp_set( const RUNTIME_option_t *options, //void (*callback)(void*) = options->profiling ? cl_zlaswp_set_callback : NULL; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &m0, sizeof(int), STARPU_VALUE, &k, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zlatro.c b/runtime/starpu/codelets/codelet_zlatro.c index c29de8c417297239ac4459fe6cb5083aef8e29c3..9ce1578774c8a5581506978eb4947b71fa2536bf 100644 --- a/runtime/starpu/codelets/codelet_zlatro.c +++ b/runtime/starpu/codelets/codelet_zlatro.c @@ -72,7 +72,6 @@ void INSERT_TASK_zlatro( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &uplo, sizeof(int), STARPU_VALUE, &trans, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zlauum.c b/runtime/starpu/codelets/codelet_zlauum.c index 2bff43b0f2a437625ad24cfbace7eff70a3c5259..72423638bbdd4e4263a917062227e67bc755b054 100644 --- a/runtime/starpu/codelets/codelet_zlauum.c +++ b/runtime/starpu/codelets/codelet_zlauum.c @@ -80,7 +80,6 @@ void INSERT_TASK_zlauum( const RUNTIME_option_t *options, /* Insert the task */ rt_starpu_insert_task( - options->sequence->comm, &cl_zlauum, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, sizeof(struct cl_zlauum_args_s), diff --git a/runtime/starpu/codelets/codelet_zplghe.c b/runtime/starpu/codelets/codelet_zplghe.c index bd27f834b93cf98f5b20d6c0f5b776c6ca5df7a2..8233551388db083f417ec71412cc35f06daff39b 100644 --- a/runtime/starpu/codelets/codelet_zplghe.c +++ b/runtime/starpu/codelets/codelet_zplghe.c @@ -86,7 +86,6 @@ void INSERT_TASK_zplghe( const RUNTIME_option_t *options, /* Insert the task */ rt_starpu_insert_task( - options->sequence->comm, &cl_zplghe, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, sizeof(struct cl_zplghe_args_s), diff --git a/runtime/starpu/codelets/codelet_zplgsy.c b/runtime/starpu/codelets/codelet_zplgsy.c index 320f9656ba187be277a9457a64d641bb7acc6d76..0e37a66d8d22119f5ac158066d4c171502882220 100644 --- a/runtime/starpu/codelets/codelet_zplgsy.c +++ b/runtime/starpu/codelets/codelet_zplgsy.c @@ -86,7 +86,6 @@ void INSERT_TASK_zplgsy( const RUNTIME_option_t *options, /* Insert the task */ rt_starpu_insert_task( - options->sequence->comm, &cl_zplgsy, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, sizeof(struct cl_zplgsy_args_s), diff --git a/runtime/starpu/codelets/codelet_zplrnt.c b/runtime/starpu/codelets/codelet_zplrnt.c index 185c5b0447057612e0097b1a12fb0afd90d8c256..3a93cb4ca6990e746ddf68f6ab1d468fd1c42997 100644 --- a/runtime/starpu/codelets/codelet_zplrnt.c +++ b/runtime/starpu/codelets/codelet_zplrnt.c @@ -85,7 +85,6 @@ void INSERT_TASK_zplrnt( const RUNTIME_option_t *options, /* Insert the task */ rt_starpu_insert_task( - options->sequence->comm, &cl_zplrnt, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, sizeof(struct cl_zplrnt_args_s), diff --git a/runtime/starpu/codelets/codelet_zplssq.c b/runtime/starpu/codelets/codelet_zplssq.c index f2ef6c861d51d7d4cf7534cfcecfb9e1739b2bd4..15f3bb16e0f38a19189d8f3bcab4927c74201811 100644 --- a/runtime/starpu/codelets/codelet_zplssq.c +++ b/runtime/starpu/codelets/codelet_zplssq.c @@ -65,7 +65,6 @@ void INSERT_TASK_zplssq( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &storev, sizeof(int), STARPU_VALUE, &M, sizeof(int), @@ -114,7 +113,6 @@ void INSERT_TASK_zplssq2( const RUNTIME_option_t *options, int N, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &N, sizeof(int), STARPU_RW, RTBLKADDR(RESULT, ChamRealDouble, RESULTm, RESULTn), diff --git a/runtime/starpu/codelets/codelet_zpotrf.c b/runtime/starpu/codelets/codelet_zpotrf.c index 7c1817c74af31d1f3d6b958dedaa0e95ee2050de..5e06db2e30bbf3727405299940404e24db28f053 100644 --- a/runtime/starpu/codelets/codelet_zpotrf.c +++ b/runtime/starpu/codelets/codelet_zpotrf.c @@ -97,7 +97,6 @@ void INSERT_TASK_zpotrf( const RUNTIME_option_t *options, /* Insert the task */ rt_starpu_insert_task( - options->sequence->comm, &cl_zpotrf, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, sizeof(struct cl_zpotrf_args_s), diff --git a/runtime/starpu/codelets/codelet_zssssm.c b/runtime/starpu/codelets/codelet_zssssm.c index 8902e7d3ac2bafb4f51f33292c3c1cdcb0c6521b..56b3fd54c253f04ea1037d319283ba71021841be 100644 --- a/runtime/starpu/codelets/codelet_zssssm.c +++ b/runtime/starpu/codelets/codelet_zssssm.c @@ -78,7 +78,6 @@ void INSERT_TASK_zssssm( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &m1, sizeof(int), STARPU_VALUE, &n1, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zsymm.c b/runtime/starpu/codelets/codelet_zsymm.c index 785e198d0180b94279d81c9cc2b65c11ed3beeab..e518b8b44a1bf076be2042d8aa77b6ee07521a68 100644 --- a/runtime/starpu/codelets/codelet_zsymm.c +++ b/runtime/starpu/codelets/codelet_zsymm.c @@ -189,7 +189,6 @@ void INSERT_TASK_zsymm_Astat( const RUNTIME_option_t *options, /* Insert the task */ rt_starpu_insert_task( - options->sequence->comm, &cl_zsymm, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, sizeof(struct cl_zsymm_args_s), @@ -260,7 +259,6 @@ void INSERT_TASK_zsymm( const RUNTIME_option_t *options, /* Insert the task */ rt_starpu_insert_task( - options->sequence->comm, &cl_zsymm, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, sizeof(struct cl_zsymm_args_s), diff --git a/runtime/starpu/codelets/codelet_zsyr2k.c b/runtime/starpu/codelets/codelet_zsyr2k.c index 655233defeb385feead912a1a1944db3e73020a1..2c2d35c2fb9a557719be7c6058f52e0fd1c14f1f 100644 --- a/runtime/starpu/codelets/codelet_zsyr2k.c +++ b/runtime/starpu/codelets/codelet_zsyr2k.c @@ -147,7 +147,6 @@ void INSERT_TASK_zsyr2k(const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &uplo, sizeof(int), STARPU_VALUE, &trans, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zsyrk.c b/runtime/starpu/codelets/codelet_zsyrk.c index 1e2077e6803ee03244a503c2fccdcfbcdb9e5ff0..f89e1f223c5aa5b3b95c21502f8fd269a0f91e24 100644 --- a/runtime/starpu/codelets/codelet_zsyrk.c +++ b/runtime/starpu/codelets/codelet_zsyrk.c @@ -155,7 +155,6 @@ void INSERT_TASK_zsyrk( const RUNTIME_option_t *options, /* Insert the task */ rt_starpu_insert_task( - options->sequence->comm, &cl_zsyrk, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, sizeof(struct cl_zsyrk_args_s), diff --git a/runtime/starpu/codelets/codelet_zsyssq.c b/runtime/starpu/codelets/codelet_zsyssq.c index ef3c506ad6372a10becd566c60026140b322f84d..53815341b125cbb97d51c47941ffa970b0d172f9 100644 --- a/runtime/starpu/codelets/codelet_zsyssq.c +++ b/runtime/starpu/codelets/codelet_zsyssq.c @@ -59,7 +59,6 @@ void INSERT_TASK_zsyssq( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &storev, sizeof(cham_store_t), STARPU_VALUE, &uplo, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zsytrf_nopiv.c b/runtime/starpu/codelets/codelet_zsytrf_nopiv.c index c0a52dac966577cc4d31ff3b995e253b3a783dce..44d1bb95e8151135cb96824d9d12f137d5f12fd3 100644 --- a/runtime/starpu/codelets/codelet_zsytrf_nopiv.c +++ b/runtime/starpu/codelets/codelet_zsytrf_nopiv.c @@ -61,7 +61,6 @@ void INSERT_TASK_zsytrf_nopiv( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &uplo, sizeof(int), STARPU_VALUE, &n, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_ztplqt.c b/runtime/starpu/codelets/codelet_ztplqt.c index af16f7b0342451da1742816aca6e7ee75d705692..7bef4104106c32c6bdda54573a5b9ac8539c9bf8 100644 --- a/runtime/starpu/codelets/codelet_ztplqt.c +++ b/runtime/starpu/codelets/codelet_ztplqt.c @@ -67,7 +67,6 @@ void INSERT_TASK_ztplqt( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &M, sizeof(int), STARPU_VALUE, &N, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_ztpmlqt.c b/runtime/starpu/codelets/codelet_ztpmlqt.c index 34b697a6c68dd926d09f8436913c93d017cf2c3a..62b0e5d208d6dc2f18e3ce00e274d7bde7cc0852 100644 --- a/runtime/starpu/codelets/codelet_ztpmlqt.c +++ b/runtime/starpu/codelets/codelet_ztpmlqt.c @@ -109,7 +109,6 @@ void INSERT_TASK_ztpmlqt( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &side, sizeof(int), STARPU_VALUE, &trans, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_ztpmqrt.c b/runtime/starpu/codelets/codelet_ztpmqrt.c index 8226c1bb5145c28efd552743f769f889fa81dede..e2e0349bf0f31bdef5fdd99209500de7d1a96f74 100644 --- a/runtime/starpu/codelets/codelet_ztpmqrt.c +++ b/runtime/starpu/codelets/codelet_ztpmqrt.c @@ -109,7 +109,6 @@ void INSERT_TASK_ztpmqrt( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &side, sizeof(int), STARPU_VALUE, &trans, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_ztpqrt.c b/runtime/starpu/codelets/codelet_ztpqrt.c index f2acabc001765d533afb059216f36c62c0534864..df369b0b26ad82ec029094dd5401853109f8d1fa 100644 --- a/runtime/starpu/codelets/codelet_ztpqrt.c +++ b/runtime/starpu/codelets/codelet_ztpqrt.c @@ -68,7 +68,6 @@ void INSERT_TASK_ztpqrt( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &M, sizeof(int), STARPU_VALUE, &N, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_ztradd.c b/runtime/starpu/codelets/codelet_ztradd.c index ad0df54892fcab7b84d7b20a875f744ab6648e16..16ddd77e5034d6d7ebd2f06f46099f1ec73aa6ee 100644 --- a/runtime/starpu/codelets/codelet_ztradd.c +++ b/runtime/starpu/codelets/codelet_ztradd.c @@ -95,7 +95,6 @@ void INSERT_TASK_ztradd( const RUNTIME_option_t *options, /* Insert the task */ rt_starpu_insert_task( - options->sequence->comm, &cl_ztradd, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, sizeof(struct cl_ztradd_args_s), diff --git a/runtime/starpu/codelets/codelet_ztrasm.c b/runtime/starpu/codelets/codelet_ztrasm.c index a431e5b3baa2f6a3b1a5803068477fad9bdf685d..c0f14b574f70f44dee0b4914074556dc795c3f0e 100644 --- a/runtime/starpu/codelets/codelet_ztrasm.c +++ b/runtime/starpu/codelets/codelet_ztrasm.c @@ -62,7 +62,6 @@ void INSERT_TASK_ztrasm( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &storev, sizeof(int), STARPU_VALUE, &uplo, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_ztrmm.c b/runtime/starpu/codelets/codelet_ztrmm.c index db90a3d35d51900a20cba1ef62df0185b6a1ca99..01096c0cd71f348a1833e39708bb7e2f82d278a9 100644 --- a/runtime/starpu/codelets/codelet_ztrmm.c +++ b/runtime/starpu/codelets/codelet_ztrmm.c @@ -145,7 +145,6 @@ void INSERT_TASK_ztrmm( const RUNTIME_option_t *options, /* Insert the task */ rt_starpu_insert_task( - options->sequence->comm, &cl_ztrmm, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, sizeof(struct cl_ztrmm_args_s), diff --git a/runtime/starpu/codelets/codelet_ztrsm.c b/runtime/starpu/codelets/codelet_ztrsm.c index 02245623697ae69d71b59eb521a6b01a893fa34a..d9549a3bbd91c7d8c606646832ca5db79213a949 100644 --- a/runtime/starpu/codelets/codelet_ztrsm.c +++ b/runtime/starpu/codelets/codelet_ztrsm.c @@ -149,7 +149,6 @@ void INSERT_TASK_ztrsm( const RUNTIME_option_t *options, /* Insert the task */ rt_starpu_insert_task( - options->sequence->comm, &cl_ztrsm, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, sizeof(struct cl_ztrsm_args_s), diff --git a/runtime/starpu/codelets/codelet_ztrssq.c b/runtime/starpu/codelets/codelet_ztrssq.c index 885c80853010d7143f8ce217a98fe52f22c428a9..23e1c525a031a58bce8f19cbde50c6c99e46d58c 100644 --- a/runtime/starpu/codelets/codelet_ztrssq.c +++ b/runtime/starpu/codelets/codelet_ztrssq.c @@ -61,7 +61,6 @@ void INSERT_TASK_ztrssq( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &uplo, sizeof(int), STARPU_VALUE, &diag, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_ztrtri.c b/runtime/starpu/codelets/codelet_ztrtri.c index edf3b14980c5b170c30d7cc89c18b82fc1962832..36b33f132be869383b5e6dac82436be6eafea1e5 100644 --- a/runtime/starpu/codelets/codelet_ztrtri.c +++ b/runtime/starpu/codelets/codelet_ztrtri.c @@ -93,7 +93,6 @@ void INSERT_TASK_ztrtri( const RUNTIME_option_t *options, /* Insert the task */ rt_starpu_insert_task( - options->sequence->comm, &cl_ztrtri, /* Task codelet arguments */ STARPU_CL_ARGS, clargs, sizeof(struct cl_ztrtri_args_s), diff --git a/runtime/starpu/codelets/codelet_ztsmlq_hetra1.c b/runtime/starpu/codelets/codelet_ztsmlq_hetra1.c index 8cbdf5a0a8c0fce20c0e28a7b8ef0f583b1c3c2c..4aed2ed5a590fdfdc7c88f6e0005471e5735d4cb 100644 --- a/runtime/starpu/codelets/codelet_ztsmlq_hetra1.c +++ b/runtime/starpu/codelets/codelet_ztsmlq_hetra1.c @@ -86,7 +86,6 @@ void INSERT_TASK_ztsmlq_hetra1( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &side, sizeof(int), STARPU_VALUE, &trans, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_ztsmqr_hetra1.c b/runtime/starpu/codelets/codelet_ztsmqr_hetra1.c index ff47896bdb4816d3ddbe2d1bc088fc246ccd566a..ca9798845c33444be582a9bdaac3fed9a2da254a 100644 --- a/runtime/starpu/codelets/codelet_ztsmqr_hetra1.c +++ b/runtime/starpu/codelets/codelet_ztsmqr_hetra1.c @@ -86,7 +86,6 @@ void INSERT_TASK_ztsmqr_hetra1( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &side, sizeof(int), STARPU_VALUE, &trans, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_ztstrf.c b/runtime/starpu/codelets/codelet_ztstrf.c index d08962a95ce85634df0edd1f867e8368f1cb1f55..e9743232bd8a658e0f0aef9c317f3e618a8377a9 100644 --- a/runtime/starpu/codelets/codelet_ztstrf.c +++ b/runtime/starpu/codelets/codelet_ztstrf.c @@ -91,7 +91,6 @@ void INSERT_TASK_ztstrf( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &m, sizeof(int), STARPU_VALUE, &n, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zunmlq.c b/runtime/starpu/codelets/codelet_zunmlq.c index d3a445f7a90a06a8928e6bbd7da0d39ad4b15c88..dd4251dcc5d1660fb314da81a35f66ee6b155ea9 100644 --- a/runtime/starpu/codelets/codelet_zunmlq.c +++ b/runtime/starpu/codelets/codelet_zunmlq.c @@ -111,7 +111,6 @@ void INSERT_TASK_zunmlq( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &side, sizeof(int), STARPU_VALUE, &trans, sizeof(int), diff --git a/runtime/starpu/codelets/codelet_zunmqr.c b/runtime/starpu/codelets/codelet_zunmqr.c index 8cb39e8c74c02b0eabbcc3fc142e64b95ffb52d5..4640a678e21e58d3f30e7b1b4ba16bc29939fd1b 100644 --- a/runtime/starpu/codelets/codelet_zunmqr.c +++ b/runtime/starpu/codelets/codelet_zunmqr.c @@ -110,7 +110,6 @@ void INSERT_TASK_zunmqr( const RUNTIME_option_t *options, CHAMELEON_END_ACCESS_DECLARATION; rt_starpu_insert_task( - options->sequence->comm, codelet, STARPU_VALUE, &side, sizeof(int), STARPU_VALUE, &trans, sizeof(int), diff --git a/runtime/starpu/include/chameleon_starpu.h.in b/runtime/starpu/include/chameleon_starpu.h.in index bbaf1bbdb67b5027e73a3b04d15c6cb4ea7c682a..6a0b5929f8a9282de84cdccf9800f26e19796a80 100644 --- a/runtime/starpu/include/chameleon_starpu.h.in +++ b/runtime/starpu/include/chameleon_starpu.h.in @@ -130,20 +130,20 @@ void *RUNTIME_data_getaddr_withconversion( const RUNTIME_option_t *options, #if defined(CHAMELEON_USE_MPI) #if defined(CHAMELEON_RUNTIME_SYNC) -#define rt_starpu_insert_task( _comm_, _codelet_, ... ) \ - starpu_mpi_insert_task( (_comm_), (_codelet_), STARPU_TASK_SYNCHRONOUS, 1, ##__VA_ARGS__ ) +#define rt_starpu_insert_task( _codelet_, ... ) \ + starpu_mpi_insert_task( options->sequence->comm, (_codelet_), STARPU_TASK_SYNCHRONOUS, 1, ##__VA_ARGS__ ) #else -#define rt_starpu_insert_task( _comm_, _codelet_, ... ) \ - starpu_mpi_insert_task( (_comm_), (_codelet_), ##__VA_ARGS__ ) +#define rt_starpu_insert_task( _codelet_, ... ) \ + starpu_mpi_insert_task( options->sequence->comm, (_codelet_), ##__VA_ARGS__ ) #endif #else #if defined(CHAMELEON_RUNTIME_SYNC) -#define rt_starpu_insert_task( _comm_, _codelet_, ... ) \ +#define rt_starpu_insert_task( _codelet_, ... ) \ starpu_insert_task( (_codelet_), STARPU_TASK_SYNCHRONOUS, 1, ##__VA_ARGS__ ) #else -#define rt_starpu_insert_task( _comm_, _codelet_, ... ) \ +#define rt_starpu_insert_task( _codelet_, ... ) \ starpu_insert_task( (_codelet_), ##__VA_ARGS__ ) #endif