feature_parallel_tree_learner.cpp 3.06 KB
Newer Older
Guolin Ke's avatar
Guolin Ke committed
1
2
3
#include <cstring>
#include <vector>

4
5
#include "parallel_tree_learner.h"

Guolin Ke's avatar
Guolin Ke committed
6
7
namespace LightGBM {

8
9

template <typename TREELEARNER_T>
Guolin Ke's avatar
Guolin Ke committed
10
11
FeatureParallelTreeLearner<TREELEARNER_T>::FeatureParallelTreeLearner(const Config* config)
  :TREELEARNER_T(config) {
Guolin Ke's avatar
Guolin Ke committed
12
13
}

14
15
template <typename TREELEARNER_T>
FeatureParallelTreeLearner<TREELEARNER_T>::~FeatureParallelTreeLearner() {
Guolin Ke's avatar
Guolin Ke committed
16
}
17
18
19
20

template <typename TREELEARNER_T>
void FeatureParallelTreeLearner<TREELEARNER_T>::Init(const Dataset* train_data, bool is_constant_hessian) {
  TREELEARNER_T::Init(train_data, is_constant_hessian);
Guolin Ke's avatar
Guolin Ke committed
21
22
  rank_ = Network::rank();
  num_machines_ = Network::num_machines();
Guolin Ke's avatar
Guolin Ke committed
23
24
  input_buffer_.resize((sizeof(SplitInfo) + sizeof(uint32_t) * this->config_->max_cat_threshold) * 2);
  output_buffer_.resize((sizeof(SplitInfo) + sizeof(uint32_t) * this->config_->max_cat_threshold) * 2);
Guolin Ke's avatar
Guolin Ke committed
25
26
27
}


28
29
30
template <typename TREELEARNER_T>
void FeatureParallelTreeLearner<TREELEARNER_T>::BeforeTrain() {
  TREELEARNER_T::BeforeTrain();
Guolin Ke's avatar
Guolin Ke committed
31
32
33
  // get feature partition
  std::vector<std::vector<int>> feature_distribution(num_machines_, std::vector<int>());
  std::vector<int> num_bins_distributed(num_machines_, 0);
34
35
  for (int i = 0; i < this->train_data_->num_total_features(); ++i) {
    int inner_feature_index = this->train_data_->InnerFeatureIndex(i);
Guolin Ke's avatar
Guolin Ke committed
36
    if (inner_feature_index == -1) { continue; }
37
    if (this->is_feature_used_[inner_feature_index]) {
Guolin Ke's avatar
Guolin Ke committed
38
      int cur_min_machine = static_cast<int>(ArrayArgs<int>::ArgMin(num_bins_distributed));
Guolin Ke's avatar
Guolin Ke committed
39
      feature_distribution[cur_min_machine].push_back(inner_feature_index);
40
41
      num_bins_distributed[cur_min_machine] += this->train_data_->FeatureNumBin(inner_feature_index);
      this->is_feature_used_[inner_feature_index] = false;
Guolin Ke's avatar
Guolin Ke committed
42
43
44
45
    }
  }
  // get local used features
  for (auto fid : feature_distribution[rank_]) {
46
    this->is_feature_used_[fid] = true;
Guolin Ke's avatar
Guolin Ke committed
47
48
49
  }
}

50
template <typename TREELEARNER_T>
Guolin Ke's avatar
Guolin Ke committed
51
52
53
void FeatureParallelTreeLearner<TREELEARNER_T>::FindBestSplitsFromHistograms(const std::vector<int8_t>& is_feature_used, bool use_subtract) {
  TREELEARNER_T::FindBestSplitsFromHistograms(is_feature_used, use_subtract);
  SplitInfo smaller_best_split, larger_best_split;
Guolin Ke's avatar
Guolin Ke committed
54
  // get best split at smaller leaf
Guolin Ke's avatar
Guolin Ke committed
55
  smaller_best_split = this->best_split_per_leaf_[this->smaller_leaf_splits_->LeafIndex()];
Guolin Ke's avatar
Guolin Ke committed
56
  // find local best split for larger leaf
57
  if (this->larger_leaf_splits_->LeafIndex() >= 0) {
Guolin Ke's avatar
Guolin Ke committed
58
    larger_best_split = this->best_split_per_leaf_[this->larger_leaf_splits_->LeafIndex()];
Guolin Ke's avatar
Guolin Ke committed
59
60
  }
  // sync global best info
Guolin Ke's avatar
Guolin Ke committed
61
  SyncUpGlobalBestSplit(input_buffer_.data(), input_buffer_.data(), &smaller_best_split, &larger_best_split, this->config_->max_cat_threshold);
Guolin Ke's avatar
Guolin Ke committed
62
  // update best split
Guolin Ke's avatar
Guolin Ke committed
63
  this->best_split_per_leaf_[this->smaller_leaf_splits_->LeafIndex()] = smaller_best_split;
64
  if (this->larger_leaf_splits_->LeafIndex() >= 0) {
Guolin Ke's avatar
Guolin Ke committed
65
    this->best_split_per_leaf_[this->larger_leaf_splits_->LeafIndex()] = larger_best_split;
Guolin Ke's avatar
Guolin Ke committed
66
67
68
  }
}

69
70
71
// instantiate template classes, otherwise linker cannot find the code
template class FeatureParallelTreeLearner<GPUTreeLearner>;
template class FeatureParallelTreeLearner<SerialTreeLearner>;
Guolin Ke's avatar
Guolin Ke committed
72
}  // namespace LightGBM