Mentions légales du service

Skip to content
Snippets Groups Projects

Add Out-of-Core option

Merged THIBAULT Samuel requested to merge thibault/chameleon:ooc into master
Files
12
+ 5
1
@@ -115,11 +115,15 @@ int morse_rank(MORSE_context_t *morse)
@@ -115,11 +115,15 @@ int morse_rank(MORSE_context_t *morse)
**/
**/
int morse_tune(MORSE_enum func, int M, int N, int NRHS)
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)func;
(void)M;
(void)M;
(void)N;
(void)N;
(void)NRHS;
(void)NRHS;
morse_warning( "morse_tune", "Autotunning not available for now" );
return MORSE_SUCCESS;
return MORSE_SUCCESS;
}
}
Loading