-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[DF] Check column types in GetColumnReadersImpl() #17221
Open
ferdymercury
wants to merge
7
commits into
root-project:master
Choose a base branch
from
ferdymercury:fix-rdf-ntuple-types
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
25a4757
[DF] Check column types in GetColumnReadersImpl()
ferdymercury 41a2894
[tree] fix typo varname
ferdymercury 1c0a5aa
Adapt to new interface
ferdymercury 9057dd7
Fix namespace
ferdymercury 44e4297
[ntuple] fix column type of filter
ferdymercury 956478c
fix year filter column type
ferdymercury 2d2066e
[df] try to fix gtest not forwarding the exception
ferdymercury File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,6 +51,7 @@ class RNTupleDSTest : public ::testing::Test { | |
|
||
void SetUp() override { | ||
auto model = RNTupleModel::Create(); | ||
*model->MakeField<std::uint32_t>("nevent") = 1; | ||
*model->MakeField<float>("pt") = 42; | ||
*model->MakeField<float>("energy") = 7; | ||
*model->MakeField<std::string>("tag") = "xyz"; | ||
|
@@ -81,8 +82,9 @@ TEST_F(RNTupleDSTest, ColTypeNames) | |
RNTupleDS ds(fNtplName, fFileName); | ||
|
||
auto colNames = ds.GetColumnNames(); | ||
ASSERT_EQ(15, colNames.size()); | ||
ASSERT_EQ(16, colNames.size()); | ||
|
||
EXPECT_TRUE(ds.HasColumn("nevent")); | ||
EXPECT_TRUE(ds.HasColumn("pt")); | ||
EXPECT_TRUE(ds.HasColumn("energy")); | ||
EXPECT_TRUE(ds.HasColumn("rvec")); | ||
|
@@ -132,6 +134,21 @@ TEST_F(RNTupleDSTest, CardinalityColumn) | |
EXPECT_EQ(3, *max_rvec2); | ||
} | ||
|
||
// TODO(jblomer): this test will change once collections are read as RVecs in RNTupleDS | ||
TEST_F(RNTupleDSTest, ReadRVec) | ||
{ | ||
auto df = ROOT::RDF::Experimental::FromRNTuple(fNtplName, fFileName); | ||
|
||
// Allow use of float and Float_t interchangibly | ||
EXPECT_DOUBLE_EQ(3.0, *df.Sum<std::vector<Float_t>>("jets")); | ||
// Allow use of std int types and ROOT int types interchangibly | ||
EXPECT_EQ(1U, df.Take<std::uint32_t>("nevent").GetValue()[0]); | ||
EXPECT_EQ(1U, df.Take<UInt_t>("nevent").GetValue()[0]); | ||
// jets is currently exposed as std::vector<float> and thus not usable as ROOT::RVec<float> | ||
EXPECT_ANY_THROW(df.Sum<ROOT::RVec<float>>("jets")); | ||
// EXPECT_THROW(df.Sum<ROOT::RVec<float>>("jets"), std::runtime_error); // This does not work directly, maybe due to jitting ? | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We should understand this before merging. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yep, the test is still failing even after that change, so the attempt was not useful |
||
} | ||
|
||
static void ReadTest(const std::string &name, const std::string &fname) | ||
{ | ||
auto df = ROOT::RDF::Experimental::FromRNTuple(name, fname); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This and further down: I wonder if instead of adding the normalized type name everywhere where we append to fColumnTypes, perhaps we should loop once over all the column types when they are fully build, i.e. at the end of the constructor.