Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for numa_node (0.14 sec)

  1. tensorflow/c/experimental/stream_executor/stream_executor.cc

        if (device_.pci_bus_id != nullptr) {
          builder.set_pci_bus_id(device_.pci_bus_id);
        }
    
        if (device_fns_->get_numa_node != nullptr) {
          int32_t numa_node = device_fns_->get_numa_node(&device_);
          if (numa_node >= 0) {
            builder.set_numa_node(numa_node);
          }
        }
    
        if (device_fns_->get_memory_bandwidth != nullptr) {
          int64_t memory_bandwidth = device_fns_->get_memory_bandwidth(&device_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/stream_executor/stream_executor_test.cc

      ASSERT_EQ(description.name(), "TestName");
      ASSERT_EQ(description.device_vendor(), "TestVendor");
      ASSERT_EQ(description.pci_bus_id(), "TestPCIBusId");
      ASSERT_EQ(description.numa_node(), 123);
      ASSERT_EQ(description.memory_bandwidth(), 54);
    }
    
    TEST_F(StreamExecutorTest, DeviceDescriptionNumaNodeNotSet) {
      static const char* hardware_name = "TestName";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 19:54:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. cluster/gce/config-common.sh

    # limitations under the License.
    
    # Returns the total number of Linux and Windows nodes in the cluster.
    #
    # Vars assumed:
    #   NUM_NODES
    #   NUM_WINDOWS_NODES
    function get-num-nodes {
      echo "$((NUM_NODES + NUM_WINDOWS_NODES))"
    }
    
    # Vars assumed:
    #   NUM_NODES
    #   NUM_WINDOWS_NODES
    function get-master-size {
      local suggested_master_size=2
      if [[ "$(get-num-nodes)" -gt "10" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:06:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

            VLOG(2) << "Graph #nodes " << (*graph)->num_nodes() << " #edges "
                    << (*graph)->num_edges();
            is_module_updated = true;
          }
        } else if (pass_state == MlirOptimizationPassState::FallbackEnabled) {
          VLOG(2) << "Run MLIR graph optimization pass with fallback: "
                  << StringRefToView(name);
          VLOG(2) << "Graph #nodes " << (*graph)->num_nodes() << " #edges "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. hack/ginkgo-e2e.sh

      --prepull-images="${PREPULL_IMAGES:-false}" \
      ${MASTER_OS_DISTRIBUTION:+"--master-os-distro=${MASTER_OS_DISTRIBUTION}"} \
      ${NODE_OS_DISTRIBUTION:+"--node-os-distro=${NODE_OS_DISTRIBUTION}"} \
      ${NUM_NODES:+"--num-nodes=${NUM_NODES}"} \
      ${E2E_REPORT_DIR:+"--report-dir=${E2E_REPORT_DIR}"} \
      ${E2E_REPORT_PREFIX:+"--report-prefix=${E2E_REPORT_PREFIX}"} \
      "${suite_args[@]:+${suite_args[@]}}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-kubeapiserver.sh

      fi
      if [[ -n "${NUM_NODES:-}" ]]; then
        # If the cluster is large, increase max-requests-inflight limit in apiserver.
        if [[ "${NUM_NODES}" -gt 3000 ]]; then
          params=$(append-param-if-not-present "${params}" "max-requests-inflight" 3000)
          params=$(append-param-if-not-present "${params}" "max-mutating-requests-inflight" 1000)
        elif [[ "${NUM_NODES}" -gt 500 ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/manager_test.go

    			"dev1": {
    				ID: "dev1",
    				Topology: &pluginapi.TopologyInfo{
    					Nodes: []*pluginapi.NUMANode{
    						{
    							ID: 1,
    						},
    					},
    				},
    			},
    			"dev2": {
    				ID: "dev2",
    				Topology: &pluginapi.TopologyInfo{
    					Nodes: []*pluginapi.NUMANode{
    						{
    							ID: 1,
    						},
    						{
    							ID: 2,
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/container_manager_linux.go

    			MemoryType: string(b.Type),
    			Size_:      b.Size,
    			Topology: &podresourcesapi.TopologyInfo{
    				Nodes: []*podresourcesapi.NUMANode{},
    			},
    		}
    
    		for _, numaNodeID := range b.NUMAAffinity {
    			containerMemory.Topology.Nodes = append(containerMemory.Topology.Nodes, &podresourcesapi.NUMANode{ID: int64(numaNodeID)})
    		}
    
    		containerMemories = append(containerMemories, &containerMemory)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

    MASTER_KEY: $(yaml-quote "${MASTER_KEY_BASE64:-}")
    KUBECFG_CERT: $(yaml-quote "${KUBECFG_CERT_BASE64:-}")
    KUBECFG_KEY: $(yaml-quote "${KUBECFG_KEY_BASE64:-}")
    KUBELET_APISERVER: $(yaml-quote "${KUBELET_APISERVER:-}")
    NUM_NODES: $(yaml-quote "${NUM_NODES}")
    STORAGE_BACKEND: $(yaml-quote "${STORAGE_BACKEND:-etcd3}")
    STORAGE_MEDIA_TYPE: $(yaml-quote "${STORAGE_MEDIA_TYPE:-}")
    ENABLE_GARBAGE_COLLECTOR: $(yaml-quote "${ENABLE_GARBAGE_COLLECTOR:-}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. cluster/log-dump/log-dump.sh

      local -r cloud_provider="${KUBERNETES_PROVIDER}"
      local -r enable_hollow_node_logs="${ENABLE_HOLLOW_NODE_LOGS:-false}"
      local -r logexport_sleep_seconds="$(( 90 + NUM_NODES / 3 ))"
      if [[ -z "${ZONE_NODE_SELECTOR_DISABLED:-}" ]]; then
        local -r node_selector="${ZONE_NODE_SELECTOR_LABEL:-topology.kubernetes.io/zone}: ${ZONE}"
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
Back to top