Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for gen_name_to_index (0.16 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/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)
Back to top