Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sanitize_dataflow (0.15 sec)

  1. tensorflow/compiler/aot/compile.cc

          flags.entry_point,
          xla::cpu::CpuAotCompilationOptions::RelocationModel::BigPic);
      aot_opts.set_use_mlir_hlo_lowering(use_mlir_hlo_lowering);
    
      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()));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 08:28:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. 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
    
    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