data_feed.cc 53.4 KB
Newer Older
W
Wang Guibao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */

D
dongdaxiang 已提交
15 16 17 18 19
#if defined _WIN32 || defined __APPLE__
#else
#define _LINUX
#endif

20
#include "paddle/fluid/framework/data_feed.h"
D
dongdaxiang 已提交
21
#ifdef _LINUX
D
dongdaxiang 已提交
22
#include <stdio_ext.h>
H
hutuxian 已提交
23 24
#include <sys/mman.h>
#include <sys/stat.h>
D
dongdaxiang 已提交
25
#endif
26
#include "io/fs.h"
H
hutuxian 已提交
27
#include "paddle/fluid/platform/monitor.h"
28
#include "paddle/fluid/platform/timer.h"
W
Wang Guibao 已提交
29

H
hutuxian 已提交
30
USE_INT_STAT(STAT_total_feasign_num_in_mem);
W
Wang Guibao 已提交
31 32 33
namespace paddle {
namespace framework {

34
void RecordCandidateList::ReSize(size_t length) {
35 36 37 38 39 40 41 42 43
  mutex_.lock();
  capacity_ = length;
  CHECK(capacity_ > 0);  // NOLINT
  candidate_list_.clear();
  candidate_list_.resize(capacity_);
  full_ = false;
  cur_size_ = 0;
  total_size_ = 0;
  mutex_.unlock();
44 45 46
}

void RecordCandidateList::ReInit() {
47 48 49 50 51
  mutex_.lock();
  full_ = false;
  cur_size_ = 0;
  total_size_ = 0;
  mutex_.unlock();
52 53 54 55
}

void RecordCandidateList::AddAndGet(const Record& record,
                                    RecordCandidate* result) {
56
  mutex_.lock();
57
  size_t index = 0;
58
  ++total_size_;
59
  auto fleet_ptr = FleetWrapper::GetInstance();
60 61 62
  if (!full_) {
    candidate_list_[cur_size_++] = record;
    full_ = (cur_size_ == capacity_);
63
  } else {
64 65 66 67
    CHECK(cur_size_ == capacity_);
    index = fleet_ptr->LocalRandomEngine()() % total_size_;
    if (index < capacity_) {
      candidate_list_[index] = record;
68 69
    }
  }
70 71 72
  index = fleet_ptr->LocalRandomEngine()() % cur_size_;
  *result = candidate_list_[index];
  mutex_.unlock();
73 74
}

W
Wang Guibao 已提交
75 76 77 78
void DataFeed::AddFeedVar(Variable* var, const std::string& name) {
  CheckInit();
  for (size_t i = 0; i < use_slots_.size(); ++i) {
    if (name == use_slots_[i]) {
79 80 81 82 83
      if (var == nullptr) {
        feed_vec_[i] = nullptr;
      } else {
        feed_vec_[i] = var->GetMutable<LoDTensor>();
      }
W
Wang Guibao 已提交
84 85 86 87 88
    }
  }
}

bool DataFeed::SetFileList(const std::vector<std::string>& files) {
89
  std::unique_lock<std::mutex> lock(*mutex_for_pick_file_);
W
Wang Guibao 已提交
90
  CheckInit();
91 92
  // Do not set finish_set_filelist_ flag,
  // since a user may set file many times after init reader
W
Wang Guibao 已提交
93 94 95 96 97 98 99
  filelist_.assign(files.begin(), files.end());

  finish_set_filelist_ = true;
  return true;
}

void DataFeed::SetBatchSize(int batch_size) {
100 101 102
  PADDLE_ENFORCE_GT(batch_size, 0,
                    platform::errors::InvalidArgument(
                        "Batch size %d is illegal.", batch_size));
W
Wang Guibao 已提交
103 104 105 106
  default_batch_size_ = batch_size;
}

bool DataFeed::PickOneFile(std::string* filename) {
107 108 109 110 111 112 113
  PADDLE_ENFORCE_NOT_NULL(
      mutex_for_pick_file_,
      platform::errors::PreconditionNotMet(
          "You should call SetFileListMutex before PickOneFile"));
  PADDLE_ENFORCE_NOT_NULL(
      file_idx_, platform::errors::PreconditionNotMet(
                     "You should call SetFileListIndex before PickOneFile"));
114 115
  std::unique_lock<std::mutex> lock(*mutex_for_pick_file_);
  if (*file_idx_ == filelist_.size()) {
116
    VLOG(3) << "DataFeed::PickOneFile no more file to pick";
W
Wang Guibao 已提交
117 118
    return false;
  }
119 120
  VLOG(3) << "file_idx_=" << *file_idx_;
  *filename = filelist_[(*file_idx_)++];
W
Wang Guibao 已提交
121 122 123 124
  return true;
}

void DataFeed::CheckInit() {
125 126
  PADDLE_ENFORCE_EQ(finish_init_, true, platform::errors::PreconditionNotMet(
                                            "DataFeed initialization failed."));
W
Wang Guibao 已提交
127 128 129
}

void DataFeed::CheckSetFileList() {
130 131 132
  PADDLE_ENFORCE_EQ(
      finish_set_filelist_, true,
      platform::errors::PreconditionNotMet("DataFeed set filelist failed."));
W
Wang Guibao 已提交
133 134 135
}

void DataFeed::CheckStart() {
136 137 138
  PADDLE_ENFORCE_EQ(finish_start_, true,
                    platform::errors::PreconditionNotMet(
                        "Datafeed has not started running yet."));
W
Wang Guibao 已提交
139 140
}

H
hutuxian 已提交
141 142 143 144 145 146 147
void DataFeed::AssignFeedVar(const Scope& scope) {
  CheckInit();
  for (size_t i = 0; i < use_slots_.size(); ++i) {
    feed_vec_[i] = scope.FindVar(use_slots_[i])->GetMutable<LoDTensor>();
  }
}

148 149 150 151 152 153
void DataFeed::CopyToFeedTensor(void* dst, const void* src, size_t size) {
  if (platform::is_cpu_place(this->place_)) {
    memcpy(dst, src, size);
  } else {
#ifdef PADDLE_WITH_CUDA
    cudaMemcpy(dst, src, size, cudaMemcpyHostToDevice);
154 155
#elif defined(PADDLE_WITH_HIP)
    hipMemcpy(dst, src, size, hipMemcpyHostToDevice);
156
#else
157
    PADDLE_THROW(platform::errors::Unimplemented(
158 159
        "Not supported GPU/ROCM, please compile with option WITH_GPU=ON or "
        "WITH_ROCM=ON."));
160 161 162 163
#endif
  }
}

W
Wang Guibao 已提交
164 165
template <typename T>
void PrivateQueueDataFeed<T>::SetQueueSize(int queue_size) {
166 167 168 169
  PADDLE_ENFORCE_GT(
      queue_size, 0,
      platform::errors::InvalidArgument(
          "Queue size %d is illegal in PrivateQueueDataFeed.", queue_size));
W
Wang Guibao 已提交
170
  queue_size_ = queue_size;
171
  queue_ = paddle::framework::MakeChannel<T>();
J
jiaqi 已提交
172
  queue_->SetCapacity(queue_size);
W
Wang Guibao 已提交
173 174 175 176 177
}

template <typename T>
bool PrivateQueueDataFeed<T>::Start() {
  CheckSetFileList();
178 179
  read_thread_ = std::thread(&PrivateQueueDataFeed::ReadThread, this);
  read_thread_.detach();
W
Wang Guibao 已提交
180 181 182 183 184 185 186

  finish_start_ = true;
  return true;
}

template <typename T>
void PrivateQueueDataFeed<T>::ReadThread() {
D
dongdaxiang 已提交
187
#ifdef _LINUX
188 189 190 191 192 193 194
  std::string filename;
  while (PickOneFile(&filename)) {
    int err_no = 0;
    fp_ = fs_open_read(filename, &err_no, pipe_command_);
    __fsetlocking(&*fp_, FSETLOCKING_BYCALLER);
    T instance;
    while (ParseOneInstanceFromPipe(&instance)) {
195
      queue_->Put(instance);
196
    }
W
Wang Guibao 已提交
197
  }
198
  queue_->Close();
D
dongdaxiang 已提交
199
#endif
W
Wang Guibao 已提交
200 201 202 203
}

template <typename T>
int PrivateQueueDataFeed<T>::Next() {
X
xjqbest 已提交
204
#ifdef _LINUX
W
Wang Guibao 已提交
205 206 207 208
  CheckStart();
  int index = 0;
  T ins_vec;
  while (index < default_batch_size_) {
209 210
    T instance;
    if (!queue_->Get(instance)) {
W
Wang Guibao 已提交
211 212 213 214 215 216 217 218 219
      break;
    }
    AddInstanceToInsVec(&ins_vec, instance, index++);
  }
  batch_size_ = index;
  if (batch_size_ != 0) {
    PutToFeedVec(ins_vec);
  }
  return batch_size_;
X
xjqbest 已提交
220 221 222
#else
  return 0;
#endif
W
Wang Guibao 已提交
223 224
}

225
// explicit instantiation
W
Wang Guibao 已提交
226 227
template class PrivateQueueDataFeed<std::vector<MultiSlotType>>;

228 229
template <typename T>
InMemoryDataFeed<T>::InMemoryDataFeed() {
230 231
  this->file_idx_ = nullptr;
  this->mutex_for_pick_file_ = nullptr;
J
jiaqi 已提交
232 233 234
  this->fp_ = nullptr;
  this->thread_id_ = 0;
  this->thread_num_ = 1;
235
  this->parse_ins_id_ = false;
236
  this->parse_content_ = false;
237 238 239
  this->parse_logkey_ = false;
  this->enable_pv_merge_ = false;
  this->current_phase_ = 1;  // 1:join ;0:update
J
jiaqi 已提交
240 241 242
  this->input_channel_ = nullptr;
  this->output_channel_ = nullptr;
  this->consume_channel_ = nullptr;
243 244 245 246
}

template <typename T>
bool InMemoryDataFeed<T>::Start() {
X
xjqbest 已提交
247
#ifdef _LINUX
J
jiaqi 已提交
248 249 250 251 252
  this->CheckSetFileList();
  if (output_channel_->Size() == 0 && input_channel_->Size() != 0) {
    std::vector<T> data;
    input_channel_->Read(data);
    output_channel_->Write(std::move(data));
253
  }
X
xjqbest 已提交
254
#endif
J
jiaqi 已提交
255
  this->finish_start_ = true;
256 257 258 259 260
  return true;
}

template <typename T>
int InMemoryDataFeed<T>::Next() {
X
xjqbest 已提交
261
#ifdef _LINUX
J
jiaqi 已提交
262 263 264 265 266
  this->CheckStart();
  CHECK(output_channel_ != nullptr);
  CHECK(consume_channel_ != nullptr);
  VLOG(3) << "output_channel_ size=" << output_channel_->Size()
          << ", consume_channel_ size=" << consume_channel_->Size()
X
xujiaqi01 已提交
267
          << ", thread_id=" << thread_id_;
268
  int index = 0;
D
dongdaxiang 已提交
269
  T instance;
J
jiaqi 已提交
270 271 272 273
  std::vector<T> ins_vec;
  ins_vec.reserve(this->default_batch_size_);
  while (index < this->default_batch_size_) {
    if (output_channel_->Size() == 0) {
D
dongdaxiang 已提交
274
      break;
275
    }
J
jiaqi 已提交
276 277 278 279
    output_channel_->Get(instance);
    ins_vec.push_back(instance);
    ++index;
    consume_channel_->Put(std::move(instance));
D
dongdaxiang 已提交
280
  }
J
jiaqi 已提交
281 282
  this->batch_size_ = index;
  VLOG(3) << "batch_size_=" << this->batch_size_
283
          << ", thread_id=" << thread_id_;
J
jiaqi 已提交
284
  if (this->batch_size_ != 0) {
D
dongdaxiang 已提交
285 286
    PutToFeedVec(ins_vec);
  } else {
J
jiaqi 已提交
287 288 289 290
    VLOG(3) << "finish reading, output_channel_ size="
            << output_channel_->Size()
            << ", consume_channel_ size=" << consume_channel_->Size()
            << ", thread_id=" << thread_id_;
D
dongdaxiang 已提交
291
  }
J
jiaqi 已提交
292
  return this->batch_size_;
X
xjqbest 已提交
293 294 295
#else
  return 0;
#endif
296 297
}

298
template <typename T>
J
jiaqi 已提交
299 300 301 302 303 304 305
void InMemoryDataFeed<T>::SetInputChannel(void* channel) {
  input_channel_ = static_cast<paddle::framework::ChannelObject<T>*>(channel);
}

template <typename T>
void InMemoryDataFeed<T>::SetOutputChannel(void* channel) {
  output_channel_ = static_cast<paddle::framework::ChannelObject<T>*>(channel);
306 307 308
}

template <typename T>
J
jiaqi 已提交
309 310
void InMemoryDataFeed<T>::SetConsumeChannel(void* channel) {
  consume_channel_ = static_cast<paddle::framework::ChannelObject<T>*>(channel);
311 312
}

313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
template <typename T>
void InMemoryDataFeed<T>::SetInputPvChannel(void* channel) {
  input_pv_channel_ =
      static_cast<paddle::framework::ChannelObject<PvInstance>*>(channel);
}

template <typename T>
void InMemoryDataFeed<T>::SetOutputPvChannel(void* channel) {
  output_pv_channel_ =
      static_cast<paddle::framework::ChannelObject<PvInstance>*>(channel);
}

template <typename T>
void InMemoryDataFeed<T>::SetConsumePvChannel(void* channel) {
  consume_pv_channel_ =
      static_cast<paddle::framework::ChannelObject<PvInstance>*>(channel);
}

331 332 333 334 335 336 337 338 339 340
template <typename T>
void InMemoryDataFeed<T>::SetThreadId(int thread_id) {
  thread_id_ = thread_id;
}

template <typename T>
void InMemoryDataFeed<T>::SetThreadNum(int thread_num) {
  thread_num_ = thread_num;
}

341 342 343 344 345
template <typename T>
void InMemoryDataFeed<T>::SetParseContent(bool parse_content) {
  parse_content_ = parse_content;
}

346 347 348 349 350 351 352 353 354 355 356 357 358 359 360
template <typename T>
void InMemoryDataFeed<T>::SetParseLogKey(bool parse_logkey) {
  parse_logkey_ = parse_logkey;
}

template <typename T>
void InMemoryDataFeed<T>::SetEnablePvMerge(bool enable_pv_merge) {
  enable_pv_merge_ = enable_pv_merge;
}

template <typename T>
void InMemoryDataFeed<T>::SetCurrentPhase(int current_phase) {
  current_phase_ = current_phase;
}

361 362 363 364 365
template <typename T>
void InMemoryDataFeed<T>::SetParseInsId(bool parse_ins_id) {
  parse_ins_id_ = parse_ins_id;
}

366 367
template <typename T>
void InMemoryDataFeed<T>::LoadIntoMemory() {
D
dongdaxiang 已提交
368
#ifdef _LINUX
X
xujiaqi01 已提交
369
  VLOG(3) << "LoadIntoMemory() begin, thread_id=" << thread_id_;
370
  std::string filename;
J
jiaqi 已提交
371
  while (this->PickOneFile(&filename)) {
X
xujiaqi01 已提交
372 373
    VLOG(3) << "PickOneFile, filename=" << filename
            << ", thread_id=" << thread_id_;
H
hutuxian 已提交
374 375 376 377 378 379 380 381 382 383 384
#ifdef PADDLE_WITH_BOX_PS
    if (BoxWrapper::GetInstance()->UseAfsApi()) {
      this->fp_ = BoxWrapper::GetInstance()->afs_manager->GetFile(
          filename, this->pipe_command_);
    } else {
#endif
      int err_no = 0;
      this->fp_ = fs_open_read(filename, &err_no, this->pipe_command_);
#ifdef PADDLE_WITH_BOX_PS
    }
#endif
J
jiaqi 已提交
385 386 387
    CHECK(this->fp_ != nullptr);
    __fsetlocking(&*(this->fp_), FSETLOCKING_BYCALLER);
    paddle::framework::ChannelWriter<T> writer(input_channel_);
388
    T instance;
389 390
    platform::Timer timeline;
    timeline.Start();
D
dongdaxiang 已提交
391
    while (ParseOneInstanceFromPipe(&instance)) {
J
jiaqi 已提交
392 393
      writer << std::move(instance);
      instance = T();
394
    }
H
hutuxian 已提交
395 396 397 398 399 400
    STAT_ADD(STAT_total_feasign_num_in_mem, fea_num_);
    {
      std::lock_guard<std::mutex> flock(*mutex_for_fea_num_);
      *total_fea_num_ += fea_num_;
      fea_num_ = 0;
    }
J
jiaqi 已提交
401
    writer.Flush();
402
    timeline.Pause();
403 404
    VLOG(3) << "LoadIntoMemory() read all lines, file=" << filename
            << ", cost time=" << timeline.ElapsedSec()
405
            << " seconds, thread_id=" << thread_id_;
406
  }
X
xujiaqi01 已提交
407
  VLOG(3) << "LoadIntoMemory() end, thread_id=" << thread_id_;
D
dongdaxiang 已提交
408
#endif
409 410
}

411
// explicit instantiation
J
jiaqi 已提交
412
template class InMemoryDataFeed<Record>;
413

W
Wang Guibao 已提交
414 415 416 417 418 419
void MultiSlotDataFeed::Init(
    const paddle::framework::DataFeedDesc& data_feed_desc) {
  finish_init_ = false;
  finish_set_filelist_ = false;
  finish_start_ = false;

420 421 422 423
  PADDLE_ENFORCE_EQ(
      data_feed_desc.has_multi_slot_desc(), true,
      platform::errors::PreconditionNotMet(
          "Multi_slot_desc has not been set in MultiSlotDataFeed."));
W
Wang Guibao 已提交
424 425 426
  paddle::framework::MultiSlotDesc multi_slot_desc =
      data_feed_desc.multi_slot_desc();
  SetBatchSize(data_feed_desc.batch_size());
J
jiaqi 已提交
427 428
  // temporarily set queue size = batch size * 100
  SetQueueSize(data_feed_desc.batch_size() * 100);
W
Wang Guibao 已提交
429 430 431 432
  size_t all_slot_num = multi_slot_desc.slots_size();
  all_slots_.resize(all_slot_num);
  all_slots_type_.resize(all_slot_num);
  use_slots_index_.resize(all_slot_num);
433 434
  total_dims_without_inductive_.resize(all_slot_num);
  inductive_shape_index_.resize(all_slot_num);
W
Wang Guibao 已提交
435 436 437 438 439 440 441
  use_slots_.clear();
  use_slots_is_dense_.clear();
  for (size_t i = 0; i < all_slot_num; ++i) {
    const auto& slot = multi_slot_desc.slots(i);
    all_slots_[i] = slot.name();
    all_slots_type_[i] = slot.type();
    use_slots_index_[i] = slot.is_used() ? use_slots_.size() : -1;
442 443
    total_dims_without_inductive_[i] = 1;
    inductive_shape_index_[i] = -1;
W
Wang Guibao 已提交
444 445 446
    if (slot.is_used()) {
      use_slots_.push_back(all_slots_[i]);
      use_slots_is_dense_.push_back(slot.is_dense());
447 448
      std::vector<int> local_shape;
      if (slot.is_dense()) {
449
        for (int j = 0; j < slot.shape_size(); ++j) {
450 451
          if (slot.shape(j) > 0) {
            total_dims_without_inductive_[i] *= slot.shape(j);
452
          }
453 454
          if (slot.shape(j) == -1) {
            inductive_shape_index_[i] = j;
455
          }
456 457
        }
      }
458
      for (int j = 0; j < slot.shape_size(); ++j) {
459
        local_shape.push_back(slot.shape(j));
460 461
      }
      use_slots_shape_.push_back(local_shape);
W
Wang Guibao 已提交
462 463 464
    }
  }
  feed_vec_.resize(use_slots_.size());
465
  pipe_command_ = data_feed_desc.pipe_command();
W
Wang Guibao 已提交
466 467 468
  finish_init_ = true;
}

D
dongdaxiang 已提交
469
void MultiSlotDataFeed::ReadThread() {
470
#ifdef _LINUX
471 472 473 474
  std::string filename;
  while (PickOneFile(&filename)) {
    int err_no = 0;
    fp_ = fs_open_read(filename, &err_no, pipe_command_);
D
dongdaxiang 已提交
475
    CHECK(fp_ != nullptr);
476 477 478 479 480
    __fsetlocking(&*fp_, FSETLOCKING_BYCALLER);
    std::vector<MultiSlotType> instance;
    int ins_num = 0;
    while (ParseOneInstanceFromPipe(&instance)) {
      ins_num++;
481
      queue_->Put(instance);
482
    }
D
dongdaxiang 已提交
483
    VLOG(3) << "filename: " << filename << " inst num: " << ins_num;
D
dongdaxiang 已提交
484
  }
485
  queue_->Close();
486
#endif
D
dongdaxiang 已提交
487 488
}

W
Wang Guibao 已提交
489
bool MultiSlotDataFeed::CheckFile(const char* filename) {
490
#ifdef _LINUX
W
Wang Guibao 已提交
491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516
  CheckInit();  // get info of slots
  std::ifstream fin(filename);
  if (!fin.good()) {
    VLOG(1) << "error: open file<" << filename << "> fail";
    return false;
  }
  std::string line;
  int instance_cout = 0;
  std::string all_slots_alias = "";
  for (const auto& alias : all_slots_) {
    all_slots_alias += alias + " ";
  }
  std::string use_slots_alias = "";
  for (const auto& alias : use_slots_) {
    use_slots_alias += alias + " ";
  }
  VLOG(3) << "total slots num: " << all_slots_.size();
  VLOG(3) << "total slots alias: " << all_slots_alias;
  VLOG(3) << "used slots num: " << use_slots_.size();
  VLOG(3) << "used slots alias: " << use_slots_alias;
  while (getline(fin, line)) {
    ++instance_cout;
    const char* str = line.c_str();
    char* endptr = const_cast<char*>(str);
    int len = line.length();
    for (size_t i = 0; i < all_slots_.size(); ++i) {
X
xjqbest 已提交
517
      auto num = strtol(endptr, &endptr, 10);
W
Wang Guibao 已提交
518
      if (num < 0) {
519 520
        VLOG(0) << "error: the number of ids is a negative number: " << num;
        VLOG(0) << "please check line<" << instance_cout << "> in file<"
W
Wang Guibao 已提交
521
                << filename << ">";
522
        VLOG(0) << "Error occurred when parsing " << i
Y
yaoxuefeng 已提交
523
                << " th slot with total slots number: " << all_slots_.size();
W
Wang Guibao 已提交
524 525
        return false;
      } else if (num == 0) {
526
        VLOG(0)
W
Wang Guibao 已提交
527 528 529 530
            << "error: the number of ids can not be zero, you need "
               "padding it in data generator; or if there is something wrong"
               " with the data, please check if the data contains unresolvable "
               "characters.";
531
        VLOG(0) << "please check line<" << instance_cout << "> in file<"
W
Wang Guibao 已提交
532
                << filename << ">";
533
        VLOG(0) << "Error occurred when parsing " << i
Y
yaoxuefeng 已提交
534
                << " th slot with total slots number: " << all_slots_.size();
W
Wang Guibao 已提交
535
        return false;
X
xjqbest 已提交
536
      } else if (errno == ERANGE || num > INT_MAX) {
537 538
        VLOG(0) << "error: the number of ids greater than INT_MAX";
        VLOG(0) << "please check line<" << instance_cout << "> in file<"
W
Wang Guibao 已提交
539
                << filename << ">";
540
        VLOG(0) << "Error occurred when parsing " << i
Y
yaoxuefeng 已提交
541
                << " th slot with total slots number: " << all_slots_.size();
W
Wang Guibao 已提交
542 543 544
        return false;
      }
      if (all_slots_type_[i] == "float") {
Y
yaoxuefeng 已提交
545
        for (int j = 0; j < num; ++j) {
W
Wang Guibao 已提交
546 547
          strtof(endptr, &endptr);
          if (errno == ERANGE) {
548
            VLOG(0) << "error: the value is out of the range of "
W
Wang Guibao 已提交
549
                       "representable values for float";
550
            VLOG(0) << "please check line<" << instance_cout << "> in file<"
W
Wang Guibao 已提交
551
                    << filename << ">";
552
            VLOG(0) << "Error occurred when parsing " << i
Y
yaoxuefeng 已提交
553 554 555 556
                    << " th slot with total slots number: "
                    << all_slots_.size();
            VLOG(0) << "and in this slot: " << j
                    << " th id with total id number: " << num;
W
Wang Guibao 已提交
557 558
            return false;
          }
Y
yaoxuefeng 已提交
559
          if (j + 1 != num && endptr - str == len) {
560
            VLOG(0) << "error: there is a wrong with the number of ids.";
561
            VLOG(0) << "Error occurred when parsing " << i
Y
yaoxuefeng 已提交
562 563 564 565
                    << " th slot with total slots number: "
                    << all_slots_.size();
            VLOG(0) << "and in this slot: " << j
                    << " th id with total id number: " << num;
566
            VLOG(0) << "please check line<" << instance_cout << "> in file<"
W
Wang Guibao 已提交
567 568 569 570 571
                    << filename << ">";
            return false;
          }
        }
      } else if (all_slots_type_[i] == "uint64") {
Y
yaoxuefeng 已提交
572
        for (int j = 0; j < num; ++j) {
W
Wang Guibao 已提交
573 574
          strtoull(endptr, &endptr, 10);
          if (errno == ERANGE) {
575
            VLOG(0) << "error: the value is out of the range of "
W
Wang Guibao 已提交
576
                       "representable values for uint64_t";
577
            VLOG(0) << "Error occurred when parsing " << i
Y
yaoxuefeng 已提交
578 579 580 581
                    << " th slot with total slots number: "
                    << all_slots_.size();
            VLOG(0) << "and in this slot: " << j
                    << " th id with total id number: " << num;
582
            VLOG(0) << "please check line<" << instance_cout << "> in file<"
W
Wang Guibao 已提交
583 584 585
                    << filename << ">";
            return false;
          }
Y
yaoxuefeng 已提交
586
          if (j + 1 != num && endptr - str == len) {
587
            VLOG(0) << "error: there is a wrong with the number of ids.";
588
            VLOG(0) << "Error occurred when parsing " << i
Y
yaoxuefeng 已提交
589 590 591 592
                    << " th slot with total slots number: "
                    << all_slots_.size();
            VLOG(0) << "and in this slot: " << j
                    << " th id with total id number: " << num;
593
            VLOG(0) << "please check line<" << instance_cout << "> in file<"
W
Wang Guibao 已提交
594 595 596 597 598
                    << filename << ">";
            return false;
          }
        }
      } else {
599
        VLOG(0) << "error: this type<" << all_slots_type_[i]
W
Wang Guibao 已提交
600 601 602 603
                << "> is not supported";
        return false;
      }
    }
604 605 606
    // It may be added '\t' character to the end of the output of reduce
    // task when processes data by Hadoop(when the output of the reduce
    // task of Hadoop has only one field, it will add a '\t' at the end
607 608 609 610 611
    // of the line by default, and you can use this option to avoid it:
    // `-D mapred.textoutputformat.ignoreseparator=true`), which does
    // not affect the correctness of the data. Therefore, it should be
    // judged that the data is not normal when the end of each line of
    // data contains characters which are not spaces.
612 613 614 615 616 617 618 619
    while (endptr - str != len) {
      if (!isspace(*(endptr++))) {
        VLOG(0)
            << "error: there is some extra characters at the end of the line.";
        VLOG(0) << "please check line<" << instance_cout << "> in file<"
                << filename << ">";
        return false;
      }
W
Wang Guibao 已提交
620 621 622 623
    }
  }
  VLOG(3) << "instances cout: " << instance_cout;
  VLOG(3) << "The file format is correct";
624
#endif
W
Wang Guibao 已提交
625 626 627
  return true;
}

D
dongdaxiang 已提交
628 629
bool MultiSlotDataFeed::ParseOneInstanceFromPipe(
    std::vector<MultiSlotType>* instance) {
630
#ifdef _LINUX
631 632 633
  thread_local string::LineFileReader reader;

  if (!reader.getline(&*(fp_.get()))) {
D
dongdaxiang 已提交
634 635
    return false;
  } else {
636 637 638
    int use_slots_num = use_slots_.size();
    instance->resize(use_slots_num);

D
dongdaxiang 已提交
639 640
    const char* str = reader.get();
    std::string line = std::string(str);
641
    // VLOG(3) << line;
D
dongdaxiang 已提交
642 643 644 645 646
    char* endptr = const_cast<char*>(str);
    int pos = 0;
    for (size_t i = 0; i < use_slots_index_.size(); ++i) {
      int idx = use_slots_index_[i];
      int num = strtol(&str[pos], &endptr, 10);
647 648 649 650 651 652
      PADDLE_ENFORCE_NE(
          num, 0,
          platform::errors::InvalidArgument(
              "The number of ids can not be zero, you need padding "
              "it in data generator; or if there is something wrong with "
              "the data, please check if the data contains unresolvable "
Y
yaoxuefeng 已提交
653 654 655
              "characters.\nplease check this error line: %s, \n Specifically, "
              "something wrong happened(the length of this slot's feasign is 0)"
              "when we parse the %d th slots."
Y
yaoxuefeng 已提交
656
              "Maybe something wrong around this slot"
Y
yaoxuefeng 已提交
657 658 659
              "\nWe detect the feasign number of this slot is %d, "
              "which is illegal.",
              str, i, num));
D
dongdaxiang 已提交
660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675
      if (idx != -1) {
        (*instance)[idx].Init(all_slots_type_[i]);
        if ((*instance)[idx].GetType()[0] == 'f') {  // float
          for (int j = 0; j < num; ++j) {
            float feasign = strtof(endptr, &endptr);
            (*instance)[idx].AddValue(feasign);
          }
        } else if ((*instance)[idx].GetType()[0] == 'u') {  // uint64
          for (int j = 0; j < num; ++j) {
            uint64_t feasign = (uint64_t)strtoull(endptr, &endptr, 10);
            (*instance)[idx].AddValue(feasign);
          }
        }
        pos = endptr - str;
      } else {
        for (int j = 0; j <= num; ++j) {
D
dongdaxiang 已提交
676 677 678 679
          // pos = line.find_first_of(' ', pos + 1);
          while (line[pos + 1] != ' ') {
            pos++;
          }
D
dongdaxiang 已提交
680 681 682 683 684
        }
      }
    }
    return true;
  }
685 686 687
#else
  return true;
#endif
D
dongdaxiang 已提交
688 689
}

W
Wang Guibao 已提交
690
bool MultiSlotDataFeed::ParseOneInstance(std::vector<MultiSlotType>* instance) {
X
xjqbest 已提交
691
#ifdef _LINUX
W
Wang Guibao 已提交
692 693 694 695 696 697 698 699 700 701 702
  std::string line;
  if (getline(file_, line)) {
    int use_slots_num = use_slots_.size();
    instance->resize(use_slots_num);
    // parse line
    const char* str = line.c_str();
    char* endptr = const_cast<char*>(str);
    int pos = 0;
    for (size_t i = 0; i < use_slots_index_.size(); ++i) {
      int idx = use_slots_index_[i];
      int num = strtol(&str[pos], &endptr, 10);
703 704 705 706 707 708
      PADDLE_ENFORCE_NE(
          num, 0,
          platform::errors::InvalidArgument(
              "The number of ids can not be zero, you need padding "
              "it in data generator; or if there is something wrong with "
              "the data, please check if the data contains unresolvable "
Y
yaoxuefeng 已提交
709 710 711
              "characters.\nplease check this error line: %s, \n Specifically, "
              "something wrong happened(the length of this slot's feasign is 0)"
              "when we parse the %d th slots."
Y
yaoxuefeng 已提交
712
              "Maybe something wrong around this slot"
Y
yaoxuefeng 已提交
713 714 715
              "\nWe detect the feasign number of this slot is %d, "
              "which is illegal.",
              str, i, num));
716

W
Wang Guibao 已提交
717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739
      if (idx != -1) {
        (*instance)[idx].Init(all_slots_type_[i]);
        if ((*instance)[idx].GetType()[0] == 'f') {  // float
          for (int j = 0; j < num; ++j) {
            float feasign = strtof(endptr, &endptr);
            (*instance)[idx].AddValue(feasign);
          }
        } else if ((*instance)[idx].GetType()[0] == 'u') {  // uint64
          for (int j = 0; j < num; ++j) {
            uint64_t feasign = (uint64_t)strtoull(endptr, &endptr, 10);
            (*instance)[idx].AddValue(feasign);
          }
        }
        pos = endptr - str;
      } else {
        for (int j = 0; j <= num; ++j) {
          pos = line.find_first_of(' ', pos + 1);
        }
      }
    }
  } else {
    return false;
  }
X
xjqbest 已提交
740 741
#endif
  return false;
W
Wang Guibao 已提交
742 743 744 745 746
}

void MultiSlotDataFeed::AddInstanceToInsVec(
    std::vector<MultiSlotType>* ins_vec,
    const std::vector<MultiSlotType>& instance, int index) {
X
xjqbest 已提交
747
#ifdef _LINUX
W
Wang Guibao 已提交
748 749 750 751 752 753 754
  if (index == 0) {
    ins_vec->resize(instance.size());
    for (size_t i = 0; i < instance.size(); ++i) {
      (*ins_vec)[i].Init(instance[i].GetType());
      (*ins_vec)[i].InitOffset();
    }
  }
755

W
Wang Guibao 已提交
756 757 758
  for (size_t i = 0; i < instance.size(); ++i) {
    (*ins_vec)[i].AddIns(instance[i]);
  }
X
xjqbest 已提交
759
#endif
W
Wang Guibao 已提交
760 761 762 763
}

void MultiSlotDataFeed::PutToFeedVec(
    const std::vector<MultiSlotType>& ins_vec) {
X
xjqbest 已提交
764
#ifdef _LINUX
W
Wang Guibao 已提交
765
  for (size_t i = 0; i < use_slots_.size(); ++i) {
766 767 768
    if (feed_vec_[i] == nullptr) {
      continue;
    }
W
Wang Guibao 已提交
769 770 771
    const auto& type = ins_vec[i].GetType();
    const auto& offset = ins_vec[i].GetOffset();
    int total_instance = static_cast<int>(offset.back());
772

W
Wang Guibao 已提交
773 774
    if (type[0] == 'f') {  // float
      const auto& feasign = ins_vec[i].GetFloatData();
775 776 777
      float* tensor_ptr =
          feed_vec_[i]->mutable_data<float>({total_instance, 1}, this->place_);
      CopyToFeedTensor(tensor_ptr, &feasign[0], total_instance * sizeof(float));
W
Wang Guibao 已提交
778 779 780
    } else if (type[0] == 'u') {  // uint64
      // no uint64_t type in paddlepaddle
      const auto& feasign = ins_vec[i].GetUint64Data();
781
      int64_t* tensor_ptr = feed_vec_[i]->mutable_data<int64_t>(
782 783 784
          {total_instance, 1}, this->place_);
      CopyToFeedTensor(tensor_ptr, &feasign[0],
                       total_instance * sizeof(int64_t));
785
    }
786

787 788 789
    LoD data_lod{offset};
    feed_vec_[i]->set_lod(data_lod);
    if (use_slots_is_dense_[i]) {
790 791 792 793
      if (inductive_shape_index_[i] != -1) {
        use_slots_shape_[i][inductive_shape_index_[i]] =
            total_instance / total_dims_without_inductive_[i];
      }
794
      feed_vec_[i]->Resize(framework::make_ddim(use_slots_shape_[i]));
W
Wang Guibao 已提交
795 796
    }
  }
X
xjqbest 已提交
797
#endif
W
Wang Guibao 已提交
798 799
}

800 801 802 803 804 805
void MultiSlotInMemoryDataFeed::Init(
    const paddle::framework::DataFeedDesc& data_feed_desc) {
  finish_init_ = false;
  finish_set_filelist_ = false;
  finish_start_ = false;

806 807 808 809
  PADDLE_ENFORCE_EQ(
      data_feed_desc.has_multi_slot_desc(), true,
      platform::errors::PreconditionNotMet(
          "Multi_slot_desc has not been set in MultiSlotInMemoryDataFeed."));
810 811 812 813 814 815 816
  paddle::framework::MultiSlotDesc multi_slot_desc =
      data_feed_desc.multi_slot_desc();
  SetBatchSize(data_feed_desc.batch_size());
  size_t all_slot_num = multi_slot_desc.slots_size();
  all_slots_.resize(all_slot_num);
  all_slots_type_.resize(all_slot_num);
  use_slots_index_.resize(all_slot_num);
817 818
  total_dims_without_inductive_.resize(all_slot_num);
  inductive_shape_index_.resize(all_slot_num);
819 820 821 822 823 824 825
  use_slots_.clear();
  use_slots_is_dense_.clear();
  for (size_t i = 0; i < all_slot_num; ++i) {
    const auto& slot = multi_slot_desc.slots(i);
    all_slots_[i] = slot.name();
    all_slots_type_[i] = slot.type();
    use_slots_index_[i] = slot.is_used() ? use_slots_.size() : -1;
826 827
    total_dims_without_inductive_[i] = 1;
    inductive_shape_index_[i] = -1;
828 829 830
    if (slot.is_used()) {
      use_slots_.push_back(all_slots_[i]);
      use_slots_is_dense_.push_back(slot.is_dense());
831 832
      std::vector<int> local_shape;
      if (slot.is_dense()) {
833
        for (int j = 0; j < slot.shape_size(); ++j) {
834 835
          if (slot.shape(j) > 0) {
            total_dims_without_inductive_[i] *= slot.shape(j);
836
          }
837 838
          if (slot.shape(j) == -1) {
            inductive_shape_index_[i] = j;
839
          }
840 841
        }
      }
842
      for (int j = 0; j < slot.shape_size(); ++j) {
843
        local_shape.push_back(slot.shape(j));
844 845
      }
      use_slots_shape_.push_back(local_shape);
846 847 848
    }
  }
  feed_vec_.resize(use_slots_.size());
H
hutuxian 已提交
849 850 851 852 853 854 855 856 857 858 859 860 861
  const int kEstimatedFeasignNumPerSlot = 5;  // Magic Number
  for (size_t i = 0; i < all_slot_num; i++) {
    batch_float_feasigns_.push_back(std::vector<float>());
    batch_uint64_feasigns_.push_back(std::vector<uint64_t>());
    batch_float_feasigns_[i].reserve(default_batch_size_ *
                                     kEstimatedFeasignNumPerSlot);
    batch_uint64_feasigns_[i].reserve(default_batch_size_ *
                                      kEstimatedFeasignNumPerSlot);
    offset_.push_back(std::vector<size_t>());
    offset_[i].reserve(default_batch_size_ +
                       1);  // Each lod info will prepend a zero
  }
  visit_.resize(all_slot_num, false);
862 863
  pipe_command_ = data_feed_desc.pipe_command();
  finish_init_ = true;
864
  input_type_ = data_feed_desc.input_type();
865 866
}

867 868 869 870 871 872 873 874 875 876 877 878 879 880
void MultiSlotInMemoryDataFeed::GetMsgFromLogKey(const std::string& log_key,
                                                 uint64_t* search_id,
                                                 uint32_t* cmatch,
                                                 uint32_t* rank) {
  std::string searchid_str = log_key.substr(16, 16);
  *search_id = (uint64_t)strtoull(searchid_str.c_str(), NULL, 16);

  std::string cmatch_str = log_key.substr(11, 3);
  *cmatch = (uint32_t)strtoul(cmatch_str.c_str(), NULL, 16);

  std::string rank_str = log_key.substr(14, 2);
  *rank = (uint32_t)strtoul(rank_str.c_str(), NULL, 16);
}

J
jiaqi 已提交
881
bool MultiSlotInMemoryDataFeed::ParseOneInstanceFromPipe(Record* instance) {
X
xjqbest 已提交
882
#ifdef _LINUX
883 884 885 886 887 888 889
  thread_local string::LineFileReader reader;

  if (!reader.getline(&*(fp_.get()))) {
    return false;
  } else {
    const char* str = reader.get();
    std::string line = std::string(str);
890
    // VLOG(3) << line;
891 892
    char* endptr = const_cast<char*>(str);
    int pos = 0;
893 894 895 896 897 898 899 900 901 902 903 904
    if (parse_ins_id_) {
      int num = strtol(&str[pos], &endptr, 10);
      CHECK(num == 1);  // NOLINT
      pos = endptr - str + 1;
      size_t len = 0;
      while (str[pos + len] != ' ') {
        ++len;
      }
      instance->ins_id_ = std::string(str + pos, len);
      pos += len + 1;
      VLOG(3) << "ins_id " << instance->ins_id_;
    }
905 906 907 908 909 910 911 912 913 914 915 916
    if (parse_content_) {
      int num = strtol(&str[pos], &endptr, 10);
      CHECK(num == 1);  // NOLINT
      pos = endptr - str + 1;
      size_t len = 0;
      while (str[pos + len] != ' ') {
        ++len;
      }
      instance->content_ = std::string(str + pos, len);
      pos += len + 1;
      VLOG(3) << "content " << instance->content_;
    }
917 918 919 920 921 922 923 924 925 926 927 928 929 930 931
    if (parse_logkey_) {
      int num = strtol(&str[pos], &endptr, 10);
      CHECK(num == 1);  // NOLINT
      pos = endptr - str + 1;
      size_t len = 0;
      while (str[pos + len] != ' ') {
        ++len;
      }
      // parse_logkey
      std::string log_key = std::string(str + pos, len);
      uint64_t search_id;
      uint32_t cmatch;
      uint32_t rank;
      GetMsgFromLogKey(log_key, &search_id, &cmatch, &rank);

H
hutuxian 已提交
932
      instance->ins_id_ = log_key;
933 934 935 936 937
      instance->search_id = search_id;
      instance->cmatch = cmatch;
      instance->rank = rank;
      pos += len + 1;
    }
938 939 940
    for (size_t i = 0; i < use_slots_index_.size(); ++i) {
      int idx = use_slots_index_[i];
      int num = strtol(&str[pos], &endptr, 10);
941 942 943 944 945 946
      PADDLE_ENFORCE_NE(
          num, 0,
          platform::errors::InvalidArgument(
              "The number of ids can not be zero, you need padding "
              "it in data generator; or if there is something wrong with "
              "the data, please check if the data contains unresolvable "
Y
yaoxuefeng 已提交
947 948 949
              "characters.\nplease check this error line: %s, \n Specifically, "
              "something wrong happened(the length of this slot's feasign is 0)"
              "when we parse the %d th slots."
Y
yaoxuefeng 已提交
950
              "Maybe something wrong around this slot"
Y
yaoxuefeng 已提交
951 952 953
              "\nWe detect the feasign number of this slot is %d, "
              "which is illegal.",
              str, i, num));
954
      if (idx != -1) {
J
jiaqi 已提交
955
        if (all_slots_type_[i][0] == 'f') {  // float
956 957
          for (int j = 0; j < num; ++j) {
            float feasign = strtof(endptr, &endptr);
J
jiaqi 已提交
958
            // if float feasign is equal to zero, ignore it
959 960
            // except when slot is dense
            if (fabs(feasign) < 1e-6 && !use_slots_is_dense_[i]) {
J
jiaqi 已提交
961 962
              continue;
            }
T
Thunderbrook 已提交
963
            FeatureFeasign f;
J
jiaqi 已提交
964 965
            f.float_feasign_ = feasign;
            instance->float_feasigns_.push_back(FeatureItem(f, idx));
966
          }
J
jiaqi 已提交
967
        } else if (all_slots_type_[i][0] == 'u') {  // uint64
968 969
          for (int j = 0; j < num; ++j) {
            uint64_t feasign = (uint64_t)strtoull(endptr, &endptr, 10);
J
jiaqi 已提交
970
            // if uint64 feasign is equal to zero, ignore it
971 972
            // except when slot is dense
            if (feasign == 0 && !use_slots_is_dense_[i]) {
J
jiaqi 已提交
973 974
              continue;
            }
T
Thunderbrook 已提交
975
            FeatureFeasign f;
J
jiaqi 已提交
976 977
            f.uint64_feasign_ = feasign;
            instance->uint64_feasigns_.push_back(FeatureItem(f, idx));
978 979 980 981 982 983 984 985 986 987 988 989
          }
        }
        pos = endptr - str;
      } else {
        for (int j = 0; j <= num; ++j) {
          // pos = line.find_first_of(' ', pos + 1);
          while (line[pos + 1] != ' ') {
            pos++;
          }
        }
      }
    }
J
jiaqi 已提交
990 991
    instance->float_feasigns_.shrink_to_fit();
    instance->uint64_feasigns_.shrink_to_fit();
H
hutuxian 已提交
992
    fea_num_ += instance->uint64_feasigns_.size();
993 994
    return true;
  }
X
xjqbest 已提交
995 996 997
#else
  return false;
#endif
998 999
}

J
jiaqi 已提交
1000
bool MultiSlotInMemoryDataFeed::ParseOneInstance(Record* instance) {
X
xjqbest 已提交
1001
#ifdef _LINUX
1002 1003
  std::string line;
  if (getline(file_, line)) {
1004
    VLOG(3) << line;
1005 1006 1007 1008 1009 1010 1011
    // parse line
    const char* str = line.c_str();
    char* endptr = const_cast<char*>(str);
    int pos = 0;
    for (size_t i = 0; i < use_slots_index_.size(); ++i) {
      int idx = use_slots_index_[i];
      int num = strtol(&str[pos], &endptr, 10);
1012 1013 1014 1015 1016 1017
      PADDLE_ENFORCE_NE(
          num, 0,
          platform::errors::InvalidArgument(
              "The number of ids can not be zero, you need padding "
              "it in data generator; or if there is something wrong with "
              "the data, please check if the data contains unresolvable "
Y
yaoxuefeng 已提交
1018 1019 1020
              "characters.\nplease check this error line: %s, \n Specifically, "
              "something wrong happened(the length of this slot's feasign is 0)"
              "when we parse the %d th slots."
Y
yaoxuefeng 已提交
1021
              "Maybe something wrong around this slot"
Y
yaoxuefeng 已提交
1022 1023 1024
              "\nWe detect the feasign number of this slot is %d, "
              "which is illegal.",
              str, i, num));
1025 1026

      if (idx != -1) {
J
jiaqi 已提交
1027
        if (all_slots_type_[i][0] == 'f') {  // float
1028 1029
          for (int j = 0; j < num; ++j) {
            float feasign = strtof(endptr, &endptr);
J
jiaqi 已提交
1030 1031 1032
            if (fabs(feasign) < 1e-6) {
              continue;
            }
T
Thunderbrook 已提交
1033
            FeatureFeasign f;
J
jiaqi 已提交
1034 1035
            f.float_feasign_ = feasign;
            instance->float_feasigns_.push_back(FeatureItem(f, idx));
1036
          }
J
jiaqi 已提交
1037
        } else if (all_slots_type_[i][0] == 'u') {  // uint64
1038 1039
          for (int j = 0; j < num; ++j) {
            uint64_t feasign = (uint64_t)strtoull(endptr, &endptr, 10);
J
jiaqi 已提交
1040 1041 1042
            if (feasign == 0) {
              continue;
            }
T
Thunderbrook 已提交
1043
            FeatureFeasign f;
J
jiaqi 已提交
1044 1045
            f.uint64_feasign_ = feasign;
            instance->uint64_feasigns_.push_back(FeatureItem(f, idx));
1046 1047 1048 1049 1050 1051 1052 1053 1054
          }
        }
        pos = endptr - str;
      } else {
        for (int j = 0; j <= num; ++j) {
          pos = line.find_first_of(' ', pos + 1);
        }
      }
    }
J
jiaqi 已提交
1055 1056 1057
    instance->float_feasigns_.shrink_to_fit();
    instance->uint64_feasigns_.shrink_to_fit();
    return true;
1058 1059 1060
  } else {
    return false;
  }
X
xjqbest 已提交
1061 1062
#endif
  return false;
1063 1064
}

J
jiaqi 已提交
1065 1066
void MultiSlotInMemoryDataFeed::PutToFeedVec(
    const std::vector<Record>& ins_vec) {
X
xjqbest 已提交
1067
#ifdef _LINUX
H
hutuxian 已提交
1068 1069 1070 1071 1072 1073
  for (size_t i = 0; i < batch_float_feasigns_.size(); ++i) {
    batch_float_feasigns_[i].clear();
    batch_uint64_feasigns_[i].clear();
    offset_[i].clear();
    offset_[i].push_back(0);
  }
1074 1075 1076 1077
  ins_content_vec_.clear();
  ins_content_vec_.reserve(ins_vec.size());
  ins_id_vec_.clear();
  ins_id_vec_.reserve(ins_vec.size());
J
jiaqi 已提交
1078 1079
  for (size_t i = 0; i < ins_vec.size(); ++i) {
    auto& r = ins_vec[i];
1080 1081
    ins_id_vec_.push_back(r.ins_id_);
    ins_content_vec_.push_back(r.content_);
J
jiaqi 已提交
1082
    for (auto& item : r.float_feasigns_) {
H
hutuxian 已提交
1083 1084
      batch_float_feasigns_[item.slot()].push_back(item.sign().float_feasign_);
      visit_[item.slot()] = true;
J
jiaqi 已提交
1085 1086
    }
    for (auto& item : r.uint64_feasigns_) {
H
hutuxian 已提交
1087 1088 1089
      batch_uint64_feasigns_[item.slot()].push_back(
          item.sign().uint64_feasign_);
      visit_[item.slot()] = true;
J
jiaqi 已提交
1090 1091 1092
    }
    for (size_t j = 0; j < use_slots_.size(); ++j) {
      const auto& type = all_slots_type_[j];
H
hutuxian 已提交
1093 1094
      if (visit_[j]) {
        visit_[j] = false;
J
jiaqi 已提交
1095 1096 1097
      } else {
        // fill slot value with default value 0
        if (type[0] == 'f') {  // float
H
hutuxian 已提交
1098
          batch_float_feasigns_[j].push_back(0.0);
J
jiaqi 已提交
1099
        } else if (type[0] == 'u') {  // uint64
H
hutuxian 已提交
1100
          batch_uint64_feasigns_[j].push_back(0);
J
jiaqi 已提交
1101 1102 1103 1104
        }
      }
      // get offset of this ins in this slot
      if (type[0] == 'f') {  // float
H
hutuxian 已提交
1105
        offset_[j].push_back(batch_float_feasigns_[j].size());
J
jiaqi 已提交
1106
      } else if (type[0] == 'u') {  // uint64
H
hutuxian 已提交
1107
        offset_[j].push_back(batch_uint64_feasigns_[j].size());
J
jiaqi 已提交
1108
      }
1109 1110 1111 1112
    }
  }

  for (size_t i = 0; i < use_slots_.size(); ++i) {
1113 1114 1115
    if (feed_vec_[i] == nullptr) {
      continue;
    }
H
hutuxian 已提交
1116
    int total_instance = offset_[i].back();
J
jiaqi 已提交
1117
    const auto& type = all_slots_type_[i];
1118
    if (type[0] == 'f') {  // float
H
hutuxian 已提交
1119
      float* feasign = batch_float_feasigns_[i].data();
1120 1121 1122
      float* tensor_ptr =
          feed_vec_[i]->mutable_data<float>({total_instance, 1}, this->place_);
      CopyToFeedTensor(tensor_ptr, feasign, total_instance * sizeof(float));
1123 1124
    } else if (type[0] == 'u') {  // uint64
      // no uint64_t type in paddlepaddle
H
hutuxian 已提交
1125
      uint64_t* feasign = batch_uint64_feasigns_[i].data();
1126
      int64_t* tensor_ptr = feed_vec_[i]->mutable_data<int64_t>(
1127 1128
          {total_instance, 1}, this->place_);
      CopyToFeedTensor(tensor_ptr, feasign, total_instance * sizeof(int64_t));
1129
    }
H
hutuxian 已提交
1130
    auto& slot_offset = offset_[i];
1131 1132 1133 1134 1135 1136 1137 1138 1139
    if (this->input_type_ == 0) {
      LoD data_lod{slot_offset};
      feed_vec_[i]->set_lod(data_lod);
    } else if (this->input_type_ == 1) {
      if (!use_slots_is_dense_[i]) {
        std::vector<size_t> tmp_offset;
        PADDLE_ENFORCE_EQ(slot_offset.size(), 2,
                          platform::errors::InvalidArgument(
                              "In batch reader, the sparse tensor lod size "
1140
                              "must be 2, but received %d.",
1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151
                              slot_offset.size()));
        const auto& max_size = slot_offset[1];
        tmp_offset.reserve(max_size + 1);
        for (unsigned int k = 0; k <= max_size; k++) {
          tmp_offset.emplace_back(k);
        }
        slot_offset = tmp_offset;
        LoD data_lod{slot_offset};
        feed_vec_[i]->set_lod(data_lod);
      }
    }
1152
    if (use_slots_is_dense_[i]) {
1153 1154 1155 1156
      if (inductive_shape_index_[i] != -1) {
        use_slots_shape_[i][inductive_shape_index_[i]] =
            total_instance / total_dims_without_inductive_[i];
      }
1157
      feed_vec_[i]->Resize(framework::make_ddim(use_slots_shape_[i]));
1158 1159
    }
  }
X
xjqbest 已提交
1160
#endif
1161 1162
}

1163
#if (defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)) && !defined(_WIN32)
H
hutuxian 已提交
1164 1165 1166 1167 1168 1169 1170 1171 1172
template <typename T>
void PrivateInstantDataFeed<T>::PutToFeedVec() {
  for (size_t i = 0; i < use_slots_.size(); ++i) {
    const auto& type = ins_vec_[i].GetType();
    const auto& offset = ins_vec_[i].GetOffset();
    int total_instance = static_cast<int>(offset.back());

    if (type[0] == 'f') {  // float
      const auto& feasign = ins_vec_[i].GetFloatData();
1173 1174 1175
      float* tensor_ptr =
          feed_vec_[i]->mutable_data<float>({total_instance, 1}, this->place_);
      CopyToFeedTensor(tensor_ptr, &feasign[0], total_instance * sizeof(float));
H
hutuxian 已提交
1176 1177 1178 1179
    } else if (type[0] == 'u') {  // uint64
      // no uint64_t type in paddlepaddle
      const auto& feasign = ins_vec_[i].GetUint64Data();
      int64_t* tensor_ptr = feed_vec_[i]->mutable_data<int64_t>(
1180 1181 1182
          {total_instance, 1}, this->place_);
      CopyToFeedTensor(tensor_ptr, &feasign[0],
                       total_instance * sizeof(int64_t));
H
hutuxian 已提交
1183 1184 1185 1186 1187 1188 1189 1190 1191
    }

    LoD data_lod{offset};
    feed_vec_[i]->set_lod(data_lod);
    if (use_slots_is_dense_[i]) {
      int64_t total_dims = 1;
      for (const auto e : use_slots_shape_[i]) {
        total_dims *= e;
      }
1192 1193 1194 1195 1196 1197 1198
      PADDLE_ENFORCE_EQ(
          total_dims, total_instance,
          platform::errors::InvalidArgument(
              "The actual data size of slot[%s] doesn't match its declaration. "
              "The actual data size of slot is %lld"
              ", and its declaration is %lld.",
              use_slots_[i].c_str(), total_dims, total_instance));
H
hutuxian 已提交
1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219
      feed_vec_[i]->Resize(framework::make_ddim(use_slots_shape_[i]));
    }
  }
}

template <typename T>
int PrivateInstantDataFeed<T>::Next() {
  if (ParseOneMiniBatch()) {
    PutToFeedVec();
    return ins_vec_[0].GetBatchSize();
  }
  Postprocess();

  std::string filename;
  if (!PickOneFile(&filename)) {
    return -1;
  }
  if (!Preprocess(filename)) {
    return -1;
  }

1220 1221 1222
  PADDLE_ENFORCE_EQ(
      true, ParseOneMiniBatch(),
      platform::errors::InvalidArgument("Fail to parse mini-batch data."));
H
hutuxian 已提交
1223 1224 1225 1226 1227 1228 1229 1230 1231 1232
  PutToFeedVec();
  return ins_vec_[0].GetBatchSize();
}

template <typename T>
void PrivateInstantDataFeed<T>::Init(const DataFeedDesc& data_feed_desc) {
  finish_init_ = false;
  finish_set_filelist_ = false;
  finish_start_ = false;

1233 1234 1235 1236
  PADDLE_ENFORCE_EQ(
      data_feed_desc.has_multi_slot_desc(), true,
      platform::errors::PreconditionNotMet(
          "Multi_slot_desc has not been set in PrivateInstantDataFeed."));
H
hutuxian 已提交
1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256
  paddle::framework::MultiSlotDesc multi_slot_desc =
      data_feed_desc.multi_slot_desc();
  SetBatchSize(data_feed_desc.batch_size());
  size_t all_slot_num = multi_slot_desc.slots_size();
  all_slots_.resize(all_slot_num);
  all_slots_type_.resize(all_slot_num);
  use_slots_index_.resize(all_slot_num);
  multi_inductive_shape_index_.resize(all_slot_num);
  use_slots_.clear();
  use_slots_is_dense_.clear();
  for (size_t i = 0; i < all_slot_num; ++i) {
    const auto& slot = multi_slot_desc.slots(i);
    all_slots_[i] = slot.name();
    all_slots_type_[i] = slot.type();
    use_slots_index_[i] = slot.is_used() ? use_slots_.size() : -1;
    if (slot.is_used()) {
      use_slots_.push_back(all_slots_[i]);
      use_slots_is_dense_.push_back(slot.is_dense());
      std::vector<int> local_shape;
      if (slot.is_dense()) {
1257
        for (int j = 0; j < slot.shape_size(); ++j) {
H
hutuxian 已提交
1258 1259 1260 1261 1262
          if (slot.shape(j) == -1) {
            multi_inductive_shape_index_[i].push_back(j);
          }
        }
      }
1263
      for (int j = 0; j < slot.shape_size(); ++j) {
H
hutuxian 已提交
1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278
        local_shape.push_back(slot.shape(j));
      }
      use_slots_shape_.push_back(local_shape);
    }
  }
  feed_vec_.resize(use_slots_.size());
  ins_vec_.resize(use_slots_.size());

  finish_init_ = true;
}

template class PrivateInstantDataFeed<std::vector<MultiSlotType>>;

bool MultiSlotFileInstantDataFeed::Preprocess(const std::string& filename) {
  fd_ = open(filename.c_str(), O_RDONLY);
1279 1280 1281 1282
  PADDLE_ENFORCE_NE(
      fd_, -1, platform::errors::Unavailable(
                   "Fail to open file: %s in MultiSlotFileInstantDataFeed.",
                   filename.c_str()));
H
hutuxian 已提交
1283 1284 1285 1286 1287 1288 1289

  struct stat sb;
  fstat(fd_, &sb);
  end_ = static_cast<size_t>(sb.st_size);

  buffer_ =
      reinterpret_cast<char*>(mmap(NULL, end_, PROT_READ, MAP_PRIVATE, fd_, 0));
1290 1291 1292 1293 1294
  PADDLE_ENFORCE_NE(
      buffer_, MAP_FAILED,
      platform::errors::Unavailable(
          "Memory map failed when create shared memory, error number is %s.",
          strerror(errno)));
H
hutuxian 已提交
1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325

  offset_ = 0;
  return true;
}

bool MultiSlotFileInstantDataFeed::Postprocess() {
  if (buffer_ != nullptr) {
    munmap(buffer_, end_);
    buffer_ = nullptr;
  }
  if (fd_ != -1) {
    close(fd_);
    fd_ = -1;
    end_ = 0;
    offset_ = 0;
  }
  return true;
}

bool MultiSlotFileInstantDataFeed::ParseOneMiniBatch() {
  if (offset_ == end_) {
    return false;
  }

  batch_size_ = 0;
  while (batch_size_ < default_batch_size_ && offset_ < end_) {
    for (size_t i = 0; i < use_slots_index_.size(); ++i) {
      int idx = use_slots_index_[i];
      char type = all_slots_type_[i][0];

      uint16_t num = *reinterpret_cast<uint16_t*>(buffer_ + offset_);
1326 1327 1328 1329 1330 1331 1332
      PADDLE_ENFORCE_NE(
          num, 0,
          platform::errors::InvalidArgument(
              "The number of ids can not be zero, you need padding "
              "it in data generator; or if there is something wrong with "
              "the data, please check if the data contains unresolvable "
              "characters."));
H
hutuxian 已提交
1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373
      offset_ += sizeof(uint16_t);

      if (idx != -1) {
        int inductive_size = multi_inductive_shape_index_[i].size();
        if (UNLIKELY(batch_size_ == 0)) {
          ins_vec_[idx].Init(all_slots_type_[i], default_batch_size_ * num);
          ins_vec_[idx].InitOffset(default_batch_size_);
          uint64_t* inductive_shape =
              reinterpret_cast<uint64_t*>(buffer_ + offset_);
          for (int inductive_id = 0; inductive_id < inductive_size;
               ++inductive_id) {
            use_slots_shape_[i][multi_inductive_shape_index_[i][inductive_id]] =
                static_cast<int>(*(inductive_shape + inductive_id));
          }
        }
        num -= inductive_size;
        offset_ += sizeof(uint64_t) * inductive_size;

        if (type == 'f') {
          ins_vec_[idx].AppendValues(
              reinterpret_cast<float*>(buffer_ + offset_), num);
          offset_ += num * sizeof(float);
        } else if (type == 'u') {
          ins_vec_[idx].AppendValues(
              reinterpret_cast<uint64_t*>(buffer_ + offset_), num);
          offset_ += num * sizeof(uint64_t);
        }
      } else {
        if (type == 'f') {
          offset_ += num * sizeof(float);
        } else if (type == 'u') {
          offset_ += num * sizeof(uint64_t);
        }
      }
    }
    ++batch_size_;
    // OPTIMIZE: It is better to insert check codes between instances for format
    // checking
  }

  PADDLE_ENFORCE(batch_size_ == default_batch_size_ || offset_ == end_,
1374 1375 1376 1377 1378 1379
                 platform::errors::InvalidArgument(
                     "The batch size id not equal to default batch size, or "
                     "the offset is not equal to end index."
                     "The batch size is %d, default batcch size is %d, offset "
                     "is %d, end index is %d.",
                     batch_size_, default_batch_size_, offset_, end_));
H
hutuxian 已提交
1380 1381 1382 1383
  return true;
}
#endif

1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535
bool PaddleBoxDataFeed::Start() {
#ifdef _LINUX
  int phase = GetCurrentPhase();  // join: 1, update: 0
  this->CheckSetFileList();
  if (enable_pv_merge_ && phase == 1) {
    // join phase : input_pv_channel to output_pv_channel
    if (output_pv_channel_->Size() == 0 && input_pv_channel_->Size() != 0) {
      std::vector<PvInstance> data;
      input_pv_channel_->Read(data);
      output_pv_channel_->Write(std::move(data));
    }
  } else {
    // input_channel to output
    if (output_channel_->Size() == 0 && input_channel_->Size() != 0) {
      std::vector<Record> data;
      input_channel_->Read(data);
      output_channel_->Write(std::move(data));
    }
  }
#endif
  this->finish_start_ = true;
  return true;
}

int PaddleBoxDataFeed::Next() {
#ifdef _LINUX
  int phase = GetCurrentPhase();  // join: 1, update: 0
  this->CheckStart();
  if (enable_pv_merge_ && phase == 1) {
    // join phase : output_pv_channel to consume_pv_channel
    CHECK(output_pv_channel_ != nullptr);
    CHECK(consume_pv_channel_ != nullptr);
    VLOG(3) << "output_pv_channel_ size=" << output_pv_channel_->Size()
            << ", consume_pv_channel_ size=" << consume_pv_channel_->Size()
            << ", thread_id=" << thread_id_;
    int index = 0;
    PvInstance pv_instance;
    std::vector<PvInstance> pv_vec;
    pv_vec.reserve(this->pv_batch_size_);
    while (index < this->pv_batch_size_) {
      if (output_pv_channel_->Size() == 0) {
        break;
      }
      output_pv_channel_->Get(pv_instance);
      pv_vec.push_back(pv_instance);
      ++index;
      consume_pv_channel_->Put(std::move(pv_instance));
    }
    this->batch_size_ = index;
    VLOG(3) << "pv_batch_size_=" << this->batch_size_
            << ", thread_id=" << thread_id_;
    if (this->batch_size_ != 0) {
      PutToFeedVec(pv_vec);
    } else {
      VLOG(3) << "finish reading, output_pv_channel_ size="
              << output_pv_channel_->Size()
              << ", consume_pv_channel_ size=" << consume_pv_channel_->Size()
              << ", thread_id=" << thread_id_;
    }
    return this->batch_size_;
  } else {
    this->batch_size_ = MultiSlotInMemoryDataFeed::Next();
    return this->batch_size_;
  }
#else
  return 0;
#endif
}

void PaddleBoxDataFeed::Init(const DataFeedDesc& data_feed_desc) {
  MultiSlotInMemoryDataFeed::Init(data_feed_desc);
  rank_offset_name_ = data_feed_desc.rank_offset();
  pv_batch_size_ = data_feed_desc.pv_batch_size();
}

void PaddleBoxDataFeed::GetRankOffset(const std::vector<PvInstance>& pv_vec,
                                      int ins_number) {
  int index = 0;
  int max_rank = 3;  // the value is setting
  int row = ins_number;
  int col = max_rank * 2 + 1;
  int pv_num = pv_vec.size();

  std::vector<int> rank_offset_mat(row * col, -1);
  rank_offset_mat.shrink_to_fit();

  for (int i = 0; i < pv_num; i++) {
    auto pv_ins = pv_vec[i];
    int ad_num = pv_ins->ads.size();
    int index_start = index;
    for (int j = 0; j < ad_num; ++j) {
      auto ins = pv_ins->ads[j];
      int rank = -1;
      if ((ins->cmatch == 222 || ins->cmatch == 223) &&
          ins->rank <= static_cast<uint32_t>(max_rank) && ins->rank != 0) {
        rank = ins->rank;
      }

      rank_offset_mat[index * col] = rank;
      if (rank > 0) {
        for (int k = 0; k < ad_num; ++k) {
          auto cur_ins = pv_ins->ads[k];
          int fast_rank = -1;
          if ((cur_ins->cmatch == 222 || cur_ins->cmatch == 223) &&
              cur_ins->rank <= static_cast<uint32_t>(max_rank) &&
              cur_ins->rank != 0) {
            fast_rank = cur_ins->rank;
          }

          if (fast_rank > 0) {
            int m = fast_rank - 1;
            rank_offset_mat[index * col + 2 * m + 1] = cur_ins->rank;
            rank_offset_mat[index * col + 2 * m + 2] = index_start + k;
          }
        }
      }
      index += 1;
    }
  }

  int* rank_offset = rank_offset_mat.data();
  int* tensor_ptr = rank_offset_->mutable_data<int>({row, col}, this->place_);
  CopyToFeedTensor(tensor_ptr, rank_offset, row * col * sizeof(int));
}

void PaddleBoxDataFeed::AssignFeedVar(const Scope& scope) {
  MultiSlotInMemoryDataFeed::AssignFeedVar(scope);
  // set rank offset memory
  int phase = GetCurrentPhase();  // join: 1, update: 0
  if (enable_pv_merge_ && phase == 1) {
    rank_offset_ = scope.FindVar(rank_offset_name_)->GetMutable<LoDTensor>();
  }
}

void PaddleBoxDataFeed::PutToFeedVec(const std::vector<PvInstance>& pv_vec) {
#ifdef _LINUX
  int ins_number = 0;
  std::vector<Record*> ins_vec;
  for (auto& pv : pv_vec) {
    ins_number += pv->ads.size();
    for (auto ins : pv->ads) {
      ins_vec.push_back(ins);
    }
  }
  GetRankOffset(pv_vec, ins_number);
  PutToFeedVec(ins_vec);
#endif
}

int PaddleBoxDataFeed::GetCurrentPhase() {
#ifdef PADDLE_WITH_BOX_PS
  auto box_ptr = paddle::framework::BoxWrapper::GetInstance();
1536 1537 1538 1539 1540
  if (box_ptr->Mode() == 1) {  // For AucRunner
    return 1;
  } else {
    return box_ptr->Phase();
  }
1541 1542 1543 1544 1545 1546 1547 1548
#else
  LOG(WARNING) << "It should be complied with BOX_PS...";
  return current_phase_;
#endif
}

void PaddleBoxDataFeed::PutToFeedVec(const std::vector<Record*>& ins_vec) {
#ifdef _LINUX
H
hutuxian 已提交
1549 1550 1551 1552 1553 1554
  for (size_t i = 0; i < batch_float_feasigns_.size(); ++i) {
    batch_float_feasigns_[i].clear();
    batch_uint64_feasigns_[i].clear();
    offset_[i].clear();
    offset_[i].push_back(0);
  }
1555 1556 1557 1558 1559 1560 1561 1562 1563
  ins_content_vec_.clear();
  ins_content_vec_.reserve(ins_vec.size());
  ins_id_vec_.clear();
  ins_id_vec_.reserve(ins_vec.size());
  for (size_t i = 0; i < ins_vec.size(); ++i) {
    auto r = ins_vec[i];
    ins_id_vec_.push_back(r->ins_id_);
    ins_content_vec_.push_back(r->content_);
    for (auto& item : r->float_feasigns_) {
H
hutuxian 已提交
1564 1565
      batch_float_feasigns_[item.slot()].push_back(item.sign().float_feasign_);
      visit_[item.slot()] = true;
1566 1567
    }
    for (auto& item : r->uint64_feasigns_) {
H
hutuxian 已提交
1568 1569 1570
      batch_uint64_feasigns_[item.slot()].push_back(
          item.sign().uint64_feasign_);
      visit_[item.slot()] = true;
1571 1572 1573
    }
    for (size_t j = 0; j < use_slots_.size(); ++j) {
      const auto& type = all_slots_type_[j];
H
hutuxian 已提交
1574 1575
      if (visit_[j]) {
        visit_[j] = false;
1576 1577 1578
      } else {
        // fill slot value with default value 0
        if (type[0] == 'f') {  // float
H
hutuxian 已提交
1579
          batch_float_feasigns_[j].push_back(0.0);
1580
        } else if (type[0] == 'u') {  // uint64
H
hutuxian 已提交
1581
          batch_uint64_feasigns_[j].push_back(0);
1582 1583 1584 1585
        }
      }
      // get offset of this ins in this slot
      if (type[0] == 'f') {  // float
H
hutuxian 已提交
1586
        offset_[j].push_back(batch_float_feasigns_[j].size());
1587
      } else if (type[0] == 'u') {  // uint64
H
hutuxian 已提交
1588
        offset_[j].push_back(batch_uint64_feasigns_[j].size());
1589 1590 1591 1592 1593 1594 1595 1596
      }
    }
  }

  for (size_t i = 0; i < use_slots_.size(); ++i) {
    if (feed_vec_[i] == nullptr) {
      continue;
    }
H
hutuxian 已提交
1597
    int total_instance = offset_[i].back();
1598 1599
    const auto& type = all_slots_type_[i];
    if (type[0] == 'f') {  // float
H
hutuxian 已提交
1600
      float* feasign = batch_float_feasigns_[i].data();
1601 1602 1603 1604 1605
      float* tensor_ptr =
          feed_vec_[i]->mutable_data<float>({total_instance, 1}, this->place_);
      CopyToFeedTensor(tensor_ptr, feasign, total_instance * sizeof(float));
    } else if (type[0] == 'u') {  // uint64
      // no uint64_t type in paddlepaddle
H
hutuxian 已提交
1606
      uint64_t* feasign = batch_uint64_feasigns_[i].data();
1607 1608 1609 1610
      int64_t* tensor_ptr = feed_vec_[i]->mutable_data<int64_t>(
          {total_instance, 1}, this->place_);
      CopyToFeedTensor(tensor_ptr, feasign, total_instance * sizeof(int64_t));
    }
H
hutuxian 已提交
1611
    auto& slot_offset = offset_[i];
1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624
    LoD data_lod{slot_offset};
    feed_vec_[i]->set_lod(data_lod);
    if (use_slots_is_dense_[i]) {
      if (inductive_shape_index_[i] != -1) {
        use_slots_shape_[i][inductive_shape_index_[i]] =
            total_instance / total_dims_without_inductive_[i];
      }
      feed_vec_[i]->Resize(framework::make_ddim(use_slots_shape_[i]));
    }
  }
#endif
}

W
Wang Guibao 已提交
1625 1626
}  // namespace framework
}  // namespace paddle