Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for mlir_components (0.33 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/tests/test_error_message.lit.pbtxt

    # RUN: not tfcompile --graph=%s --config=%s.config.pbtxt --mlir_components=Bridge --debug_info=%s.debug.pbtxt 2>&1 | FileCheck %s
    # RUN: not tfcompile --graph=%s --config=%s.config.pbtxt --mlir_components=None 2>&1 | FileCheck -check-prefix=OLD %s
    
    # Checks the error message produced by tfcompile with mlir_component
    # Checks that source debug information is used in the output error message and
    # the node x_y_sum = Add
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:32:15 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/aot/flags.h

      string target_cpu;
      string target_features;
      string entry_point;
      string cpp_class;
      string out_function_object;
      string out_metadata_object;
      string out_header;
      string out_session_module;
      string mlir_components;
      bool experimental_quantize = false;
    
      // Sanitizer pass options
      bool sanitize_dataflow = false;
      string sanitize_abilists_dataflow;
    
      // C++ codegen options
      bool gen_name_to_index = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 05 16:55:24 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/flags.cc

           "Output object file name containing optional metadata for the generated "
           "function."},
          {"out_session_module", &flags->out_session_module,
           "Output session module proto."},
          {"mlir_components", &flags->mlir_components,
           "The MLIR components to enable. Currently only Bridge is supported."},
          {"experimental_quantize", &flags->experimental_quantize,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 05 16:55:24 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  8. 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