Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for n_b (0.07 sec)

  1. tensorflow/compiler/jit/partially_decluster_pass_test.cc

      auto graph = std::make_unique<Graph>(OpRegistry::Global());
      TF_ASSERT_OK(root.ToGraph(graph.get()));
    
      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);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 23K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/compilability_check_util_test.cc

          /*Inputs*/ {"n_a:float", "n_b:float"},
          /*Outputs*/ {"n_c:float"},
          /*Attribute*/ {},
          // Node info
          {{{kCompilableFunctionNodeName},
            "Add",
            {"n_a", "n_b"},
            {{"T", DT_FLOAT}}}});
      *flib.add_function() = FunctionDefHelper::Define(
          /*Function*/ kUncompilableFunctionName,
          /*Inputs*/ {"n_a:float"},
          /*Outputs*/ {"n_c_uncompilable:float"},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 22.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

    TEST(XlaCompilationTest, PartitionedCallUnsupported) {
      FunctionDef compilable = FunctionDefHelper::Define(
          "CompilableFn", {"n_a:float", "n_b:float"}, {"n_c:float"}, {},
          {{{"n_c"}, "Add", {"n_a", "n_b"}, {{"T", DT_FLOAT}}}});
      FunctionDef uncompilable =
          FunctionDefHelper::Define("UncompilableFn", {"n_a:float"}, {"n_c:float"},
                                    {}, {{{"n_c"}, "UncompilableUnary", {"n_a"}}});
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
Back to top