Mentions légales du service

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

codelet_zlacpy: correct callback

parent 5a36de61
No related branches found
No related tags found
1 merge request!522Small fixes for task refactoring
......@@ -106,7 +106,7 @@ insert_task_zlacpy_on_local_node( const RUNTIME_option_t *options,
starpu_data_handle_t handleA,
starpu_data_handle_t handleB )
{
void (*callback)(void*) = options->profiling ? cl_zlacpy_callback : NULL;
void (*callback)(void*) = NULL; // options->profiling ? cl_zlacpy_callback : NULL;
#if defined(CHAMELEON_RUNTIME_SYNC)
starpu_data_cpy_priority( handleB, handleA, 0, callback, NULL, options->priority );
#else
......@@ -120,7 +120,7 @@ insert_task_zlacpy_on_remote_node( const RUNTIME_option_t *options,
starpu_data_handle_t handleA,
starpu_data_handle_t handleB )
{
void (*callback)(void*) = options->profiling ? cl_zlacpy_callback : NULL;
void (*callback)(void*) = NULL; // options->profiling ? cl_zlacpy_callback : NULL;
#if defined(CHAMELEON_RUNTIME_SYNC)
starpu_mpi_data_cpy_priority( handleB, handleA, options->sequence->comm, 0, callback, NULL, options->priority );
#else
......
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