Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for experimental_quantize (0.3 sec)

  1. tensorflow/compiler/aot/flags.cc

           "Output session module proto."},
          {"mlir_components", &flags->mlir_components,
           "The MLIR components to enable. Currently only Bridge is supported."},
          {"experimental_quantize", &flags->experimental_quantize,
           "If set, quantization passes will run and dump the result before HLO "
           "code generation."},
          {"sanitize_dataflow", &flags->sanitize_dataflow,
           "Enable DataFlow Sanitizer pass."},
    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 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;
      bool gen_program_shape = 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)
  3. tensorflow/compiler/aot/compile.cc

      } else {
        TF_RETURN_IF_ERROR(ConvertGraphDefToXla(std::move(graph_def), config,
                                                client, &computation));
      }
    
      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,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 08:28:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top