Skip to content
Snippets Groups Projects
Commit bb08ed06 authored by Moe Jette's avatar Moe Jette
Browse files

Disable backfill scheduler plugin for BGL.

parent 1fd5eaf5
No related branches found
No related tags found
No related merge requests found
...@@ -51,6 +51,13 @@ static pthread_mutex_t thread_flag_mutex = PTHREAD_MUTEX_INITIALIZER; ...@@ -51,6 +51,13 @@ static pthread_mutex_t thread_flag_mutex = PTHREAD_MUTEX_INITIALIZER;
/**************************************************************************/ /**************************************************************************/
int init( void ) int init( void )
{ {
#ifdef HAVE_BGL
/* backfill scheduling on Blue Gene is possible,
* but difficult and would require substantial
* software development to accomplish */
error("Backfill scheduler incompatable with Blue Gene");
return SLURM_ERROR;
#else
pthread_attr_t attr; pthread_attr_t attr;
verbose( "Backfill scheduler plugin loaded" ); verbose( "Backfill scheduler plugin loaded" );
...@@ -69,6 +76,7 @@ int init( void ) ...@@ -69,6 +76,7 @@ int init( void )
pthread_mutex_unlock( &thread_flag_mutex ); pthread_mutex_unlock( &thread_flag_mutex );
return SLURM_SUCCESS; return SLURM_SUCCESS;
#endif
} }
/**************************************************************************/ /**************************************************************************/
......
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