Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FailOnXlaCompilation (0.26 sec)

  1. tensorflow/compiler/jit/flags.h

    // enable/disable JIT compilation at different stages.
    void EnableXlaCompilation();
    
    // Returns `false` unless `DisableXlaCompilation` was called.
    bool FailOnXlaCompilation();
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/flags.cc

    }
    
    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)
  3. tensorflow/compiler/jit/device_compiler.h

      // round. This is to avoid non-determanism of when compilation is disallowed,
      // for example by changing the threshold.
      if (state == DeviceCompileState::kUncompiled && FailOnXlaCompilation()) {
        VLOG(1) << "XLA compilation disabled: " << function.name() << "\n"
                << absl::StrJoin(
                       args, "\n",
                       [](std::string* out, const XlaCompiler::Argument& arg) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
Back to top