| 416 | } |
| 417 | |
| 418 | string RingAlg::FieldState() { |
| 419 | string s = strings::StrCat( |
| 420 | "Ring", name_, " ", strings::Hex(reinterpret_cast<uint64>(this)), |
| 421 | " exec ", col_ctx_->exec_key, " step_id=", col_ctx_->step_id, |
| 422 | " state of all ", rfv_.size(), " fields:"); |
| 423 | for (int i = 0; i < rfv_.size(); ++i) { |
| 424 | s.append("\n"); |
| 425 | s.append(rfv_[i].DebugString()); |
| 426 | } |
| 427 | return s; |
| 428 | } |
| 429 | |
| 430 | } // namespace tensorflow |
nothing calls this directly
no test coverage detected