Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for xla_compilation_disabled (0.19 sec)

  1. tensorflow/compiler/jit/flags.cc

      AppendMarkForCompilationPassFlagsInternal(flag_list);
    }
    
    static std::atomic<bool> xla_compilation_disabled(false);
    
    void DisableXlaCompilation() { xla_compilation_disabled = true; }
    
    void EnableXlaCompilation() { xla_compilation_disabled = false; }
    
    bool FailOnXlaCompilation() { return xla_compilation_disabled; }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top