* thread mem locality * fix apply * cleanup * fix lint * fix tests * simple try * fix * fix * apply comments * fix comments * fix * apply simple comment Co-authored-by: ShvetsKS <kirill.shvets@intel.com>
257 lines
7.9 KiB
C++
257 lines
7.9 KiB
C++
/*!
|
|
* Copyright 2017 by Contributors
|
|
* \file row_set.h
|
|
* \brief Quick Utility to compute subset of rows
|
|
* \author Philip Cho, Tianqi Chen
|
|
*/
|
|
#ifndef XGBOOST_COMMON_ROW_SET_H_
|
|
#define XGBOOST_COMMON_ROW_SET_H_
|
|
|
|
#include <xgboost/data.h>
|
|
#include <algorithm>
|
|
#include <vector>
|
|
#include <utility>
|
|
#include <memory>
|
|
|
|
namespace xgboost {
|
|
namespace common {
|
|
|
|
/*! \brief collection of rowset */
|
|
class RowSetCollection {
|
|
public:
|
|
/*! \brief data structure to store an instance set, a subset of
|
|
* rows (instances) associated with a particular node in a decision
|
|
* tree. */
|
|
struct Elem {
|
|
const size_t* begin{nullptr};
|
|
const size_t* end{nullptr};
|
|
bst_node_t node_id{-1};
|
|
// id of node associated with this instance set; -1 means uninitialized
|
|
Elem()
|
|
= default;
|
|
Elem(const size_t* begin,
|
|
const size_t* end,
|
|
bst_node_t node_id = -1)
|
|
: begin(begin), end(end), node_id(node_id) {}
|
|
|
|
inline size_t Size() const {
|
|
return end - begin;
|
|
}
|
|
};
|
|
/* \brief specifies how to split a rowset into two */
|
|
struct Split {
|
|
std::vector<size_t> left;
|
|
std::vector<size_t> right;
|
|
};
|
|
|
|
inline std::vector<Elem>::const_iterator begin() const { // NOLINT
|
|
return elem_of_each_node_.begin();
|
|
}
|
|
|
|
inline std::vector<Elem>::const_iterator end() const { // NOLINT
|
|
return elem_of_each_node_.end();
|
|
}
|
|
|
|
/*! \brief return corresponding element set given the node_id */
|
|
inline const Elem& operator[](unsigned node_id) const {
|
|
const Elem& e = elem_of_each_node_[node_id];
|
|
CHECK(e.begin != nullptr)
|
|
<< "access element that is not in the set";
|
|
return e;
|
|
}
|
|
|
|
/*! \brief return corresponding element set given the node_id */
|
|
inline Elem& operator[](unsigned node_id) {
|
|
Elem& e = elem_of_each_node_[node_id];
|
|
return e;
|
|
}
|
|
|
|
// clear up things
|
|
inline void Clear() {
|
|
elem_of_each_node_.clear();
|
|
}
|
|
// initialize node id 0->everything
|
|
inline void Init() {
|
|
CHECK_EQ(elem_of_each_node_.size(), 0U);
|
|
|
|
if (row_indices_.empty()) { // edge case: empty instance set
|
|
// assign arbitrary address here, to bypass nullptr check
|
|
// (nullptr usually indicates a nonexistent rowset, but we want to
|
|
// indicate a valid rowset that happens to have zero length and occupies
|
|
// the whole instance set)
|
|
// this is okay, as BuildHist will compute (end-begin) as the set size
|
|
const size_t* begin = reinterpret_cast<size_t*>(20);
|
|
const size_t* end = begin;
|
|
elem_of_each_node_.emplace_back(Elem(begin, end, 0));
|
|
return;
|
|
}
|
|
|
|
const size_t* begin = dmlc::BeginPtr(row_indices_);
|
|
const size_t* end = dmlc::BeginPtr(row_indices_) + row_indices_.size();
|
|
elem_of_each_node_.emplace_back(Elem(begin, end, 0));
|
|
}
|
|
|
|
std::vector<size_t>* Data() { return &row_indices_; }
|
|
// split rowset into two
|
|
inline void AddSplit(unsigned node_id,
|
|
unsigned left_node_id,
|
|
unsigned right_node_id,
|
|
size_t n_left,
|
|
size_t n_right) {
|
|
const Elem e = elem_of_each_node_[node_id];
|
|
CHECK(e.begin != nullptr);
|
|
size_t* all_begin = dmlc::BeginPtr(row_indices_);
|
|
size_t* begin = all_begin + (e.begin - all_begin);
|
|
|
|
CHECK_EQ(n_left + n_right, e.Size());
|
|
CHECK_LE(begin + n_left, e.end);
|
|
CHECK_EQ(begin + n_left + n_right, e.end);
|
|
|
|
if (left_node_id >= elem_of_each_node_.size()) {
|
|
elem_of_each_node_.resize(left_node_id + 1, Elem(nullptr, nullptr, -1));
|
|
}
|
|
if (right_node_id >= elem_of_each_node_.size()) {
|
|
elem_of_each_node_.resize(right_node_id + 1, Elem(nullptr, nullptr, -1));
|
|
}
|
|
|
|
elem_of_each_node_[left_node_id] = Elem(begin, begin + n_left, left_node_id);
|
|
elem_of_each_node_[right_node_id] = Elem(begin + n_left, e.end, right_node_id);
|
|
elem_of_each_node_[node_id] = Elem(nullptr, nullptr, -1);
|
|
}
|
|
|
|
private:
|
|
// stores the row indexes in the set
|
|
std::vector<size_t> row_indices_;
|
|
// vector: node_id -> elements
|
|
std::vector<Elem> elem_of_each_node_;
|
|
};
|
|
|
|
|
|
// The builder is required for samples partition to left and rights children for set of nodes
|
|
// Responsible for:
|
|
// 1) Effective memory allocation for intermediate results for multi-thread work
|
|
// 2) Merging partial results produced by threads into original row set (row_set_collection_)
|
|
// BlockSize is template to enable memory alignment easily with C++11 'alignas()' feature
|
|
template<size_t BlockSize>
|
|
class PartitionBuilder {
|
|
public:
|
|
template<typename Func>
|
|
void Init(const size_t n_tasks, size_t n_nodes, Func funcNTaks) {
|
|
left_right_nodes_sizes_.resize(n_nodes);
|
|
blocks_offsets_.resize(n_nodes+1);
|
|
|
|
blocks_offsets_[0] = 0;
|
|
for (size_t i = 1; i < n_nodes+1; ++i) {
|
|
blocks_offsets_[i] = blocks_offsets_[i-1] + funcNTaks(i-1);
|
|
}
|
|
|
|
if (n_tasks > max_n_tasks_) {
|
|
mem_blocks_.resize(n_tasks);
|
|
max_n_tasks_ = n_tasks;
|
|
}
|
|
}
|
|
|
|
// allocate thread local memory, should be called for each specific task
|
|
void AllocateForTask(size_t id) {
|
|
if (mem_blocks_[id].get() == nullptr) {
|
|
BlockInfo* local_block_ptr = new BlockInfo;
|
|
CHECK_NE(local_block_ptr, (BlockInfo*)nullptr);
|
|
mem_blocks_[id].reset(local_block_ptr);
|
|
}
|
|
}
|
|
|
|
common::Span<size_t> GetLeftBuffer(int nid, size_t begin, size_t end) {
|
|
const size_t task_idx = GetTaskIdx(nid, begin);
|
|
return { mem_blocks_.at(task_idx)->Left(), end - begin };
|
|
}
|
|
|
|
common::Span<size_t> GetRightBuffer(int nid, size_t begin, size_t end) {
|
|
const size_t task_idx = GetTaskIdx(nid, begin);
|
|
return { mem_blocks_.at(task_idx)->Right(), end - begin };
|
|
}
|
|
|
|
void SetNLeftElems(int nid, size_t begin, size_t end, size_t n_left) {
|
|
size_t task_idx = GetTaskIdx(nid, begin);
|
|
mem_blocks_.at(task_idx)->n_left = n_left;
|
|
}
|
|
|
|
void SetNRightElems(int nid, size_t begin, size_t end, size_t n_right) {
|
|
size_t task_idx = GetTaskIdx(nid, begin);
|
|
mem_blocks_.at(task_idx)->n_right = n_right;
|
|
}
|
|
|
|
|
|
size_t GetNLeftElems(int nid) const {
|
|
return left_right_nodes_sizes_[nid].first;
|
|
}
|
|
|
|
size_t GetNRightElems(int nid) const {
|
|
return left_right_nodes_sizes_[nid].second;
|
|
}
|
|
|
|
// Each thread has partial results for some set of tree-nodes
|
|
// The function decides order of merging partial results into final row set
|
|
void CalculateRowOffsets() {
|
|
for (size_t i = 0; i < blocks_offsets_.size()-1; ++i) {
|
|
size_t n_left = 0;
|
|
for (size_t j = blocks_offsets_[i]; j < blocks_offsets_[i+1]; ++j) {
|
|
mem_blocks_[j]->n_offset_left = n_left;
|
|
n_left += mem_blocks_[j]->n_left;
|
|
}
|
|
size_t n_right = 0;
|
|
for (size_t j = blocks_offsets_[i]; j < blocks_offsets_[i+1]; ++j) {
|
|
mem_blocks_[j]->n_offset_right = n_left + n_right;
|
|
n_right += mem_blocks_[j]->n_right;
|
|
}
|
|
left_right_nodes_sizes_[i] = {n_left, n_right};
|
|
}
|
|
}
|
|
|
|
void MergeToArray(int nid, size_t begin, size_t* rows_indexes) {
|
|
size_t task_idx = GetTaskIdx(nid, begin);
|
|
|
|
size_t* left_result = rows_indexes + mem_blocks_[task_idx]->n_offset_left;
|
|
size_t* right_result = rows_indexes + mem_blocks_[task_idx]->n_offset_right;
|
|
|
|
const size_t* left = mem_blocks_[task_idx]->Left();
|
|
const size_t* right = mem_blocks_[task_idx]->Right();
|
|
|
|
std::copy_n(left, mem_blocks_[task_idx]->n_left, left_result);
|
|
std::copy_n(right, mem_blocks_[task_idx]->n_right, right_result);
|
|
}
|
|
|
|
size_t GetTaskIdx(int nid, size_t begin) {
|
|
return blocks_offsets_[nid] + begin / BlockSize;
|
|
}
|
|
|
|
protected:
|
|
struct BlockInfo{
|
|
size_t n_left;
|
|
size_t n_right;
|
|
|
|
size_t n_offset_left;
|
|
size_t n_offset_right;
|
|
|
|
size_t* Left() {
|
|
return &left_data_[0];
|
|
}
|
|
|
|
size_t* Right() {
|
|
return &right_data_[0];
|
|
}
|
|
private:
|
|
size_t left_data_[BlockSize];
|
|
size_t right_data_[BlockSize];
|
|
};
|
|
std::vector<std::pair<size_t, size_t>> left_right_nodes_sizes_;
|
|
std::vector<size_t> blocks_offsets_;
|
|
std::vector<std::shared_ptr<BlockInfo>> mem_blocks_;
|
|
size_t max_n_tasks_ = 0;
|
|
};
|
|
|
|
|
|
} // namespace common
|
|
} // namespace xgboost
|
|
|
|
#endif // XGBOOST_COMMON_ROW_SET_H_
|