Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 343 for topology_1 (0.12 sec)

  1. pkg/kubelet/apis/podresources/server_v1_test.go

    		{
    			ResourceName: "resource",
    			DeviceIds:    []string{"dev0", "dev1"},
    			Topology:     &podresourcesapi.TopologyInfo{Nodes: []*podresourcesapi.NUMANode{{ID: numaID}}},
    		},
    	}
    
    	cpus := []int64{12, 23, 30}
    
    	memory := []*podresourcesapi.ContainerMemory{
    		{
    			MemoryType: "memory",
    			Size_:      1073741824,
    			Topology:   &podresourcesapi.TopologyInfo{Nodes: []*podresourcesapi.NUMANode{{ID: numaID}}},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/extract_head_tail_outside_compilation.mlir

          "tf.A"(%arg0) {_xla_outside_compilation = "cluster1"} : (tensor<i32>) -> ()
          "tf.B"() : () -> ()
          "tf.C"() : () -> ()
          tf_device.return
        }) {num_cores_per_replica = 1, step_marker_location = "", topology = "", device_assignment = []} : () -> ()
        func.return
      }
    
      // CHECK-LABEL: func @head_single_outside_compiled_op_no_operands
      func.func @head_single_outside_compiled_op_no_operands() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  3. pkg/test/framework/components/cluster/kube/factory.go

    	"istio.io/istio/pkg/test/util/file"
    )
    
    const (
    	kubeconfigMetaKey = "kubeconfig"
    	vmSupportMetaKey  = "fakeVM"
    )
    
    func BuildKube(origCfg cluster.Config, topology cluster.Topology) (cluster.Cluster, error) {
    	cfg, err := validConfig(origCfg)
    	if err != nil {
    		return nil, err
    	}
    
    	kubeconfigPath := cfg.Meta.String(kubeconfigMetaKey)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/topologymanager/topology_manager.go

    	if err != nil {
    		return nil, err
    	}
    
    	klog.InfoS("Creating topology manager with policy per scope", "topologyPolicyName", topologyPolicyName, "topologyScopeName", topologyScopeName, "topologyPolicyOptions", opts)
    
    	numaInfo, err := NewNUMAInfo(topology, opts)
    	if err != nil {
    		return nil, fmt.Errorf("cannot discover NUMA topology: %w", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 12:43:16 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. releasenotes/notes/47574.yaml

      Before, when you set `topology.istio.io/network` on your Istio root namespace, you need to manually rollout the Ambient workloads to make the network change take effect. 
      Now, the network of Ambient workloads will be automatically updated even if they do not have a network label.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 22 06:59:24 UTC 2023
    - 733 bytes
    - Viewed (0)
  6. pkg/apis/core/annotation_key_constants.go

    	// pursue configuration for topology via specification). When both
    	// `service.kubernetes.io/topology-aware-hints` and
    	// `service.kubernetes.io/topology-mode` annotations are set, the value of
    	// `service.kubernetes.io/topology-aware-hints` has precedence.
    	DeprecatedAnnotationTopologyAwareHints = "service.kubernetes.io/topology-aware-hints"
    
    	// AnnotationTopologyMode can be used to enable or disable Topology Aware
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. pkg/test/loadbalancersim/lb_test.go

    			return cmp < 0
    		}
    
    		if cmp := strings.Compare(a.topology, b.topology); cmp != 0 {
    			return cmp < 0
    		}
    
    		// Sort algorithm in descending order so "round robin" is first
    		return strings.Compare(a.algorithm, b.algorithm) > 0
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 19 23:29:30 UTC 2022
    - 11K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/topologymanager/topology_manager_test.go

    				},
    				{
    					Id: 6,
    				},
    				{
    					Id: 7,
    				},
    				{
    					Id: 8,
    				},
    			},
    		},
    	}
    
    	for _, tc := range tcases {
    		topology := tc.topology
    
    		mngr, err := NewManager(topology, tc.policyName, "container", tc.policyOptions)
    		if tc.expectedError != nil {
    			if !strings.Contains(err.Error(), tc.expectedError.Error()) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 13:04:32 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/topologymanager/fake_topology_manager.go

    	return &fakeManager{}
    }
    
    // NewFakeManagerWithHint returns an instance of fake topology manager with specified topology hints
    func NewFakeManagerWithHint(hint *TopologyHint) Manager {
    	klog.InfoS("NewFakeManagerWithHint")
    	return &fakeManager{
    		hint:   hint,
    		policy: NewNonePolicy(),
    	}
    }
    
    // NewFakeManagerWithPolicy returns an instance of fake topology manager with specified policy
    func NewFakeManagerWithPolicy(policy Policy) Manager {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 02 18:02:07 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/cpumanager/policy_options.go

    func ValidateStaticPolicyOptions(opts StaticPolicyOptions, topology *topology.CPUTopology, topologyManager topologymanager.Store) error {
    	if opts.AlignBySocket {
    		// Not compatible with topology manager single-numa-node policy option.
    		if topologyManager.GetPolicy().Name() == topologymanager.PolicySingleNumaNode {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top