feature_parallel_tree_learner.cpp 3.29 KB
Newer Older
1
2
3
4
/*!
 * Copyright (c) 2016 Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License. See LICENSE file in the project root for license information.
 */
Guolin Ke's avatar
Guolin Ke committed
5
6
7
#include <cstring>
#include <vector>

8
9
#include "parallel_tree_learner.h"

Guolin Ke's avatar
Guolin Ke committed
10
11
namespace LightGBM {

12
13

template <typename TREELEARNER_T>
Guolin Ke's avatar
Guolin Ke committed
14
15
FeatureParallelTreeLearner<TREELEARNER_T>::FeatureParallelTreeLearner(const Config* config)
  :TREELEARNER_T(config) {
Guolin Ke's avatar
Guolin Ke committed
16
17
}

18
19
template <typename TREELEARNER_T>
FeatureParallelTreeLearner<TREELEARNER_T>::~FeatureParallelTreeLearner() {
Guolin Ke's avatar
Guolin Ke committed
20
}
21
22
23
24

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
25
26
  rank_ = Network::rank();
  num_machines_ = Network::num_machines();
Guolin Ke's avatar
Guolin Ke committed
27
28
  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
29
30
31
}


32
33
34
template <typename TREELEARNER_T>
void FeatureParallelTreeLearner<TREELEARNER_T>::BeforeTrain() {
  TREELEARNER_T::BeforeTrain();
Guolin Ke's avatar
Guolin Ke committed
35
36
37
  // get feature partition
  std::vector<std::vector<int>> feature_distribution(num_machines_, std::vector<int>());
  std::vector<int> num_bins_distributed(num_machines_, 0);
38
39
  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
40
    if (inner_feature_index == -1) { continue; }
41
    if (this->col_sampler_.is_feature_used_bytree()[inner_feature_index]) {
Guolin Ke's avatar
Guolin Ke committed
42
      int cur_min_machine = static_cast<int>(ArrayArgs<int>::ArgMin(num_bins_distributed));
Guolin Ke's avatar
Guolin Ke committed
43
      feature_distribution[cur_min_machine].push_back(inner_feature_index);
44
      num_bins_distributed[cur_min_machine] += this->train_data_->FeatureNumBin(inner_feature_index);
45
      this->col_sampler_.SetIsFeatureUsedByTree(inner_feature_index, false);
Guolin Ke's avatar
Guolin Ke committed
46
47
48
49
    }
  }
  // get local used features
  for (auto fid : feature_distribution[rank_]) {
50
    this->col_sampler_.SetIsFeatureUsedByTree(fid, true);
Guolin Ke's avatar
Guolin Ke committed
51
52
53
  }
}

54
template <typename TREELEARNER_T>
Guolin Ke's avatar
Guolin Ke committed
55
56
57
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
58
  // get best split at smaller leaf
59
  smaller_best_split = this->best_split_per_leaf_[this->smaller_leaf_splits_->leaf_index()];
Guolin Ke's avatar
Guolin Ke committed
60
  // find local best split for larger leaf
61
62
  if (this->larger_leaf_splits_->leaf_index() >= 0) {
    larger_best_split = this->best_split_per_leaf_[this->larger_leaf_splits_->leaf_index()];
Guolin Ke's avatar
Guolin Ke committed
63
64
  }
  // sync global best info
Guolin Ke's avatar
Guolin Ke committed
65
  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
66
  // update best split
67
68
69
  this->best_split_per_leaf_[this->smaller_leaf_splits_->leaf_index()] = smaller_best_split;
  if (this->larger_leaf_splits_->leaf_index() >= 0) {
    this->best_split_per_leaf_[this->larger_leaf_splits_->leaf_index()] = larger_best_split;
Guolin Ke's avatar
Guolin Ke committed
70
71
72
  }
}

73
74
75
// instantiate template classes, otherwise linker cannot find the code
template class FeatureParallelTreeLearner<GPUTreeLearner>;
template class FeatureParallelTreeLearner<SerialTreeLearner>;
Guolin Ke's avatar
Guolin Ke committed
76
}  // namespace LightGBM