Mentions légales du service

Skip to content
Snippets Groups Projects

Fix warning

All threads resolved!
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
  • 659dce0d
    Fix warning · 659dce0d
    Philippe SWARTVAGHER authored
    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,
    ```
@@ -133,7 +133,7 @@ void INSERT_TASK_gemmex_Astat( const RUNTIME_option_t *options,
void (*callback)(void*);
int accessC;
int exec = 0;
char *cl_name = "gemmex_Astat";
const char *cl_name = "gemmex_Astat";
/* Handle cache */
CHAMELEON_BEGIN_ACCESS_DECLARATION;
@@ -216,7 +216,7 @@ void INSERT_TASK_gemmex( const RUNTIME_option_t *options,
void (*callback)(void*);
int accessC;
int exec = 0;
char *cl_name = "gemmex";
const char *cl_name = "gemmex";
if ( !(options->withcuda) ) {
/* Fallback to cpu version */
Loading