Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for RegisterRunner (0.55 sec)

  1. tensorflow/cc/training/coordinator.cc

          clean_stop_errors_.insert(static_cast<int>(code));
        }
      }
    }
    
    Coordinator::~Coordinator() {
      RequestStop().IgnoreError();
      Join().IgnoreError();
    }
    
    Status Coordinator::RegisterRunner(std::unique_ptr<RunnerInterface> runner) {
      {
        mutex_lock l(mu_);
        if (should_stop_) {
          return Status(absl::StatusCode::kFailedPrecondition,
                        "The coordinator has been stopped.");
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:30:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top