Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 60 for NODE_NAME (0.24 sec)

  1. hack/local-up-cluster.sh

      local nodes_stats="${KUBECTL} --kubeconfig '${CERT_DIR}/admin.kubeconfig' get nodes"
      local node_name=$HOSTNAME_OVERRIDE
      local system_node_wait_time=60
      local interval_time=2
      kube::util::wait_for_success "$system_node_wait_time" "$interval_time" "$nodes_stats | grep $node_name"
      if [ $? == "1" ]; then
        echo "time out on waiting $node_name exist"
        exit 1
      fi
    
      local system_node_ready_time=300
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. manifests/charts/istio-cni/templates/daemonset.yaml

                - name: REPAIR_RUN_AS_DAEMON
                  value: "true"
                - name: REPAIR_SIDECAR_ANNOTATION
                  value: "sidecar.istio.io/status"
                - name: NODE_NAME
                  valueFrom:
                    fieldRef:
                      apiVersion: v1
                      fieldPath: spec.nodeName
                - name: GOMEMLIMIT
                  valueFrom:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/partially_decluster_pass_test.cc

        if (node->name() == name) {
          return node;
        }
      }
      return nullptr;
    }
    
    bool GetInputsForNode(const Graph& graph, const string& node_name,
                          std::vector<Node*>* inputs) {
      const Node* node = FindNodeByName(graph, node_name);
      if (node == nullptr) {
        return false;
      }
      for (const Edge* e : node->in_edges()) {
        inputs->push_back(e->src());
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 23K bytes
    - Viewed (0)
  4. manifests/charts/gateways/istio-egress/templates/deployment.yaml

              {{- else }}
                value: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}.{{ .Values.global.istioNamespace }}.svc:15012
              {{- end }}
              - name: NODE_NAME
                valueFrom:
                  fieldRef:
                    apiVersion: v1
                    fieldPath: spec.nodeName
              - name: POD_NAME
                valueFrom:
                  fieldRef:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/codegen.cc

    )";
        const tf2xla::Variable& var = config.variable(i - config.feed_size());
        rewrites.emplace_back("{{MAYBE_CONST}}", var.readonly() ? "const " : "");
        *methods += RewriteWithName(
            var.name().empty() ? var.node_name() : var.name(), code, rewrites);
      }
      return absl::OkStatus();
    }
    
    // Generate shape infos for args (inputs).
    Status GenArgShapeInfos(const xla::ProgramShapeProto& ps, string* infos) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/compile.cc

      TF_RETURN_IF_ERROR(ValidateConfig(config));
      if (flags.dump_fetch_nodes) {
        std::set<string> nodes;
        for (const tf2xla::Fetch& fetch : config.fetch()) {
          nodes.insert(fetch.id().node_name());
        }
        std::cout << absl::StrJoin(nodes, ",");
        return absl::OkStatus();
      }
    
      // Read and initialize the graph.
      if (flags.graph.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 08:28:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

                                         &token_input_node_names));
          for (const string& node_name : token_input_node_names) {
            if (node_name == kXlaTokenArgNodeName) {
              continue;
            }
    
            auto iter = host_compute_nodes.find(node_name);
            TF_RET_CHECK(iter != host_compute_nodes.end());
            graph_out->AddControlEdge(iter->second, host_compute_node);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

              {{- else }}
                value: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}.{{ .Values.global.istioNamespace }}.svc:15012
              {{- end }}
              - name: NODE_NAME
                valueFrom:
                  fieldRef:
                    apiVersion: v1
                    fieldPath: spec.nodeName
              - name: POD_NAME
                valueFrom:
                  fieldRef:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/ops.h

      Input(const std::string& name, int32_t i, DataType dt)
          : node_name_(name), index_(i), data_type_(dt) {}
    
      Node* node() const { return output_.node(); }
      std::string node_name() const { return node_name_; }
      int32 index() const { return node_name_.empty() ? output_.index() : index_; }
      DataType data_type() const { return data_type_; }
      Status status() const { return status_; }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.py

          raise ValueError(
              'UnitWiseQuantizationSpec must contain at least one unit.'
          )
    
        for unit in unitwise_spec.unit:
          if not unit.op_type and not unit.node_name:
            raise ValueError('Either `op_type` or `node_name` must be specified.')
    
        _populate_quantization_component_spec(unitwise_spec.quantization_method)
    
        component_specs = (
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top