Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ __launch_bounds__(current_policy<PolicySelector>().threads_per_block)
active_policy.items_per_thread,
active_policy.load_algorithm,
active_policy.load_modifier,
active_policy.block_scan_algorithm,
active_policy.scan_algorithm,
delay_constructor_t<active_policy.delay_constructor.kind,
active_policy.delay_constructor.delay,
active_policy.delay_constructor.l2_write_latency>>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -422,15 +422,15 @@ struct three_way_partition_policy
int items_per_thread;
BlockLoadAlgorithm load_algorithm;
CacheLoadModifier load_modifier;
BlockScanAlgorithm block_scan_algorithm;
BlockScanAlgorithm scan_algorithm;
delay_constructor_policy delay_constructor;

[[nodiscard]] _CCCL_HOST_DEVICE_API constexpr friend bool
operator==(const three_way_partition_policy& lhs, const three_way_partition_policy& rhs)
{
return lhs.threads_per_block == rhs.threads_per_block && lhs.items_per_thread == rhs.items_per_thread
&& lhs.load_algorithm == rhs.load_algorithm && lhs.load_modifier == rhs.load_modifier
&& lhs.block_scan_algorithm == rhs.block_scan_algorithm && lhs.delay_constructor == rhs.delay_constructor;
&& lhs.scan_algorithm == rhs.scan_algorithm && lhs.delay_constructor == rhs.delay_constructor;
}
Comment thread
coderabbitai[bot] marked this conversation as resolved.

[[nodiscard]] _CCCL_HOST_DEVICE_API constexpr friend bool
Expand All @@ -445,7 +445,7 @@ struct three_way_partition_policy
return os
<< "three_way_partition_policy { .threads_per_block = " << policy.threads_per_block
<< ", .items_per_thread = " << policy.items_per_thread << ", .load_algorithm = " << policy.load_algorithm
<< ", .load_modifier = " << policy.load_modifier << ", .block_scan_algorithm = " << policy.block_scan_algorithm
<< ", .load_modifier = " << policy.load_modifier << ", .scan_algorithm = " << policy.scan_algorithm
<< ", .delay_constructor = " << policy.delay_constructor << " }";
Comment thread
coderabbitai[bot] marked this conversation as resolved.
}
#endif // _CCCL_HOSTED()
Expand Down
Loading