Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for gen_name_to_index (0.27 sec)

  1. tensorflow/compiler/aot/flags.cc

           "Enable DataFlow Sanitizer pass."},
          {"sanitize_abilists_dataflow", &flags->sanitize_abilists_dataflow,
           "Comma separated list of ABIList file paths."},
          {"gen_name_to_index", &flags->gen_name_to_index,
           "Generate name-to-index data for Lookup{Arg,Result}Index methods."},
          {"gen_program_shape", &flags->gen_program_shape,
           "Generate program shape data for the ProgramShape method."},
      };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 05 16:55:24 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/flags.h

      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;
      bool gen_program_shape = false;
    };
    
    // Appends to flag_list a tensorflow::Flag for each field in MainFlags.
    void AppendMainFlags(std::vector<Flag>* flag_list, MainFlags* flags);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 05 16:55:24 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/compile.cc

      TF_RETURN_IF_ERROR(
          WriteStringToFile(env, flags.out_function_object,
                            absl::string_view(obj.data(), obj.size())));
      CodegenOpts codegen_opts;
      codegen_opts.gen_name_to_index = flags.gen_name_to_index;
      codegen_opts.gen_program_shape = flags.gen_program_shape;
      codegen_opts.target_triple = flags.target_triple;
      // Set the XLA Runtime bit if this is an HloLowering.
    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/codegen.h

      // header.  If empty, all symbols will be in the global namespace.
      std::vector<string> namespaces;
    
      // If true, generate name-to-index data for Lookup{Arg,Result}Index methods.
      bool gen_name_to_index = false;
    
      // If true, generate program shape data for the ProgramShape method.
      bool gen_program_shape = false;
    
      // If true, emit a serialized HloProfilePrinterData protobuf that can be used
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 01 22:03:27 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/tests/BUILD

                mlir_components = mlir_component,
                tags = [
                    "manual",
                    "no_mac",  # TODO(b/228273415)
                ],
                tfcompile_flags = "--gen_name_to_index --gen_program_shape",
            ),
            tf_library(
                name = "test_graph_tfsplits" + suffix,
                testonly = 1,
                config = "test_graph_tfsplits.config.pbtxt",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/codegen_test.cc

      LLVMInitializeX86TargetMC();
      LLVMInitializeX86AsmPrinter();
    
      CodegenOpts opts;
      opts.class_name = "MyClass";
      opts.target_triple = "x86_64-pc-linux";
      opts.namespaces = {"foo", "bar"};
      opts.gen_name_to_index = true;
      opts.gen_program_shape = true;
      tf2xla::Config config;
      tf2xla::Feed* feed = config.add_feed();
      feed->mutable_id()->set_node_name("feed0");
      feed->set_name("myfeed");
      feed = config.add_feed();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 01 02:13:40 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/codegen.cc

      const string arg_names_code =
          GenNameToIndexCode(config.feed(), opts.gen_name_to_index);
    
      auto variable_copy = config.variable();
      for (auto& var : variable_copy) {
        if (var.name().empty()) {
          var.set_name(var.node_name());
        }
      }
      const string variable_names_code =
          GenNameToIndexCode(variable_copy, opts.gen_name_to_index);
    
      const string result_names_code =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
Back to top