Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for node_id (0.66 sec)

  1. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

    Status TFSavedModelAPI::GetFunctions(
        int node_id,
        absl::flat_hash_map<std::string, ConcreteFunction*>* functions) {
      const auto& nodes = bundle_.saved_object_graph().nodes();
      if (node_id >= nodes.size()) {
        return errors::OutOfRange(
            "node_id ", node_id,
            " not found.  Maximum node ID: ", nodes.size() - 1);
      }
      const SavedObject* current_node = &nodes.Get(node_id);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_cluster_util.cc

      path.resize(path_size);
      for (int32_t node_id : path) {
        string ascii_art;
        if (node_id == dst) {
          ascii_art = "+-> ";
        } else if (node_id != src) {
          ascii_art = "|   ";
        } else {
          ascii_art = "+-- ";
        }
        absl::StrAppend(&description, ascii_art, node_name(node_id), "\n");
      }
      return description;
    }
    
    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/cc/framework/gradients.cc

          if (e->IsControlEdge() || !reachable_nodes[e->dst()->id()]) continue;
    
          auto const& pair = visited.insert(e->dst());
          if (pair.second) {
            int node_id = e->dst()->id();
            Node* last_output_node = p.second;
            if (output_nodes.find(node_id) != output_nodes.end()) {
              // We reached an output node.
              if (last_output_node != nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. src/text/template/parse/parse.go

    				newT.ParseName = t.ParseName
    				newT.startParse(t.funcs, t.lex, t.treeSet)
    				newT.parseDefinition()
    				continue
    			}
    			t.backup2(delim)
    		}
    		switch n := t.textOrAction(); n.Type() {
    		case nodeEnd, nodeElse:
    			t.errorf("unexpected %s", n)
    		default:
    			t.Root.append(n)
    		}
    	}
    }
    
    // parseDefinition parses a {{define}} ...  {{end}} template definition and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/memorymanager/policy_static.go

    	for _, b := range blocks {
    		releasedSize := b.Size
    		for _, nodeID := range b.NUMAAffinity {
    			machineState[nodeID].NumberOfAssignments--
    
    			// once we do not have any memory allocations on this node, clear node groups
    			if machineState[nodeID].NumberOfAssignments == 0 {
    				machineState[nodeID].Cells = []int{nodeID}
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 12 07:34:55 UTC 2023
    - 34K bytes
    - Viewed (0)
  6. pkg/apis/storage/validation/validation.go

    // validateCSINodeDriverNodeID tests if Name in CSINodeDriver is a valid node id.
    func validateCSINodeDriverNodeID(nodeID string, fldPath *field.Path, validationOpts CSINodeValidationOptions) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	// nodeID is always required
    	if len(nodeID) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath, nodeID))
    	}
    	maxLength := csiNodeIDMaxLength
    	if validationOpts.AllowLongNodeID {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 00:47:13 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. src/crypto/internal/hpke/testdata/rfc9180-vectors.json

    [{"Name":"DHKEM(X25519, HKDF-SHA256), HKDF-SHA256, AES-128-GCM","Setup":"mode: 0\nkem_id: 32\nkdf_id: 1\naead_id: 1\ninfo: 4f6465206f6e2061204772656369616e2055726e\nikmE: 7268600d403fce431561aef583ee1613527cff655c1343f29812e66706df3234\npkEm: 37fda3567bdbd628e88668c3c8d7e97d1d1253b6d4ea6d44c150f741f1bf4431\nskEm: 52c4a758a802cd8b936eceea314432798d5baf2d7e9235dc084ab1b9cfa2f736\nikmR: 6db9df30aa07dd42ee5e8181afdb977e538f5e1fec8a06223f33f7013e525037\npkRm: 3948cfe0ad1ddb695d780e59077195da6c5650...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. pkg/serviceaccount/claims.go

    		}
    		podName = podref.Name
    		podUID = podref.UID
    	}
    
    	var nodeName, nodeUID string
    	if noderef != nil {
    		switch {
    		case podref != nil:
    			if utilfeature.DefaultFeatureGate.Enabled(features.ServiceAccountTokenPodNodeInfo) {
    				// for pod-bound tokens, just extract the node claims
    				nodeName = noderef.Name
    				nodeUID = noderef.UID
    			}
    		case podref == nil:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

            val scheduledEntryNodeIds = mutableListOf<Int>()
            nodes.forEach { node ->
                write(node)
                val nodeId = scheduledNodeIds.size
                scheduledNodeIds[node] = nodeId
                if (node in work.entryNodes) {
                    scheduledEntryNodeIds.add(nodeId)
                }
                if (node is LocalTaskNode) {
                    scheduledNodeIds[node.prepareNode] = scheduledNodeIds.size
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

        auto node_it = nodes_.find(input_inst);
        TF_RET_CHECK(node_it != nodes_.end())
            << "Use of OpResult encountered before def!";
        if (mlir::isa<mlir::tf_executor::ControlType>(input_result.getType())) {
          graph_->AddControlEdge(node_it->second, dst_node,
                                 /*allow_duplicates=*/true);
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
Back to top