Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for IsIdentity (0.36 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        Node* outside_compilation_node = pair.second;
        DataType data_type;
        TF_RET_CHECK(outside_compilation_node->IsIdentity() ||
                     outside_compilation_node->type_string() == "Placeholder");
        if (outside_compilation_node->IsIdentity()) {
          TF_RETURN_IF_ERROR(
              GetNodeAttr(outside_compilation_node->def(), "T", &data_type));
        } else {
          TF_RETURN_IF_ERROR(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/shape_inference.cc

          if (iter != merge_to_next_iteration.end()) {
            const Node *next_iter = iter->second, *node = next_iter;
            do {
              TF_RETURN_IF_ERROR(node->input_node(0, &node));
            } while (node->IsIdentity());
            const Node* switch_input;
            bool is_loop_invariant = node->IsSwitch() &&
                                     node->input_node(0, &switch_input).ok() &&
                                     switch_input == n;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. src/net/http/transfer.go

    		return false
    	}
    	// Many servers expect a Content-Length for these methods
    	if t.Method == "POST" || t.Method == "PUT" || t.Method == "PATCH" {
    		return true
    	}
    	if t.ContentLength == 0 && isIdentity(t.TransferEncoding) {
    		if t.Method == "GET" || t.Method == "HEAD" {
    			return false
    		}
    		return true
    	}
    
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_cluster_util.cc

        } else {
          ascii_art = "+-- ";
        }
        absl::StrAppend(&description, ascii_art, node_name(node_id), "\n");
      }
      return description;
    }
    
    bool AlwaysForwardsRefInput(const Node& node) { return node.IsIdentity(); }
    
    }  // namespace
    
    bool HasForwardedRefInput(const Node& node) {
      if (AlwaysForwardsRefInput(node)) {
        for (const Edge* incoming_edge : node.in_edges()) {
          if (incoming_edge->IsControlEdge()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        // this end, we don't count Identity and Constant nodes because they do not
        // enable interesting optimizations by themselves.
        int effective_cluster_size =
            (node->IsIdentity() || node->IsConstant()) ? 0 : 1;
    
        bool has_functional_control_flow = node->IsWhileNode() || node->IsIfNode();
    
        std::optional<DeadnessPredicate> deadness_predicate;
        if (deadness_analysis_) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. test-site/activator-launch-1.3.2.jar

    transform(org.apache.ivy.core.module.id.ModuleRevisionId); public final boolean isIdentity(); } org/apache/ivy/plugins/namespace/Namespace$2.class package org.apache.ivy.plugins.namespace; final synchronized class Namespace$2 implements NamespaceTransformer { void Namespace$2(Namespace); public final org.apache.ivy.core.module.id.ModuleRevisionId transform(org.apache.ivy.core.module.id.ModuleRevisionId); public final boolean isIdentity(); } org/apache/ivy/plugins/version/AbstractVersionMatch.class package...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
Back to top