Skip to content
Snippets Groups Projects
Commit 52b6eda1 authored by Morris Jette's avatar Morris Jette
Browse files

Change verbosity of message

Change error() to verbose(). New logic is needed to address this issue
   once we know how to determine the KNL MCDRAM size.
parent 8eca4935
No related branches found
No related tags found
No related merge requests found
......@@ -1110,7 +1110,6 @@ extern bool node_features_p_node_power(void)
extern int node_features_p_node_update(char *active_features,
bitstr_t *node_bitmap)
{
//FIXME: Need to get HBM details for implementation.
int i, i_first, i_last;
int rc = SLURM_SUCCESS;
uint16_t mcdram_inx;
......@@ -1118,7 +1117,9 @@ extern int node_features_p_node_update(char *active_features,
struct node_record *node_ptr;
if (mcdram_per_node == NULL) {
error("%s: mcdram_per_node == NULL", __func__);
//FIXME: Additional logic is needed to determine the available MCDRAM space
//FIXME: Additional logic will also be required to handle heterogeneous sizes
verbose("%s: mcdram_per_node is NULL", __func__);
return SLURM_ERROR;
}
mcdram_inx = _knl_mcdram_parse(active_features, ",");
......
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