Mentions légales du service

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

Merge branch 'issue24/warning_tuning' into 'master'

Fix issue 24

See merge request !37
parents 24263d4c a0741640
No related branches found
No related tags found
1 merge request!37Fix issue 24
Pipeline #
......@@ -115,11 +115,15 @@ int morse_rank(MORSE_context_t *morse)
**/
int morse_tune(MORSE_enum func, int M, int N, int NRHS)
{
MORSE_context_t *morse;
morse = morse_context_self();
if ( morse && morse->autotuning_enabled == MORSE_TRUE ) {
morse_warning( "morse_tune", "Autotunning not available for now" );
}
(void)func;
(void)M;
(void)N;
(void)NRHS;
morse_warning( "morse_tune", "Autotunning not available for now" );
return MORSE_SUCCESS;
}
......
......@@ -184,6 +184,9 @@ int main (int argc, char **argv)
MORSE_InitPar(ncores/nthreads_per_worker, ncudas, nthreads_per_worker);
else*/
MORSE_Init( ncores, ngpus);
MORSE_Disable(MORSE_AUTOTUNING);
MORSE_Set(MORSE_TILE_SIZE, 320 );
MORSE_Set(MORSE_INNER_BLOCK_SIZE, 48 );
argc -= 4;
argv += 4;
......
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