HomeSort by relevance Sort by last modified time
    Searched refs:PeriodicFunction (Results 1 - 6 of 6) sorted by null

  /external/tensorflow/tensorflow/core/kernels/batching_util/
periodic_function.h 16 // PeriodicFunction will periodically call the given function with a specified
22 // PeriodicFunction runs the function as soon as any previous run both is
28 // then PeriodicFunction will "skip" at least one call to the function. For
49 // PeriodicFunction periodic_function_;
75 class PeriodicFunction {
77 // Provides the ability to customize several aspects of the PeriodicFunction.
78 // Passed to constructor of PeriodicFunction.
91 // for as long as the PeriodicFunction exists.
102 PeriodicFunction(const std::function<void()>& function, int64 interval_micros,
105 ~PeriodicFunction();
    [all...]
periodic_function_test.cc 31 explicit PeriodicFunctionTestAccess(PeriodicFunction* periodic_function)
37 PeriodicFunction* const periodic_function_;
46 void StopPeriodicFunction(PeriodicFunction* periodic_function,
61 PeriodicFunction::Options options;
63 PeriodicFunction periodic_function([&actual_calls]() { ++actual_calls; },
85 PeriodicFunction::Options options;
89 PeriodicFunction periodic_function([&actual_calls]() { ++actual_calls; },
115 PeriodicFunction::Options options;
118 PeriodicFunction periodic_function(
146 // PeriodicFunction's interval to 0ms
    [all...]
periodic_function.cc 26 PeriodicFunction::PeriodicFunction(const std::function<void()>& function,
54 PeriodicFunction::~PeriodicFunction() {
61 void PeriodicFunction::NotifyStop() {
67 void PeriodicFunction::RunLoop(const int64 start) {
shared_batch_scheduler.h 198 std::vector<std::unique_ptr<PeriodicFunction>> batch_threads_;
437 PeriodicFunction::Options periodic_fn_options;
441 std::unique_ptr<PeriodicFunction> thread(new PeriodicFunction(
adaptive_shared_batch_scheduler.h 215 // Responsible for running ProcessOneBatch. PeriodicFunction was used in order
218 std::unique_ptr<PeriodicFunction> scheduling_thread_;
409 PeriodicFunction::Options opts;
416 new PeriodicFunction([this] { ProcessOneBatch(); }, 0, opts));
  /external/tensorflow/tensorflow/core/kernels/
batch_kernels.cc 595 timeout_enforcer_(new serving::PeriodicFunction(
774 std::unique_ptr<serving::PeriodicFunction> timeout_enforcer_;
    [all...]

Completed in 229 milliseconds