| 51 | } |
| 52 | |
| 53 | void WarnEmptyDataset() { |
| 54 | static std::once_flag flag; |
| 55 | std::call_once(flag, |
| 56 | [] { LOG(WARNING) << "Empty dataset at worker: " << collective::GetRank(); }); |
| 57 | } |
| 58 | |
| 59 | void MismatchedDevices(Context const* booster, Context const* data) { |
| 60 | static std::once_flag flag; |
no test coverage detected