| 68 | } |
| 69 | |
| 70 | Status Reset() final { |
| 71 | std::lock_guard<std::mutex> lock(guard_); |
| 72 | // TODO(akulik): should Reset not return Status? |
| 73 | state_ = InferenceContextState::NOT_STARTED; |
| 74 | return OkStatus(); |
| 75 | } |
| 76 | |
| 77 | RuntimeStats stats() const final { return runtime_->stats(); } |
| 78 |