| 2911 | #endif |
| 2912 | |
| 2913 | void SlotRecordInMemoryDataFeed::DumpWalkPath(std::string dump_path, |
| 2914 | size_t dump_rate) { |
| 2915 | VLOG(3) << "INTO SlotRecordInMemoryDataFeed::DumpWalkPath"; |
| 2916 | #if defined(PADDLE_WITH_PSCORE) && defined(PADDLE_WITH_HETERPS) |
| 2917 | if (gpu_graph_mode_) { |
| 2918 | std::string path = |
| 2919 | string::format_string("%s/part-%03d", dump_path.c_str(), thread_id_); |
| 2920 | gpu_graph_data_generator_.DumpWalkPath(path, dump_rate); |
| 2921 | } |
| 2922 | #endif |
| 2923 | } |
| 2924 | |
| 2925 | void SlotRecordInMemoryDataFeed::DumpSampleNeighbors(std::string dump_path) { |
| 2926 | VLOG(1) << "INTO SlotRecordInMemoryDataFeed::DumpSampleNeighbors"; |
nothing calls this directly
no test coverage detected