Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 52181919 authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

codelet/starpu: Silent unused variable in Release mode

parent e3d63aa2
No related branches found
No related tags found
1 merge request!464Fix GenPkgConfig name clash
...@@ -44,6 +44,7 @@ static void cl_zlacpy_starpu_func(void *descr[], void *cl_arg) ...@@ -44,6 +44,7 @@ static void cl_zlacpy_starpu_func(void *descr[], void *cl_arg)
static const struct starpu_data_interface_ops *interface_ops = &starpu_interface_cham_tile_ops; static const struct starpu_data_interface_ops *interface_ops = &starpu_interface_cham_tile_ops;
const struct starpu_data_copy_methods *copy_methods = interface_ops->copy_methods; const struct starpu_data_copy_methods *copy_methods = interface_ops->copy_methods;
struct cl_zlacpy_args_s *clargs = (struct cl_zlacpy_args_s *)cl_arg; struct cl_zlacpy_args_s *clargs = (struct cl_zlacpy_args_s *)cl_arg;
(void)clargs;
int workerid = starpu_worker_get_id_check(); int workerid = starpu_worker_get_id_check();
unsigned memory_node = starpu_worker_get_memory_node( workerid ); unsigned memory_node = starpu_worker_get_memory_node( workerid );
...@@ -52,6 +53,7 @@ static void cl_zlacpy_starpu_func(void *descr[], void *cl_arg) ...@@ -52,6 +53,7 @@ static void cl_zlacpy_starpu_func(void *descr[], void *cl_arg)
void *dst_interface = descr[1]; void *dst_interface = descr[1];
int rc; int rc;
(void)rc;
assert( clargs->displA == 0 ); assert( clargs->displA == 0 );
assert( clargs->displB == 0 ); assert( clargs->displB == 0 );
......
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