Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for WHAT (0.15 sec)

  1. tensorflow/c/c_api_test.cc

      EXPECT_EQ(add, three_port.oper);
      EXPECT_EQ(1, three_port.index);
    
      // Serialize to GraphDef.
      GraphDef graph_def;
      ASSERT_TRUE(GetGraphDef(graph, &graph_def));
    
      // Validate GraphDef is what we expect.
      bool found_placeholder = false;
      bool found_scalar_const = false;
      bool found_add = false;
      for (const auto& n : graph_def.node()) {
        if (IsPlaceholder(n)) {
          EXPECT_FALSE(found_placeholder);
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
Back to top