Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for outEdges (0.18 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    			measurement.Percentage(flatSum, rpt.total),
    			rpt.formatValue(cum),
    			measurement.Percentage(cum, rpt.total),
    			name)
    
    		// Print outgoing edges.
    		outEdges := n.Out.Sort()
    		for _, out := range outEdges {
    			var inline string
    			if out.Inline {
    				inline = " (inline)"
    			}
    			fmt.Fprintf(w, "%50s %s |   %s%s\n", rpt.formatValue(out.Weight),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/compiler/jit/build_xla_ops_pass.cc

      // from an XLA cluster.
      bool check_output_numerics;
    };
    
    void MoveOutgoingEdges(Graph* g, Node* old_node, Node* new_node) {
      std::vector<const Edge*> out_edges(old_node->out_edges().begin(),
                                         old_node->out_edges().end());
      for (const Edge* edge : out_edges) {
        // TODO(sanjoy): This does not update NodeDef inputs.  To be able to update
        // NodeDef inputs we first need to fix encapsulate_subgraphs_pass to fix up
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/node_matchers.h

    }
    
    // Matches the `idx`'th output of a node that matches `node`.
    ::testing::Matcher<impl::OutEdge> Out(int oidx,
                                          ::testing::Matcher<const Node*> node);
    
    // Matches the first output of a node that matches `node`.
    inline ::testing::Matcher<impl::OutEdge> Out(
        ::testing::Matcher<const Node*> node) {
      return Out(0, node);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/shape_inference.cc

              graph->AddControlEdge(var_node, const_node);
              std::vector<const Edge*> out_edges(n->out_edges().begin(),
                                                 n->out_edges().end());
              for (const Edge* e : out_edges) {
                if (e->IsControlEdge()) {
                  graph->AddControlEdge(const_node, e->dst());
                  graph->RemoveEdge(e);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    		delete(parent.Out, cur)
    
    		// Reconfigure every edge from the current node to now begin at the parent.
    		for _, outEdge := range cur.Out {
    			child := outEdge.Dest
    
    			delete(child.In, cur)
    			child.In[parent] = outEdge
    			parent.Out[child] = outEdge
    
    			outEdge.Src = parent
    			outEdge.Residual = true
    			// If the edge from the parent to the current node and the edge from the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

          deps->insert(edge->src());
        }
      }
    }
    
    // Adds the control outputs of `node` to `*deps`.
    void AddControlOutputs(const Node& node, absl::flat_hash_set<Node*>* deps) {
      for (const Edge* edge : node.out_edges()) {
        if (edge->IsControlEdge()) {
          deps->insert(edge->dst());
        }
      }
    }
    
    // Rewrite function to be passed to EncapsulateSubgraphsInFunctions that sorts
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/partially_decluster_pass.cc

        TF_RETURN_IF_ERROR(MemoryTypesForNode(graph.op_registry(), device_type,
                                              n->def(), &input_mtypes,
                                              &output_mtypes));
        for (const Edge* e : n->out_edges()) {
          Node* dst = e->dst();
    
          if (e->IsControlEdge()) {
            continue;
          }
    
          bool edge_incurs_extra_device_to_host_copy;
          if (output_mtypes[e->src_output()] == DEVICE_MEMORY) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/critical.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssa
    
    // critical splits critical edges (those that go from a block with
    // more than one outedge to a block with more than one inedge).
    // Regalloc wants a critical-edge-free CFG so it can implement phi values.
    func critical(f *Func) {
    	// maps from phi arg ID to the new block created for that argument
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 21:40:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/encapsulate_util.cc

        // Change all usage node to use the original node instead.
        Node* original_node = iter->second;
        std::vector<const Edge*> control_edges;
        std::vector<OutEdgeInfo> data_edges;
        for (auto e : n->out_edges()) {
          if (e->IsControlEdge()) {
            control_edges.push_back(e);
          } else {
            data_edges.push_back({e->dst(), e->src_output(), e->dst_input()});
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top