Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for BackEdge (0.14 sec)

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

    // license that can be found in the LICENSE file.
    
    package ssa
    
    import (
    	"cmd/compile/internal/types"
    	"fmt"
    )
    
    // an edgeMem records a backedge, together with the memory
    // phi functions at the target of the backedge that must
    // be updated when a rescheduling check replaces the backedge.
    type edgeMem struct {
    	e Edge
    	m *Value // phi for memory at dest of e
    }
    
    // a rewriteTarget is a value-argindex pair indicating
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/shape_inference_test.cc

        auto next_iteration =
            ops::NextIteration(scope.WithOpName("while/NextIteration"), add);
    
        auto sink = ops::Identity(scope.WithOpName("sink"), exit);
    
        // Remove the dummy node and add the loop backedge.
        scope.graph()->RemoveNode(dummy.node());
        scope.graph()->AddEdge(next_iteration.node(), 0, merge.output.node(), 1);
    
        TF_EXPECT_OK(scope.ToGraph(&graph));
      }
    
      GraphShapeInfo shape_info;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/shape_inference.cc

    }
    
    Status PropagateShapes(Graph* graph,
                           const std::map<int, InferredShape>& arg_shapes,
                           const std::vector<BackEdgeHelper::BackEdge>& back_edges,
                           ShapeRefiner* shape_refiner) {
      std::map<const Node*, const Node*> merge_to_next_iteration;
      for (const auto& e : back_edges) {
        if (e.src->IsNextIteration() && e.dst->IsMerge()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top