Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for tf_xla_disable_deadness_safety_checks_for_debugging (0.39 sec)

  1. tensorflow/compiler/jit/flags.cc

               "Places an artificial limit on the number of ops marked as "
               "eligible for clustering."),
          Flag("tf_xla_disable_deadness_safety_checks_for_debugging",
               &mark_for_compilation_flags
                    ->tf_xla_disable_deadness_safety_checks_for_debugging,
               "Disable deadness related safety checks when clustering (this is "
               "unsound)."),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/flags.h

      // eligible for clustering.
      int64_t tf_xla_clustering_fuel;
    
      // If tf_xla_disable_deadness_safety_checks_for_debugging is set to true then
      // we do not do deadness related safety checks.  This is unsound in general,
      // but can be used as a debugging aid.
      bool tf_xla_disable_deadness_safety_checks_for_debugging;
    
      // If tf_xla_disable_resource_variable_safety_checks_for_debugging is set to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      MarkForCompilationPassFlags* flags = GetMarkForCompilationPassFlags();
    
      MarkForCompilationPassImpl::DebugOptions debug_options;
      debug_options.ignore_deadness_checks =
          flags->tf_xla_disable_deadness_safety_checks_for_debugging;
      debug_options.ignore_resource_variable_checks =
          flags->tf_xla_disable_resource_variable_safety_checks_for_debugging;
      debug_options.ignore_xla_compile_attr = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top