Mentions légales du service

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

codelet_zgemm/symm/hemm: fix typo in chameleon_error message

parent f9ad0f37
No related branches found
No related tags found
1 merge request!522Small fixes for task refactoring
Pipeline #1126220 passed
...@@ -373,7 +373,7 @@ void __INSERT_TASK_zgemm( const RUNTIME_option_t *options, ...@@ -373,7 +373,7 @@ void __INSERT_TASK_zgemm( const RUNTIME_option_t *options,
if ( ret == -ENODEV ) { if ( ret == -ENODEV ) {
task->destroy = 0; task->destroy = 0;
starpu_task_destroy( task ); starpu_task_destroy( task );
chameleon_error( "INSERT_TASK_zpotrf", "Failed to submit the task to StarPU" ); chameleon_error( "INSERT_TASK_zgemm", "Failed to submit the task to StarPU" );
return; return;
} }
} }
......
...@@ -341,7 +341,7 @@ void __INSERT_TASK_zhemm( const RUNTIME_option_t *options, ...@@ -341,7 +341,7 @@ void __INSERT_TASK_zhemm( const RUNTIME_option_t *options,
if ( ret == -ENODEV ) { if ( ret == -ENODEV ) {
task->destroy = 0; task->destroy = 0;
starpu_task_destroy( task ); starpu_task_destroy( task );
chameleon_error( "INSERT_TASK_zpotrf", "Failed to submit the task to StarPU" ); chameleon_error( "INSERT_TASK_zhemm", "Failed to submit the task to StarPU" );
return; return;
} }
} }
......
...@@ -342,7 +342,7 @@ void __INSERT_TASK_zsymm( const RUNTIME_option_t *options, ...@@ -342,7 +342,7 @@ void __INSERT_TASK_zsymm( const RUNTIME_option_t *options,
if ( ret == -ENODEV ) { if ( ret == -ENODEV ) {
task->destroy = 0; task->destroy = 0;
starpu_task_destroy( task ); starpu_task_destroy( task );
chameleon_error( "INSERT_TASK_zpotrf", "Failed to submit the task to StarPU" ); chameleon_error( "INSERT_TASK_zsymm", "Failed to submit the task to StarPU" );
return; return;
} }
} }
......
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