Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for deadness_analysis_test (0.28 sec)

  1. tensorflow/compiler/jit/deadness_analysis_test.cc

        const Output& loop_cond, int32_t value) {
      return CreateDependentLoopInvariantValue(
          root, prefix, frame_name, loop_cond,
          ops::Const(root.WithOpName(prefix + "/init"), value));
    }
    
    TEST(DeadnessAnalysisTest, BasicPositive) {
      Scope root = Scope::NewRootScope().ExitOnError();
    
      ops::Switch sw = CreateSwitch(root, "0");
      Output add =
          ops::Add(root.WithOpName("add"), sw.output_true, sw.output_false);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/BUILD

            "//tensorflow/core:test_main",
            "//tensorflow/core:testlib",
        ],
    )
    
    tf_cc_test(
        name = "deadness_analysis_test",
        size = "small",
        srcs = [
            "deadness_analysis_internal.h",
            "deadness_analysis_test.cc",
        ],
        deps = [
            ":common",
            ":compilation_passes",
            "//tensorflow/cc:cc_ops",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
Back to top