| 179 | } |
| 180 | |
| 181 | void BufRendezvous::LogContents() { |
| 182 | mutex_lock l(mu_); |
| 183 | LOG(INFO) << strings::StrCat("BufRendezvous ", |
| 184 | strings::Hex(reinterpret_cast<uint64>(this)), |
| 185 | " step_id=", step_id_, " current contents:"); |
| 186 | for (auto it : hook_table_) { |
| 187 | LOG(INFO) << it.first << ":" << it.second->DebugString(); |
| 188 | } |
| 189 | } |
| 190 | |
| 191 | } // namespace tensorflow |
nothing calls this directly
no test coverage detected