| 3187 | MiniBatchGpuPack::~MiniBatchGpuPack() {} |
| 3188 | |
| 3189 | void MiniBatchGpuPack::reset(const phi::Place& place) { |
| 3190 | place_ = place; |
| 3191 | stream_holder_.reset(new phi::CUDAStream(place)); |
| 3192 | stream_ = stream_holder_->raw_stream(); |
| 3193 | ins_num_ = 0; |
| 3194 | pv_num_ = 0; |
| 3195 | } |
| 3196 | |
| 3197 | void MiniBatchGpuPack::pack_all_data(const SlotRecord* ins_vec, int num) { |
| 3198 | int uint64_total_num = 0; |
no test coverage detected