Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 659dce0d authored by Philippe SWARTVAGHER's avatar Philippe SWARTVAGHER
Browse files

Fix warning

Otherwise, it triggers:
```
runtime/starpu/codelets/codelet_gemmex.c:176:13: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
  176 |     cl_name = chameleon_codelet_name( cl_name, 3,
```
parent ab1ea264
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