- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for TF_CreateRunOptions (0.07 sec)
-
tensorflow/c/c_api_experimental.h
// Create a serialized tensorflow.RunOptions proto, where RunOptions.trace_level // is set to FULL_TRACE if `enable_full_trace` is non-zero, and NO_TRACE // otherwise. TF_CAPI_EXPORT extern TF_Buffer* TF_CreateRunOptions( unsigned char enable_full_trace); // Returns the graph content in a human-readable format, with length set in // `len`. The format is subject to change in the future.Registered: Tue Dec 30 12:39:10 UTC 2025 - Last Modified: Thu Apr 27 21:07:00 UTC 2023 - 15.1K bytes - Viewed (0) -
tensorflow/c/c_api_experimental.cc
config.set_inter_op_parallelism_threads(1); TF_Buffer* ret = TF_NewBuffer(); TF_CHECK_OK(MessageToBuffer(config, ret)); return ret; } TF_Buffer* TF_CreateRunOptions(unsigned char enable_full_trace) { tensorflow::RunOptions options; if (enable_full_trace) { options.set_trace_level(tensorflow::RunOptions::FULL_TRACE); } else {
Registered: Tue Dec 30 12:39:10 UTC 2025 - Last Modified: Sat Oct 04 05:55:32 UTC 2025 - 29.4K bytes - Viewed (0)