Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for FindNodeByName (0.32 sec)

  1. tensorflow/compiler/jit/clone_constants_for_better_clustering_test.cc

      std::unique_ptr<Graph> result;
      TF_ASSERT_OK(CloneConstantsForBetterClustering(root, &result));
    
      OutputTensor add1_operand;
      TF_ASSERT_OK(
          FindNodeByName(result.get(), "add1")->input_tensor(1, &add1_operand));
    
      OutputTensor add2_operand;
      TF_ASSERT_OK(
          FindNodeByName(result.get(), "add2")->input_tensor(1, &add2_operand));
    
      EXPECT_NE(add1_operand.node, add2_operand.node);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/partially_decluster_pass_test.cc

      TF_ASSERT_OK(PartiallyDecluster(&graph));
    
      Node* n_b = FindNodeByName(*graph, "b");
      ASSERT_NE(n_b, nullptr);
      EXPECT_EQ(GetXlaClusterForNode(*n_b), std::nullopt);
    
      Node* n_c = FindNodeByName(*graph, "c");
      ASSERT_NE(n_c, nullptr);
      EXPECT_EQ(GetXlaClusterForNode(*n_c), std::nullopt);
    
      Node* n_d = FindNodeByName(*graph, "d");
      ASSERT_NE(n_d, nullptr);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 23K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass_test.cc

          Attr(kXlaCompileTimeConstantInputsAttr, compile_time_constant_inputs),
          Inputs(m_input, m_begin_s64, m_dynamic_slice_size));
    
      Node* static_shaped_slice = testing::FindNodeByName(
          result.get(), "slice/static_shaped_slice/static_shaped_slice");
      ASSERT_NE(static_shaped_slice, nullptr);
      EXPECT_THAT(static_shaped_slice, m_dynamic_slice);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      testing::FindNodeByName(graph.get(), "A")
          ->set_assigned_device_name(xla_cpu_device);
      testing::FindNodeByName(graph.get(), "tanh0")
          ->set_assigned_device_name(xla_cpu_device);
      testing::FindNodeByName(graph.get(), "tanh1")
          ->set_assigned_device_name(xla_cpu_device);
      testing::FindNodeByName(graph.get(), "tanh2")
          ->set_assigned_device_name(xla_cpu_device);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/build_xla_ops_pass_test.cc

                  SessionOptions(), "/job:localhost/replica:0/task:0", &devices_)
                  .ok());
      }
    
     private:
      std::vector<std::unique_ptr<Device>> devices_;
    };
    
    using ::tensorflow::testing::FindNodeByName;
    using ::tensorflow::testing::matchers::Attr;
    using ::tensorflow::testing::matchers::CtrlDeps;
    using ::tensorflow::testing::matchers::Inputs;
    using ::tensorflow::testing::matchers::NodeWith;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/node_matchers.h

    }
    
    ::testing::Matcher<impl::OutEdge> Const(
        const ::tensorflow::Input::Initializer& val);
    }  // namespace matchers
    
    // If `g` has a node named `name` returns it, otherwise returns null.
    Node* FindNodeByName(Graph* g, absl::string_view name);
    }  // namespace testing
    
    void PrintTo(const Node* n, ::std::ostream* os);
    void PrintTo(Node* n, ::std::ostream* os);
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/node_matchers.cc

    ::testing::Matcher<impl::OutEdge> Out(
        int oidx, ::testing::Matcher<const Node*> node_matcher) {
      return ::testing::MakeMatcher(new OutEdgeMatcher(node_matcher, oidx));
    }
    }  // namespace matchers
    
    Node* FindNodeByName(Graph* g, absl::string_view name) {
      for (Node* n : g->nodes()) {
        if (n->name() == name) {
          return n;
        }
      }
    
      return nullptr;
    }
    }  // namespace testing
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 03 16:15:20 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

          {"cluster1:0", "cluster2:0"},
          {"cluster1:0", "mul:0"},
          {"cluster2:0", "mul:1"},
          {"x:0", "cluster1:0"}};
      EXPECT_EQ(expected_edges, GraphEdges(*graph));
    }
    
    const Node* FindNodeByName(const Graph& graph, const string& name) {
      for (const Node* node : graph.nodes()) {
        if (node->name() == name) return node;
      }
      return nullptr;
    }
    
    bool HasGuaranteeConstAttr(const Node& n) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
Back to top