Add MetricConfig in SubClusters.

This commit is contained in:
2023-03-20 16:27:36 +01:00
parent efde2cbb8e
commit 747f6d4e2d
2 changed files with 358 additions and 0 deletions

View File

@@ -50,6 +50,7 @@ type SubCluster {
flopRateSimd: MetricValue!
memoryBandwidth: MetricValue!
topology: Topology!
metricConfig: [MetricConfig!]!
}
type MetricValue {
@@ -86,6 +87,10 @@ type MetricConfig {
scope: MetricScope!
aggregation: String
timestep: Int!
peak: Float!
normal: Float!
caution: Float!
alert: Float!
subClusters: [SubClusterConfig]
}