Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for mlir_components (0.21 sec)

  1. tensorflow/compiler/aot/tests/BUILD

                enable_xla_hlo_profiling = True,
                graph = "test_graph_tfmatmulandadd.pb",
                mlir_components = mlir_component,
                tags = [
                    "manual",
                    "no_mac",  # TODO(b/228273415)
                ],
            ),
        ]
        for suffix, mlir_component in tfcompile_test_dep_configs
    ]
    
    tfcompile_bench_tfmatmul_mkn = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/BUILD

        cpp_class = "AddComp",
        graph = "test_graph_tfadd.pbtxt",
        mlir_components = "None",
        tags = [
            "manual",
        ],
    )
    
    tf_library(
        name = "test_graph_tfadd_mlir_bridge",
        testonly = 1,
        config = "test_graph_tfadd.config.pbtxt",
        cpp_class = "AddComp",
        graph = "test_graph_tfadd.pbtxt",
        mlir_components = "Bridge",
        tags = [
            "manual",
        ],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/compile.cc

      bool use_mlir_bridge = false;
      if (!flags.mlir_components.empty() && flags.mlir_components != "None") {
        for (auto component : absl::StrSplit(flags.mlir_components, ',')) {
          if (component == "Bridge") {
            use_mlir_bridge = true;
          } else if (component == "HloLowering") {
            use_mlir_hlo_lowering = true;
          } else {
            return errors::Unknown("Unknown mlir_component ", component);
          }
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 08:28:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/tfcompile.bzl

        if enable_tracemes:
            traceme_flags = ["--xla_cpu_enable_xprof_traceme=true"]
        else:
            traceme_flags = ["--xla_cpu_enable_xprof_traceme=false"]
    
        mlir_flags = ["--mlir_components=" + mlir_components]
    
        srcs = [tfcompile_graph, config]
        debug_info_flags = []
        if debug_info:
            srcs.append(debug_info)
            debug_info_flags = ["--debug_info=$(location " + debug_info + ")"]
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/tests/tfcompile_test.cc

      const xla::Shape& muladd_result1 =
          ShapeUtil::GetTupleElementShape(muladd_result, 1);
      EXPECT_TRUE(ShapeUtil::Compatible(muladd_result1, f32_2x2));
    }
    
    // tf_compile with mlir_component=HloLowering does not currently support
    // profiling, so we disable the test case here rather than creating a new test
    // target that could allow more divergence.
    #if !defined(MHLO_LOWERING_TEST)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
Back to top