Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for dump_nodes (0.62 sec)

  1. cluster/validate-cluster.sh

        echo "Computing number of nodes, NODE_INSTANCE_PREFIX=${NODE_INSTANCE_PREFIX}, REGION=${REGION}, EXPECTED_NUM_NODES=${EXPECTED_NUM_NODES}"
      fi
    else
      EXPECTED_NUM_NODES="${NUM_NODES}"
    fi
    
    if [[ "${REGISTER_MASTER_KUBELET:-}" == "true" ]]; then
      if [[ "${KUBERNETES_PROVIDER:-}" == "gce" ]]; then
        NUM_MASTERS=$(get-master-replicas-count)
      else
        NUM_MASTERS=1
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 06:35:39 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_cluster_util.cc

      return absl::OkStatus();
    }
    
    // Sorts control inputs of a graphdef so that they are deterministically
    // ordered.
    void SortControlInputs(GraphDef* gdef) {
      int64_t num_nodes = gdef->node_size();
      for (int64_t i = 0; i < num_nodes; ++i) {
        NodeDef* node = gdef->mutable_node(i);
        // Stable sort control inputs and leave the order of data inputs unchanged.
        std::stable_sort(node->mutable_input()->begin(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.cc

          // TODO(b/74949947): turn this back into an error status
          LOG(WARNING) << mutation_warning;
          session->graph->sessions[session].clear();
        }
    
        const auto num_nodes = graph.num_node_ids();
        if (session->last_num_graph_nodes < num_nodes) {
          // TODO(nolivia): check this on a subset of the graph instead of all of
          // it.
          status->status = graph::ValidateGraphHasNoCycle(session->graph->graph);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

          GetXlaAutoClusteringSummary(*graph_);
    
      VLOG(2) << "*** Clustering info for graph of size " << graph_->num_nodes();
      VLOG(2) << " Built " << auto_clustering_info.clusters_size()
              << " clusters, size "
              << RatioToString(auto_clustering_info.clustered_node_count(),
                               graph_->num_nodes());
    
      for (const XlaAutoClusteringSummary::Cluster& cluster :
           auto_clustering_info.clusters()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
Back to top