Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Narrowest (0.18 sec)

  1. pkg/kubelet/cm/topologymanager/numa_info.go

    	return numaInfo, nil
    }
    
    func (n *NUMAInfo) Narrowest(m1 bitmask.BitMask, m2 bitmask.BitMask) bitmask.BitMask {
    	if m1.IsNarrowerThan(m2) {
    		return m1
    	}
    	return m2
    }
    
    func (n *NUMAInfo) Closest(m1 bitmask.BitMask, m2 bitmask.BitMask) bitmask.BitMask {
    	// If the length of both bitmasks aren't the same, choose the one that is narrowest.
    	if m1.Count() != m2.Count() {
    		return n.Narrowest(m1, m2)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:14 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/topologymanager/policy.go

    		var best bitmask.BitMask
    		if (policyName != PolicySingleNumaNode) && opts.PreferClosestNUMA {
    			best = numaInfo.Closest(current.NUMANodeAffinity, candidate.NUMANodeAffinity)
    		} else {
    			best = numaInfo.Narrowest(current.NUMANodeAffinity, candidate.NUMANodeAffinity)
    		}
    		if best.IsEqual(current.NUMANodeAffinity) {
    			return current
    		}
    		return candidate
    	}
    
    	merger := HintMerger{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/policy_static.go

    // available CPUs and the number of CPUs being requested.
    //
    // It follows the convention of marking all hints that have the same number of
    // bits set as the narrowest matching NUMANodeAffinity with 'Preferred: true', and
    // marking all others with 'Preferred: false'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  4. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    produced Waves in several postures of the Prism. Now though it be but some very small and narrower parts of the Glass, by which these Waves for the most part are caused, yet they may seem to extend themselves over the whole Glass, because from the narrowest of those parts there are Colours of several Orders, that is, of several Rings, confusedly reflected, which by Refraction of the Prism are unfolded, separated, and, according to their degrees of Refraction, dispersed to several places, so as to constitute...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  5. src/testdata/Isaac.Newton-Opticks.txt

    it be but some very small and narrower parts of the Glass, by which
    these Waves for the most part are caused, yet they may seem to extend
    themselves over the whole Glass, because from the narrowest of those
    parts there are Colours of several Orders, that is, of several Rings,
    confusedly reflected, which by Refraction of the Prism are unfolded,
    separated, and, according to their degrees of Refraction, dispersed to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
Back to top