Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 50 for node_def (0.28 sec)

  1. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.cc

        node_names->push_back(flag.name());
        // TOCO doesn't required `data_type` to be filled for every input.
        // If it's not filled, make it an empty string so the importer will use
        // the data type in the NodeDef.
        auto toco_data_type = flag.data_type();
        if (toco_data_type == ::toco::IODataType::IO_DATA_TYPE_UNKNOWN) {
          node_dtypes->push_back("");
        } else {
          node_dtypes->push_back(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_node_status.go

    	kl.recorder.Eventf(kl.nodeRef, eventType, event, "Node %s status is now: %s", kl.nodeName, event)
    }
    
    // recordEvent records an event for this node, the Kubelet's nodeRef is passed to the recorder
    func (kl *Kubelet) recordEvent(eventType, event, message string) {
    	kl.recorder.Eventf(kl.nodeRef, eventType, event, message)
    }
    
    // record if node schedulable change.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.cc

          op_, name_mapper_.GetUniqueName(op_),
          /*ignore_unregistered_attrs=*/true);
      if (!nodedef_or.ok()) {
        return op_->emitRemark() << "failed to convert op to NodeDef: "
                                 << nodedef_or.status().ToString();
      }
    
      if (failed(PrepareParams())) return failure();
    
      std::shared_ptr<const tensorflow::NodeProperties> props;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/passes/raise_to_tf.cc

      if (materialize_derived_attrs_) {
        for (const auto& attr : derived_attrs) {
          // Add or update the derived attribute with the value. Skip the fixed
          // element type attributes, in case they are present in the NodeDef.
          if (!fixed_elt_type_attrs_.contains(attr.first())) {
            new_op->setAttr(attr.first(), attr.second);
          }
        }
      }
      // Create the tfr.cast ops on the results and replace the uses of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/container_manager_linux.go

    		}
    
    		if !swap.IsTmpfsNoswapOptionSupported(mountUtil, nodeConfig.KubeletRootDir) {
    			nodeRef := nodeRefFromNode(string(nodeConfig.NodeName))
    			recorder.Event(nodeRef, v1.EventTypeWarning, events.PossibleMemoryBackedVolumesOnDisk,
    				"The tmpfs noswap option is not supported. Memory-backed volumes (e.g. secrets, emptyDirs, etc.) "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. cmd/kube-proxy/app/server_linux.go

    			const message = "CRI error: /sys is read-only: " +
    				"cannot modify conntrack limits, problems may arise later (If running Docker, see docker issue #24000)"
    			s.Recorder.Eventf(s.NodeRef, nil, v1.EventTypeWarning, err.Error(), "StartKubeProxy", message)
    		}
    	}
    
    	if s.Config.Conntrack.TCPEstablishedTimeout != nil && s.Config.Conntrack.TCPEstablishedTimeout.Duration > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

                       TFL_ReshapeOp, TFL_TransposeOp] in {
        def ReorderElementwiseAndMoveOperations#ValueOp#MoveOp : Pat<
          (ValueOp:$value (MoveOp:$move $input, $move_def)),
          (MoveOp (ValueOp $input), $move_def),
          [(SameElementType $input, $value), (HasOneUse $move)]>;
      }
    }
    
    // Returns truncated shape of a ranked-tensor.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

      # ${kube_env}['K8S_DIR'] cannot be afaik).
      $env_vars = @{
        "K8S_DIR" = ${kube_env}['K8S_DIR']
        # Typically 'C:\etc\kubernetes\node\bin' (not just 'C:\etc\kubernetes\node')
        "NODE_DIR" = ${kube_env}['NODE_DIR']
        "CNI_DIR" = ${kube_env}['CNI_DIR']
        "CNI_CONFIG_DIR" = ${kube_env}['CNI_CONFIG_DIR']
        "WINDOWS_CNI_STORAGE_PATH" = ${kube_env}['WINDOWS_CNI_STORAGE_PATH']
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. RELEASE.md

    *   `uniform_unit_scaling_initializer()` no longer takes a `full_shape` arg,
        instead relying on the partition info passed to the initializer function
        when it's called.
    *   The NodeDef protocol message is now defined in its own file `node_def.proto`
        `instead of graph.proto`.
    *   `ops.NoGradient` was renamed `ops.NotDifferentiable`. `ops.NoGradient` will
        be removed soon.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  10. cluster/gce/util.sh

    CSI_PROXY_VERSION: $(yaml-quote "${CSI_PROXY_VERSION}")
    CSI_PROXY_FLAGS: $(yaml-quote "${CSI_PROXY_FLAGS}")
    ENABLE_CSI_PROXY: $(yaml-quote "${ENABLE_CSI_PROXY}")
    K8S_DIR: $(yaml-quote "${WINDOWS_K8S_DIR}")
    NODE_DIR: $(yaml-quote "${WINDOWS_NODE_DIR}")
    LOGS_DIR: $(yaml-quote "${WINDOWS_LOGS_DIR}")
    CNI_DIR: $(yaml-quote "${WINDOWS_CNI_DIR}")
    CNI_CONFIG_DIR: $(yaml-quote "${WINDOWS_CNI_CONFIG_DIR}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top