Added comment to explain the classification of nodes in the cluster into power-classes.
This commit is contained in:
parent
13479e03a4
commit
6ac1b38883
1 changed files with 5 additions and 1 deletions
|
@ -12,7 +12,11 @@ var Hosts = []string{"stratos-001.cs.binghamton.edu", "stratos-002.cs.binghamton
|
|||
"stratos-005.cs.binghamton.edu", "stratos-006.cs.binghamton.edu",
|
||||
"stratos-007.cs.binghamton.edu", "stratos-008.cs.binghamton.edu"}
|
||||
|
||||
// Classification of the nodes in the cluster based on their power consumption.
|
||||
/*
|
||||
Classification of the nodes in the cluster based on their Thermal Design Power (TDP).
|
||||
The power classes are labelled in the decreasing order of the corresponding TDP, with class A nodes
|
||||
having the highest TDP and class C nodes having the lowest TDP.
|
||||
*/
|
||||
var PowerClasses = map[string]map[string]bool{
|
||||
"A": map[string]bool{
|
||||
"stratos-005.cs.binghamton.edu": true,
|
||||
|
|
Reference in a new issue