Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 122 for topology (0.13 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/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)
  4. 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)
  5. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

          auto& task_and_device = topology(x, y, z, core);
          if (task_and_device.task != -1)
            return DuplicateCoordinateErrorMsg(kTopologyAttr, x, y, z, core);
    
          task_and_device = {task, device};
        }
      }
    
      return topology;
    }
    
    // Determine execution devices when topology and device assignment are defined.
    // With a topology device coordinate to task and device mapping, device
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/mark_ops_for_outside_compilation.mlir

        %1 = "tf.UnsupportedOp"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
        %2 = "tf.Identity"(%1) : (tensor<i32>) -> tensor<i32>
        tf_device.return %2 : tensor<i32>
      }) {num_cores_per_replica = 1, topology =  "", device_assignment =  []} : () -> tensor<i32>
      func.return %0 : tensor<i32>
    }
    
    // -----
    
    func.func @unsupported_op_soft_placement_false() -> tensor<i32> {
      %0 = "tf_device.cluster"() ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 16:22:32 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  7. pkg/volume/csi/nodeinfomanager/nodeinfomanager.go

    // topology information.
    func updateTopologyLabels(topology map[string]string) nodeUpdateFunc {
    	return func(node *v1.Node) (*v1.Node, bool, error) {
    		if len(topology) == 0 {
    			return node, false, nil
    		}
    
    		for k, v := range topology {
    			if curVal, exists := node.Labels[k]; exists && curVal != v {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

          // Metadata op for cluster `cluster` with 1 replica, 1 core per replica and
          // with topology `<topology>`.
          "tf.TPUReplicateMetadata"() {_xla_compile_device_type = "TPU", _replication_info = "cluster", num_relicas = 1, num_cores_per_replica = 1, topology = "<topology>", device_assignment = [], padding_map = []} : () -> ()
          %replicated_input = "tf.TPUReplicatedInput"(%arg0) : (tensor<i32>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/cpumanager/cpu_manager_test.go

    				if rawMgr.policy.Name() == string(PolicyNone) {
    					if rawMgr.topology != nil {
    						t.Errorf("Expected topology to be nil for 'none' policy. Have: %q", rawMgr.topology)
    					}
    				}
    				if rawMgr.policy.Name() != string(PolicyNone) {
    					if rawMgr.topology == nil {
    						t.Errorf("Expected topology to be non-nil for policy '%v'. Have: %q", rawMgr.policy.Name(), rawMgr.topology)
    					}
    				}
    			}
    		})
    
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/cpumanager/policy_test.go

    limitations under the License.
    */
    
    package cpumanager
    
    import (
    	"k8s.io/kubernetes/pkg/kubelet/cm/cpumanager/topology"
    )
    
    var (
    	topoSingleSocketHT = &topology.CPUTopology{
    		NumCPUs:    8,
    		NumSockets: 1,
    		NumCores:   4,
    		CPUDetails: map[int]topology.CPUInfo{
    			0: {CoreID: 0, SocketID: 0, NUMANodeID: 0},
    			1: {CoreID: 1, SocketID: 0, NUMANodeID: 0},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 24 20:49:58 UTC 2021
    - 40.6K bytes
    - Viewed (0)
Back to top