Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for out_session_module (0.19 sec)

  1. tensorflow/compiler/aot/flags.cc

          {"out_metadata_object", &flags->out_metadata_object,
           "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."},
    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 target_triple;
      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
    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

      }
    
      if (flags.experimental_quantize && *quantize_xla) {
        TF_RETURN_IF_ERROR((*quantize_xla)(config, &computation));
      }
    
      if (!flags.out_session_module.empty()) {
        TF_ASSIGN_OR_RETURN(std::unique_ptr<xla::HloSnapshot> module,
                            computation.Snapshot());
        // Serialize the HloSnapshot deterministically so that all the outputs of a
    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

        output_flags = [
            "--out_header=" + header_file.path,
            "--out_metadata_object=" + metadata_object_file.path,
            "--out_function_object=" + function_object_file.path,
            "--out_session_module=" + session_module_pb.path,
        ]
    
        tfcompile_env = {
            "XLA_FLAGS": ("--xla_cpu_enable_fast_math=true " +
                          "--xla_cpu_fast_math_honor_nans=false " +
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top