Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for target_features (0.17 sec)

  1. tensorflow/compiler/aot/flags.cc

          {"target_cpu", &flags->target_cpu,
           "Target cpu, similar to the clang -mcpu flag.  "
           "http://clang.llvm.org/docs/CrossCompilation.html#cpu-fpu-abi"},
          {"target_features", &flags->target_features,
           "Target features, e.g. +avx2, +neon, etc."},
          {"entry_point", &flags->entry_point,
           "Name of the generated function.  If multiple generated object files "
    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

    struct MainFlags {
      string graph;
      string debug_info;
      string debug_info_path_begin_marker;
      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;
    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

                              absl::string_view(serialized.get(), size)));
      }
      xla::cpu::CpuAotCompilationOptions aot_opts(
          flags.target_triple, flags.target_cpu, flags.target_features,
          flags.entry_point,
          xla::cpu::CpuAotCompilationOptions::RelocationModel::BigPic);
      aot_opts.set_use_mlir_hlo_lowering(use_mlir_hlo_lowering);
    
      if (flags.sanitize_dataflow) {
    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