Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for sanitize_abilists_dataflow (0.26 sec)

  1. tensorflow/compiler/aot/flags.cc

           "code generation."},
          {"sanitize_dataflow", &flags->sanitize_dataflow,
           "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."},
    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 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;
    };
    
    // Appends to flag_list a tensorflow::Flag for each field in MainFlags.
    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.sanitize_dataflow) {
        aot_opts.set_sanitize_dataflow(flags.sanitize_dataflow);
        aot_opts.set_sanitize_abilists_dataflow(absl::StrSplit(
            flags.sanitize_abilists_dataflow, ',', absl::SkipEmpty()));
      }
    
      return CompileXla(client, computation, aot_opts, compile_result);
    }
    
    static Status ReadProtoFile(const string& fname, protobuf::Message* proto) {
    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

        dfsan_flags = []
        dfsan_deps = []
    
        # DFSan is only supported on linux.
        if ctx.attr.is_linux and ctx.attr.dfsan:
            dfsan_flags = [
                "--sanitize_dataflow",
                "--sanitize_abilists_dataflow=" + ",".join([f.path for f in ctx.files.dfsan_abilists]),
            ]
            dfsan_deps = ctx.files.dfsan_abilists
    
        cpu_flags = ["--target_cpu=" + ctx.attr.target_cpu] if ctx.attr.target_cpu else []
    
    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