pkg/scheduler/api/helpers/helpers.go (57 lines of code) (raw):

/* Copyright 2018 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package helpers import ( "math" v1 "k8s.io/api/core/v1" "volcano.sh/volcano/pkg/scheduler/api" ) // Min is used to find the min of two resource types func Min(l, r *api.Resource) *api.Resource { res := &api.Resource{} res.MilliCPU = math.Min(l.MilliCPU, r.MilliCPU) res.Memory = math.Min(l.Memory, r.Memory) if l.ScalarResources == nil || r.ScalarResources == nil { return res } res.ScalarResources = map[v1.ResourceName]float64{} for lName, lQuant := range l.ScalarResources { res.ScalarResources[lName] = math.Min(lQuant, r.ScalarResources[lName]) } return res } // Max returns the resource object with larger value in each dimension. func Max(l, r *api.Resource) *api.Resource { res := &api.Resource{} res.MilliCPU = math.Max(l.MilliCPU, r.MilliCPU) res.Memory = math.Max(l.Memory, r.Memory) if l.ScalarResources == nil && r.ScalarResources == nil { return res } res.ScalarResources = map[v1.ResourceName]float64{} if l.ScalarResources != nil { for lName, lQuant := range l.ScalarResources { if lQuant > 0 { res.ScalarResources[lName] = lQuant } } } if r.ScalarResources != nil { for rName, rQuant := range r.ScalarResources { if rQuant > 0 { maxQuant := math.Max(rQuant, res.ScalarResources[rName]) res.ScalarResources[rName] = maxQuant } } } return res } // Share is used to determine the share func Share(l, r float64) float64 { var share float64 if r == 0 { if l == 0 { share = 0 } else { share = 1 } } else { share = l / r } return share }