Skip to content

Commit

Permalink
Fix conditional_full_join benchmark (#12121)
Browse files Browse the repository at this point in the history
The `CONDITIONAL_FULL_JOIN_BENCHMARK_DEFINE` benchmark category was mapping to `cudf::conditional_inner_join` instead of `cudf::conditional_full_join`

Authors:
  - Gregory Kimball (https://github.com/GregoryKimball)

Approvers:
  - Robert Maynard (https://github.com/robertmaynard)
  - Divye Gala (https://github.com/divyegala)

URL: #12121
  • Loading branch information
Gregory Kimball authored Nov 10, 2022
1 parent b3429fb commit b30664b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/benchmarks/join/conditional_join.cu
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ CONDITIONAL_LEFT_JOIN_BENCHMARK_DEFINE(conditional_left_join_64bit_nulls, int64_
cudf::table_view const& right, \
cudf::ast::operation binary_pred, \
cudf::null_equality compare_nulls) { \
return cudf::conditional_inner_join(left, right, binary_pred); \
return cudf::conditional_full_join(left, right, binary_pred); \
}; \
constexpr bool is_conditional = true; \
BM_join<key_type, payload_type, nullable, is_conditional>(st, join); \
Expand Down

0 comments on commit b30664b

Please sign in to comment.