* Extract Sketch Entry from hist maker. * Add a new sketch container for sorted inputs. * Optimize bin search.
146 lines
5.5 KiB
C++
146 lines
5.5 KiB
C++
#include <dmlc/filesystem.h>
|
|
#include <gtest/gtest.h>
|
|
|
|
#include "../../../src/common/column_matrix.h"
|
|
#include "../helpers.h"
|
|
|
|
|
|
namespace xgboost {
|
|
namespace common {
|
|
|
|
TEST(DenseColumn, Test) {
|
|
uint64_t max_num_bins[] = {static_cast<uint64_t>(std::numeric_limits<uint8_t>::max()) + 1,
|
|
static_cast<uint64_t>(std::numeric_limits<uint16_t>::max()) + 1,
|
|
static_cast<uint64_t>(std::numeric_limits<uint16_t>::max()) + 2};
|
|
for (size_t max_num_bin : max_num_bins) {
|
|
auto dmat = RandomDataGenerator(100, 10, 0.0).GenerateDMatrix();
|
|
GHistIndexMatrix gmat(dmat.get(), max_num_bin, false);
|
|
ColumnMatrix column_matrix;
|
|
column_matrix.Init(gmat, 0.2);
|
|
|
|
for (auto i = 0ull; i < dmat->Info().num_row_; i++) {
|
|
for (auto j = 0ull; j < dmat->Info().num_col_; j++) {
|
|
switch (column_matrix.GetTypeSize()) {
|
|
case kUint8BinsTypeSize: {
|
|
auto col = column_matrix.GetColumn<uint8_t, false>(j);
|
|
ASSERT_EQ(gmat.index[i * dmat->Info().num_col_ + j],
|
|
(*col.get()).GetGlobalBinIdx(i));
|
|
}
|
|
break;
|
|
case kUint16BinsTypeSize: {
|
|
auto col = column_matrix.GetColumn<uint16_t, false>(j);
|
|
ASSERT_EQ(gmat.index[i * dmat->Info().num_col_ + j],
|
|
(*col.get()).GetGlobalBinIdx(i));
|
|
}
|
|
break;
|
|
case kUint32BinsTypeSize: {
|
|
auto col = column_matrix.GetColumn<uint32_t, false>(j);
|
|
ASSERT_EQ(gmat.index[i * dmat->Info().num_col_ + j],
|
|
(*col.get()).GetGlobalBinIdx(i));
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
template<typename BinIdxType>
|
|
inline void CheckSparseColumn(const Column<BinIdxType>& col_input, const GHistIndexMatrix& gmat) {
|
|
const SparseColumn<BinIdxType>& col = static_cast<const SparseColumn<BinIdxType>& >(col_input);
|
|
ASSERT_EQ(col.Size(), gmat.index.Size());
|
|
for (auto i = 0ull; i < col.Size(); i++) {
|
|
ASSERT_EQ(gmat.index[gmat.row_ptr[col.GetRowIdx(i)]],
|
|
col.GetGlobalBinIdx(i));
|
|
}
|
|
}
|
|
|
|
TEST(SparseColumn, Test) {
|
|
uint64_t max_num_bins[] = {static_cast<uint64_t>(std::numeric_limits<uint8_t>::max()) + 1,
|
|
static_cast<uint64_t>(std::numeric_limits<uint16_t>::max()) + 1,
|
|
static_cast<uint64_t>(std::numeric_limits<uint16_t>::max()) + 2};
|
|
for (size_t max_num_bin : max_num_bins) {
|
|
auto dmat = RandomDataGenerator(100, 1, 0.85).GenerateDMatrix();
|
|
GHistIndexMatrix gmat(dmat.get(), max_num_bin, false);
|
|
ColumnMatrix column_matrix;
|
|
column_matrix.Init(gmat, 0.5);
|
|
switch (column_matrix.GetTypeSize()) {
|
|
case kUint8BinsTypeSize: {
|
|
auto col = column_matrix.GetColumn<uint8_t, true>(0);
|
|
CheckSparseColumn(*col.get(), gmat);
|
|
}
|
|
break;
|
|
case kUint16BinsTypeSize: {
|
|
auto col = column_matrix.GetColumn<uint16_t, true>(0);
|
|
CheckSparseColumn(*col.get(), gmat);
|
|
}
|
|
break;
|
|
case kUint32BinsTypeSize: {
|
|
auto col = column_matrix.GetColumn<uint32_t, true>(0);
|
|
CheckSparseColumn(*col.get(), gmat);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
template<typename BinIdxType>
|
|
inline void CheckColumWithMissingValue(const Column<BinIdxType>& col_input,
|
|
const GHistIndexMatrix& gmat) {
|
|
const DenseColumn<BinIdxType, true>& col = static_cast<const DenseColumn<BinIdxType, true>& >(col_input);
|
|
for (auto i = 0ull; i < col.Size(); i++) {
|
|
if (col.IsMissing(i)) continue;
|
|
EXPECT_EQ(gmat.index[gmat.row_ptr[i]],
|
|
col.GetGlobalBinIdx(i));
|
|
}
|
|
}
|
|
|
|
TEST(DenseColumnWithMissing, Test) {
|
|
uint64_t max_num_bins[] = { static_cast<uint64_t>(std::numeric_limits<uint8_t>::max()) + 1,
|
|
static_cast<uint64_t>(std::numeric_limits<uint16_t>::max()) + 1,
|
|
static_cast<uint64_t>(std::numeric_limits<uint16_t>::max()) + 2 };
|
|
for (size_t max_num_bin : max_num_bins) {
|
|
auto dmat = RandomDataGenerator(100, 1, 0.5).GenerateDMatrix();
|
|
GHistIndexMatrix gmat(dmat.get(), max_num_bin, false);
|
|
ColumnMatrix column_matrix;
|
|
column_matrix.Init(gmat, 0.2);
|
|
switch (column_matrix.GetTypeSize()) {
|
|
case kUint8BinsTypeSize: {
|
|
auto col = column_matrix.GetColumn<uint8_t, true>(0);
|
|
CheckColumWithMissingValue(*col.get(), gmat);
|
|
}
|
|
break;
|
|
case kUint16BinsTypeSize: {
|
|
auto col = column_matrix.GetColumn<uint16_t, true>(0);
|
|
CheckColumWithMissingValue(*col.get(), gmat);
|
|
}
|
|
break;
|
|
case kUint32BinsTypeSize: {
|
|
auto col = column_matrix.GetColumn<uint32_t, true>(0);
|
|
CheckColumWithMissingValue(*col.get(), gmat);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void TestGHistIndexMatrixCreation(size_t nthreads) {
|
|
size_t constexpr kPageSize = 1024, kEntriesPerCol = 3;
|
|
size_t constexpr kEntries = kPageSize * kEntriesPerCol * 2;
|
|
/* This should create multiple sparse pages */
|
|
std::unique_ptr<DMatrix> dmat{ CreateSparsePageDMatrix(kEntries) };
|
|
omp_set_num_threads(nthreads);
|
|
GHistIndexMatrix gmat(dmat.get(), 256, false);
|
|
}
|
|
|
|
TEST(HistIndexCreationWithExternalMemory, Test) {
|
|
// Vary the number of threads to make sure that the last batch
|
|
// is distributed properly to the available number of threads
|
|
// in the thread pool
|
|
TestGHistIndexMatrixCreation(20);
|
|
TestGHistIndexMatrixCreation(30);
|
|
TestGHistIndexMatrixCreation(40);
|
|
}
|
|
} // namespace common
|
|
} // namespace xgboost
|