2019-10-21 14:50:16 +02:00
|
|
|
{
|
|
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
|
|
"title": "HPC Cluster description",
|
|
|
|
"description": "Meta data information of a HPC cluster",
|
|
|
|
"type": "object",
|
|
|
|
"properties":{
|
|
|
|
"cluster_id": {
|
|
|
|
"description": "The unique identifier of a cluster",
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"processor_type": {
|
|
|
|
"description": "Processor type",
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"sockets_per_node": {
|
|
|
|
"description": "Number of sockets per node",
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"cores_per_socket": {
|
|
|
|
"description": "Number of cores per socket",
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"threads_per_core": {
|
|
|
|
"description": "Number of SMT threads per core",
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"flop_rate_scalar": {
|
2021-11-26 09:15:50 +01:00
|
|
|
"description": "Theoretical node peak flop rate for scalar code in GFlops/s",
|
2019-10-21 14:50:16 +02:00
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"flop_rate_simd": {
|
2021-11-26 09:15:50 +01:00
|
|
|
"description": "Theoretical node peak flop rate for SIMD code in GFlops/s",
|
2019-10-21 14:50:16 +02:00
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"memory_bandwidth": {
|
2021-11-26 09:15:50 +01:00
|
|
|
"description": "Theoretical node peak memory bandwidth in GB/s",
|
2019-10-21 14:50:16 +02:00
|
|
|
"type": "integer"
|
2021-04-23 07:14:53 +02:00
|
|
|
},
|
|
|
|
"metric_config": {
|
|
|
|
"description": "Metric specifications",
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "object",
|
|
|
|
"properties":{
|
|
|
|
"name": {
|
|
|
|
"description": "Metric name",
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"unit": {
|
|
|
|
"description": "Metric unit",
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"sampletime": {
|
|
|
|
"description": "Frequency of timeseries points",
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"peak": {
|
|
|
|
"type": "number"
|
|
|
|
},
|
|
|
|
"normal": {
|
|
|
|
"type": "number"
|
|
|
|
},
|
|
|
|
"caution": {
|
|
|
|
"type": "number"
|
|
|
|
},
|
|
|
|
"alert": {
|
|
|
|
"type": "number"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-10-21 14:50:16 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"required":[
|
|
|
|
"cluster_id",
|
|
|
|
"processor_type",
|
|
|
|
"sockets_per_node",
|
|
|
|
"cores_per_socket",
|
|
|
|
"threads_per_core",
|
|
|
|
"flop_rate_scalar",
|
|
|
|
"flop_rate_simd",
|
|
|
|
"memory_bandwidth"
|
|
|
|
]
|
|
|
|
}
|