Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for OutEdgeMatcher (0.17 sec)

  1. tensorflow/compiler/jit/node_matchers.cc

    };
    
    // Matches a dst and dst_output on an input edge.  Today we only use this with
    // dst_output=0 but we will eventually need to support multi-output operations.
    class OutEdgeMatcher : public ::testing::MatcherInterface<OutEdge> {
     public:
      OutEdgeMatcher(::testing::Matcher<const Node*> src_matcher, int src_oidx)
          : src_matcher_(std::move(src_matcher)), src_oidx_(src_oidx) {}
    
      bool MatchAndExplain(
          OutEdge out_edge,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 03 16:15:20 UTC 2022
    - 16.8K bytes
    - Viewed (0)
Back to top