Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for outEdges (0.27 sec)

  1. src/cmd/compile/internal/ssa/prove.go

    			ft.unsat = true
    			if b.Func.pass.debug > 2 {
    				b.Func.Warnl(b.Pos, "block=%s outedge=%d %s=%d unsat", b, idx, c, val)
    			}
    		} else {
    			ft.limits[c.ID] = limit{val, val, uint64(val), uint64(val)}
    			if b.Func.pass.debug > 2 {
    				b.Func.Warnl(b.Pos, "block=%s outedge=%d %s=%d", b, idx, c, val)
    			}
    		}
    	default:
    		panic("unknown branch")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/deadness_analysis.cc

                  << insert_result.first->second << " to " << pred->ToString()
                  << " " << pred;
          insert_result.first->second = pred;
          if (should_revisit != nullptr) {
            for (const Edge* e : n->out_edges()) {
              (*should_revisit)[e->dst()->id()] = true;
            }
          }
        }
      }
    
      void SetPredicate(Node* n, absl::Span<const int> output_idxs, Predicate* pred,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

                 : nullptr;
    }
    
    bool MarkForCompilationPassImpl::IsSinkLike(const Cluster& cluster) {
      if (Node* n = GetOnlyNodeIn(cluster)) {
        return n->type_string() == "NoOp" && n->out_edges().size() == 1 &&
               (*n->out_edges().begin())->dst()->IsSink();
      }
    
      return false;
    }
    
    bool MarkForCompilationPassImpl::IsScalarIntegerResourceOperation(
        const Cluster& cluster) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

                     });
    
      // Add all the edges between copied nodes.
      for (auto entry : *node_images) {
        const Node* orig = entry.first;
        Node* image = entry.second;
        for (const Edge* out_edge : orig->out_edges()) {
          auto iter = node_images->find(out_edge->dst());
          if (iter != node_images->end()) {
            // The source and destination are both in the copied graph.
            (*pruned_graph)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
Back to top