Skip to content
Merged
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
Enable PDL in triple chevron launch
It seems PDL was disabled by accident when _THRUST_HAS_PDL was renamed
to _CCCL_HAS_PDL during the review introducing the feature.
  • Loading branch information
bernhardmgruber committed Jan 8, 2025
commit 1b1e82ff0a4e2f2476b2c9ced20c18e4af89b68c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ struct _CCCL_VISIBILITY_HIDDEN triple_chevron
template <class K, class... Args>
cudaError_t _CCCL_HOST doit_host(K k, Args const&... args) const
{
#if _THRUST_HAS_PDL
#if _CCCL_HAS_PDL
if (dependent_launch)
{
cudaLaunchAttribute attribute[1];
Expand All @@ -87,7 +87,7 @@ struct _CCCL_VISIBILITY_HIDDEN triple_chevron
cudaLaunchKernelEx(&config, k, args...);
}
else
#endif // _THRUST_HAS_PDL
#endif // _CCCL_HAS_PDL
{
k<<<grid, block, shared_mem, stream>>>(args...);
}
Expand Down