Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for WithNoClusterScoping (0.33 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass_test_helper.h

          return copy;
        }
    
        Options WithDeadnessAnalysis() {
          Options copy = *this;
          copy.disable_deadness_analysis = false;
          return copy;
        }
    
        Options WithNoClusterScoping() {
          Options copy = *this;
          copy.enable_cluster_scoping = false;
          return copy;
        }
    
        Options WithDeterministicClusterNames() {
          Options copy = *this;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 09 19:51:48 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

        TF_ASSERT_OK(build_staged_graph(&graph));
    
        TF_ASSERT_OK(MarkForCompilationPassTestHelper::MarkForCompilation(
            &graph,
            MarkForCompilationPassTestHelper::Options().WithNoClusterScoping()));
    
        std::unordered_map<string, string> clusters = GetClusters(*graph);
        EXPECT_EQ(clusters["add0"], clusters["add1"]);
        EXPECT_EQ(clusters["add0"], clusters["relu1"]);
    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