Update the header information for EnsureMinimumDefaultExecutorStackSize.

PiperOrigin-RevId: 558981535
This commit is contained in:
MediaPipe Team 2023-08-21 21:24:09 -07:00 committed by Copybara-Service
parent 7ba4edc372
commit 9bc8b3bb4f

View File

@ -22,6 +22,10 @@ namespace mediapipe {
namespace tool { namespace tool {
// Ensures the default executor's stack size is at least min_stack_size. // Ensures the default executor's stack size is at least min_stack_size.
//
// Note that this will also initialize the default executor; any configuration
// changes, such as num_threads, should be done to the config before calling
// this.
void EnsureMinimumDefaultExecutorStackSize(int32 min_stack_size, void EnsureMinimumDefaultExecutorStackSize(int32 min_stack_size,
CalculatorGraphConfig* config); CalculatorGraphConfig* config);
} // namespace tool } // namespace tool