mirror of
				https://github.com/ClusterCockpit/cc-backend
				synced 2025-10-30 23:45:06 +01:00 
			
		
		
		
	Updates res
This commit is contained in:
		| @@ -12,7 +12,6 @@ import ( | ||||
| 	"github.com/99designs/gqlgen/graphql" | ||||
| 	"github.com/ClusterCockpit/cc-backend/internal/graph/model" | ||||
| 	"github.com/ClusterCockpit/cc-backend/internal/metricdata" | ||||
| 	"github.com/ClusterCockpit/cc-backend/pkg/archive" | ||||
| 	"github.com/ClusterCockpit/cc-backend/pkg/log" | ||||
| 	"github.com/ClusterCockpit/cc-backend/pkg/schema" | ||||
| 	// "github.com/ClusterCockpit/cc-backend/pkg/archive" | ||||
| @@ -48,14 +47,14 @@ func (r *queryResolver) rooflineHeatmap( | ||||
| 			continue | ||||
| 		} | ||||
|  | ||||
| 		metricConfigs := archive.GetCluster(job.Cluster).MetricConfig | ||||
| 		resolution := 0 | ||||
| 		// metricConfigs := archive.GetCluster(job.Cluster).MetricConfig | ||||
| 		// resolution := 0 | ||||
|  | ||||
| 		for _, mc := range metricConfigs { | ||||
| 			resolution = max(resolution, mc.Timestep) | ||||
| 		} | ||||
| 		// for _, mc := range metricConfigs { | ||||
| 		// 	resolution = max(resolution, mc.Timestep) | ||||
| 		// } | ||||
|  | ||||
| 		jobdata, err := metricdata.LoadData(job, []string{"flops_any", "mem_bw"}, []schema.MetricScope{schema.MetricScopeNode}, ctx, resolution) | ||||
| 		jobdata, err := metricdata.LoadData(job, []string{"flops_any", "mem_bw"}, []schema.MetricScope{schema.MetricScopeNode}, ctx, 0) | ||||
| 		if err != nil { | ||||
| 			log.Errorf("Error while loading roofline metrics for job %d", job.ID) | ||||
| 			return nil, err | ||||
|   | ||||
		Reference in New Issue
	
	Block a user