-
Notifications
You must be signed in to change notification settings - Fork 912
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR updates to CCCL 2.7.0-rc2. Do not merge until all of RAPIDS is ready to update. Depends on rapidsai/rapids-cmake#710 and should be admin-merged immediately after that PR. Part of rapidsai/build-planning#115. --------- Co-authored-by: Michael Schellenberger Costa <[email protected]>
- Loading branch information
Showing
4 changed files
with
56 additions
and
54 deletions.
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 was deleted.
Oops, something went wrong.
66 changes: 50 additions & 16 deletions
66
cpp/cmake/thirdparty/patches/thrust_disable_64bit_dispatching.diff
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 |
---|---|---|
@@ -1,25 +1,59 @@ | ||
diff --git a/thrust/thrust/system/cuda/detail/dispatch.h b/thrust/thrust/system/cuda/detail/dispatch.h | ||
index 2a3cc4e33..8fb337b26 100644 | ||
index 971b93d62..0d6b25b07 100644 | ||
--- a/thrust/thrust/system/cuda/detail/dispatch.h | ||
+++ b/thrust/thrust/system/cuda/detail/dispatch.h | ||
@@ -44,8 +44,7 @@ | ||
} \ | ||
else \ | ||
{ \ | ||
- auto THRUST_PP_CAT2(count, _fixed) = static_cast<thrust::detail::int64_t>(count); \ | ||
- status = call arguments; \ | ||
@@ -36,16 +36,15 @@ | ||
* that callables for both branches consist of the same tokens, and is intended to be used with Thrust-style dispatch | ||
* interfaces, that always deduce the size type from the arguments. | ||
*/ | ||
-#define THRUST_INDEX_TYPE_DISPATCH(status, call, count, arguments) \ | ||
- if (count <= thrust::detail::integer_traits<std::int32_t>::const_max) \ | ||
- { \ | ||
- auto THRUST_PP_CAT2(count, _fixed) = static_cast<std::int32_t>(count); \ | ||
- status = call arguments; \ | ||
- } \ | ||
- else \ | ||
- { \ | ||
- auto THRUST_PP_CAT2(count, _fixed) = static_cast<std::int64_t>(count); \ | ||
- status = call arguments; \ | ||
+#define THRUST_INDEX_TYPE_DISPATCH(status, call, count, arguments) \ | ||
+ if (count <= thrust::detail::integer_traits<std::int32_t>::const_max) \ | ||
+ { \ | ||
+ auto THRUST_PP_CAT2(count, _fixed) = static_cast<std::int32_t>(count); \ | ||
+ status = call arguments; \ | ||
+ } \ | ||
+ else \ | ||
+ { \ | ||
+ throw std::runtime_error("THRUST_INDEX_TYPE_DISPATCH 64-bit count is unsupported in libcudf"); \ | ||
} | ||
|
||
/** | ||
@@ -66,9 +65,7 @@ | ||
} \ | ||
else \ | ||
{ \ | ||
- auto THRUST_PP_CAT2(count1, _fixed) = static_cast<thrust::detail::int64_t>(count1); \ | ||
- auto THRUST_PP_CAT2(count2, _fixed) = static_cast<thrust::detail::int64_t>(count2); \ | ||
- status = call arguments; \ | ||
@@ -55,18 +54,16 @@ | ||
* | ||
* This version of the macro supports providing two count variables, which is necessary for set algorithms. | ||
*/ | ||
-#define THRUST_DOUBLE_INDEX_TYPE_DISPATCH(status, call, count1, count2, arguments) \ | ||
- if (count1 + count2 <= thrust::detail::integer_traits<std::int32_t>::const_max) \ | ||
- { \ | ||
- auto THRUST_PP_CAT2(count1, _fixed) = static_cast<std::int32_t>(count1); \ | ||
- auto THRUST_PP_CAT2(count2, _fixed) = static_cast<std::int32_t>(count2); \ | ||
- status = call arguments; \ | ||
- } \ | ||
- else \ | ||
- { \ | ||
- auto THRUST_PP_CAT2(count1, _fixed) = static_cast<std::int64_t>(count1); \ | ||
- auto THRUST_PP_CAT2(count2, _fixed) = static_cast<std::int64_t>(count2); \ | ||
- status = call arguments; \ | ||
+#define THRUST_DOUBLE_INDEX_TYPE_DISPATCH(status, call, count1, count2, arguments) \ | ||
+ if (count1 + count2 <= thrust::detail::integer_traits<std::int32_t>::const_max) \ | ||
+ { \ | ||
+ auto THRUST_PP_CAT2(count1, _fixed) = static_cast<std::int32_t>(count1); \ | ||
+ auto THRUST_PP_CAT2(count2, _fixed) = static_cast<std::int32_t>(count2); \ | ||
+ status = call arguments; \ | ||
+ } \ | ||
+ else \ | ||
+ { \ | ||
+ throw std::runtime_error("THRUST_DOUBLE_INDEX_TYPE_DISPATCH 64-bit count is unsupported in libcudf"); \ | ||
} | ||
|
||
/** | ||
* Dispatch between 32-bit and 64-bit index based versions of the same algorithm |
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