Mentions légales du service

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

Merge branch 'fix-warning-discard-const' into 'master'

Fix warning

See merge request !486
parents ab1ea264 659dce0d
No related branches found
No related tags found
1 merge request!486Fix warning
...@@ -133,7 +133,7 @@ void INSERT_TASK_gemmex_Astat( const RUNTIME_option_t *options, ...@@ -133,7 +133,7 @@ void INSERT_TASK_gemmex_Astat( const RUNTIME_option_t *options,
void (*callback)(void*); void (*callback)(void*);
int accessC; int accessC;
int exec = 0; int exec = 0;
char *cl_name = "gemmex_Astat"; const char *cl_name = "gemmex_Astat";
/* Handle cache */ /* Handle cache */
CHAMELEON_BEGIN_ACCESS_DECLARATION; CHAMELEON_BEGIN_ACCESS_DECLARATION;
...@@ -216,7 +216,7 @@ void INSERT_TASK_gemmex( const RUNTIME_option_t *options, ...@@ -216,7 +216,7 @@ void INSERT_TASK_gemmex( const RUNTIME_option_t *options,
void (*callback)(void*); void (*callback)(void*);
int accessC; int accessC;
int exec = 0; int exec = 0;
char *cl_name = "gemmex"; const char *cl_name = "gemmex";
if ( !(options->withcuda) ) { if ( !(options->withcuda) ) {
/* Fallback to cpu version */ /* Fallback to cpu version */
......
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