* Fix #3708: Use dmlc::TemporaryDirectory to handle temporaries in cross-platform way Also install git inside NVIDIA GPU container * Update dmlc-core
36 lines
1.3 KiB
C++
36 lines
1.3 KiB
C++
// Copyright by Contributors
|
|
#include <xgboost/data.h>
|
|
#include <dmlc/filesystem.h>
|
|
#include "../../../src/data/simple_csr_source.h"
|
|
|
|
#include "../helpers.h"
|
|
|
|
TEST(SimpleCSRSource, SaveLoadBinary) {
|
|
dmlc::TemporaryDirectory tempdir;
|
|
const std::string tmp_file = tempdir.path + "/simple.libsvm";
|
|
CreateSimpleTestData(tmp_file);
|
|
xgboost::DMatrix * dmat = xgboost::DMatrix::Load(tmp_file, true, false);
|
|
|
|
const std::string tmp_binfile = tempdir.path + "/csr_source.binary";
|
|
dmat->SaveToLocalFile(tmp_binfile);
|
|
xgboost::DMatrix * dmat_read = xgboost::DMatrix::Load(tmp_binfile, true, false);
|
|
|
|
EXPECT_EQ(dmat->Info().num_col_, dmat_read->Info().num_col_);
|
|
EXPECT_EQ(dmat->Info().num_row_, dmat_read->Info().num_row_);
|
|
EXPECT_EQ(dmat->Info().num_row_, dmat_read->Info().num_row_);
|
|
|
|
// Test we have non-empty batch
|
|
EXPECT_EQ(dmat->GetRowBatches().begin().AtEnd(), false);
|
|
|
|
auto row_iter = dmat->GetRowBatches().begin();
|
|
auto row_iter_read = dmat_read->GetRowBatches().begin();
|
|
// Test the data read into the first row
|
|
auto first_row = (*row_iter)[0];
|
|
auto first_row_read = (*row_iter_read)[0];
|
|
EXPECT_EQ(first_row.size(), first_row_read.size());
|
|
EXPECT_EQ(first_row[2].index, first_row_read[2].index);
|
|
EXPECT_EQ(first_row[2].fvalue, first_row_read[2].fvalue);
|
|
delete dmat;
|
|
delete dmat_read;
|
|
}
|