- Pass context from booster to DMatrix. - Use context instead of integer for `n_threads`. - Check the consistency configuration for `max_bin`. - Test for all combinations of initialization options.
43 lines
1.1 KiB
C++
43 lines
1.1 KiB
C++
/**
|
|
* Copyright 2022-2023 by XGBoost contributors
|
|
*/
|
|
#include "test_iterative_dmatrix.h"
|
|
|
|
#include <gtest/gtest.h>
|
|
#include <limits>
|
|
#include <memory>
|
|
|
|
#include "../../../src/data/gradient_index.h"
|
|
#include "../../../src/data/iterative_dmatrix.h"
|
|
#include "../helpers.h"
|
|
#include "xgboost/data.h" // DMatrix
|
|
|
|
namespace xgboost {
|
|
namespace data {
|
|
TEST(IterativeDMatrix, Ref) {
|
|
Context ctx;
|
|
TestRefDMatrix<GHistIndexMatrix, NumpyArrayIterForTest>(
|
|
&ctx, [&](GHistIndexMatrix const& page) { return page.cut; });
|
|
}
|
|
|
|
TEST(IterativeDMatrix, IsDense) {
|
|
int n_bins = 16;
|
|
auto test = [n_bins](float sparsity) {
|
|
NumpyArrayIterForTest iter(sparsity);
|
|
auto n_threads = 0;
|
|
IterativeDMatrix m(&iter, iter.Proxy(), nullptr, Reset, Next,
|
|
std::numeric_limits<float>::quiet_NaN(), n_threads, n_bins);
|
|
ASSERT_EQ(m.Ctx()->Threads(), AllThreadsForTest());
|
|
if (sparsity == 0.0) {
|
|
ASSERT_TRUE(m.IsDense());
|
|
} else {
|
|
ASSERT_FALSE(m.IsDense());
|
|
}
|
|
};
|
|
test(0.0);
|
|
test(0.1);
|
|
test(1.0);
|
|
}
|
|
} // namespace data
|
|
} // namespace xgboost
|