Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for out_metadata_object (0.3 sec)

  1. tensorflow/compiler/aot/flags.cc

           "Output object file containing the generated function for the "
           "TensorFlow model."},
          {"out_header", &flags->out_header, "Output header file name."},
          {"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."},
    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 config;
      bool dump_fetch_nodes = false;
      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;
    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/tfcompile_main.cc

    int main(int argc, char** argv) {
      tensorflow::tfcompile::MainFlags flags;
    #ifndef __s390x__
      flags.target_triple = "x86_64-pc-linux";
    #endif
      flags.out_function_object = "out_model.o";
      flags.out_metadata_object = "out_helper.o";
      flags.out_header = "out.h";
      flags.entry_point = "entry";
      flags.debug_info_path_begin_marker = "";
    
      // Note that tfcompile.bzl's tf_library macro sets fast math flags as that is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/compile.cc

      MetadataResult metadata_result;
      TF_RETURN_IF_ERROR(
          GenerateMetadata(codegen_opts, compile_result, &metadata_result));
      TF_RETURN_IF_ERROR(WriteStringToFile(env, flags.out_metadata_object,
                                           metadata_result.object_file_data));
      string header;
      TF_RETURN_IF_ERROR(GenerateHeader(codegen_opts, config, compile_result,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 08:28:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/tfcompile.bzl

        if compiler_log_file:
            output_dict["log_files"] = [compiler_log_file]
    
        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 = {
    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