- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for TF_SetXlaAutoJitMode (0.1 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
tensorflow/c/c_api_experimental.h
TF_CAPI_EXPORT unsigned char TF_SetTfXlaCpuGlobalJit(unsigned char enable); // Sets XLA's auto jit mode according to the specified string, which is parsed // as if passed in XLA_FLAGS. This has global effect. TF_CAPI_EXPORT void TF_SetXlaAutoJitMode(const char* mode); // Returns whether the single GPU or general XLA auto jit optimizations are // enabled through MarkForCompilationPassFlags. TF_CAPI_EXPORT unsigned char TF_GetXlaAutoJitEnabled();
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Thu Apr 27 21:07:00 GMT 2023 - 15.1K bytes - Click Count (0) -
tensorflow/c/c_api_experimental.cc
bool original = flags->tf_xla_cpu_global_jit; flags->tf_xla_cpu_global_jit = static_cast<bool>(enable); return static_cast<unsigned char>(original); } void TF_SetXlaAutoJitMode(const char* mode) { tensorflow::SetXlaAutoJitFlagFromFlagString(mode); } unsigned char TF_GetXlaAutoJitEnabled() { tensorflow::XlaAutoJitFlag flag =
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Oct 04 05:55:32 GMT 2025 - 29.4K bytes - Click Count (0)