Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 76 of 76 for numaNodes (0.31 sec)

  1. tensorflow/c/kernels_experimental.cc

      const Variant& v = input.scalar<Variant>()();
      // DT_VARIANT tensors must be allocated on CPU since they wrap C++
      // objects which can not be efficiently represented in GPU memory.
      int numa_node = cc_ctx->device()->NumaNode();
      Tensor out(::tensorflow::cpu_allocator(numa_node), ::tensorflow::DT_VARIANT,
                 ::tensorflow::TensorShape({}));
      Variant* out_v = &(out.scalar<Variant>()());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:12:29 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  2. 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)
  3. pkg/kubelet/apis/config/types.go

    // credential plugin.
    type ExecEnvVar struct {
    	Name  string
    	Value string
    }
    
    // MemoryReservation specifies the memory reservation of different types for each NUMA node
    type MemoryReservation struct {
    	NumaNode int32
    	Limits   v1.ResourceList
    }
    
    // ShutdownGracePeriodByPodPriority specifies the shutdown grace period for Pods based on their associated priority class value
    type ShutdownGracePeriodByPodPriority struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. pkg/controller/daemon/daemon_controller_test.go

    			},
    			Allocatable: v1.ResourceList{
    				v1.ResourcePods: resource.MustParse("100"),
    			},
    		},
    	}
    }
    
    func addNodes(nodeStore cache.Store, startIndex, numNodes int, label map[string]string) {
    	for i := startIndex; i < startIndex+numNodes; i++ {
    		nodeStore.Add(newNode(fmt.Sprintf("node-%d", i), label))
    	}
    }
    
    func newPod(podName string, nodeName string, label map[string]string, ds *apps.DaemonSet) *v1.Pod {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                                         node->name(),
                                         "' is missing attribute 'index'");
    
        auto index = attr->i();
        const int num_nodes = nodes->size();
        if (num_nodes < index + 1) nodes->resize(index + 1);
    
        if ((*nodes)[index].node != nullptr)
          return errors::InvalidArgument(node->type_string(), " node '",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    							Description: "MinCandidateNodesAbsolute is the absolute minimum number of candidates to shortlist. The likely number of candidates enumerated for dry running preemption is given by the formula: numCandidates = max(numNodes * minCandidateNodesPercentage, minCandidateNodesAbsolute) We say \"likely\" because there are other factors such as PDB violations that play a role in the number of candidates shortlisted. Must be at least 0 nodes. Defaults to 100 nodes if unspecified.",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top