- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for TF_SetXlaEnableLazyCompilation (0.13 sec)
-
tensorflow/c/c_api_experimental.h
// value of 'enabled'. Also returns the original value of that flag. // // Use in tests to allow XLA to fallback to TF classic. This has global effect. TF_CAPI_EXPORT unsigned char TF_SetXlaEnableLazyCompilation( unsigned char enable); TF_CAPI_EXPORT unsigned char TF_SetTfXlaCpuGlobalJit(unsigned char enable); // Sets XLA's auto jit mode according to the specified string, which is parsed
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Apr 27 21:07:00 UTC 2023 - 15.1K bytes - Viewed (0) -
tensorflow/c/c_api_experimental.cc
flags->tf_xla_cpu_global_jit = true; flags->tf_xla_min_cluster_size = 1; } else { optimizer_options->set_global_jit_level(tensorflow::OptimizerOptions::OFF); } } unsigned char TF_SetXlaEnableLazyCompilation(unsigned char enable) { tensorflow::BuildXlaOpsPassFlags* flags = tensorflow::GetBuildXlaOpsPassFlags(); bool original = flags->tf_xla_enable_lazy_compilation;
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 29.5K bytes - Viewed (0)