-
Notifications
You must be signed in to change notification settings - Fork 931
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
Added Imbalanced Tree Benchmarks for Transforms #18032
base: branch-25.04
Are you sure you want to change the base?
Conversation
Auto-sync is disabled for draft pull requests in this repository. Workflows must be run manually. Contributors can view more details about this message here. |
/ok to test |
// Construct expression that chains additions like (((a + b) + c) + d) | ||
std::string const op = "+"; | ||
std::string expression; | ||
if (reuse_columns) { |
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 can be if constexpr
.
// child column reference | ||
}; | ||
|
||
template <typename key_type, TreeType tree_type, bool reuse_columns, bool Nullable> |
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.
Except key_type
, can we use runtime parameters (benchmark axis) instead of template parameters?
Description
This merge request follows up on #18023 and adds a benchmark for comparing imbalanced trees for transforms against AST and binaryops.
Checklist