Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardmgruber committed Jan 28, 2025
1 parent db0c3dd commit a0c179b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions thrust/thrust/system/cuda/detail/set_operations.h
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ struct Tuning;
namespace mpl = thrust::detail::mpl::math;

template <class T, class U>
struct Tuning<sm30, T, U>
struct Tuning<core::detail::sm30, T, U>
{
enum
{
Expand All @@ -243,7 +243,7 @@ struct Tuning<sm30, T, U>
}; // tuning sm30

template <class T, class U>
struct Tuning<sm52, T, U>
struct Tuning<core::detail::sm52, T, U>
{
enum
{
Expand All @@ -264,7 +264,7 @@ struct Tuning<sm52, T, U>
}; // tuning sm52

template <class T, class U>
struct Tuning<sm60, T, U>
struct Tuning<core::detail::sm60, T, U>
{
enum
{
Expand Down Expand Up @@ -357,7 +357,7 @@ struct SetOpAgent
}; // union TempStorage
}; // struct PtxPlan

using ptx_plan = typename core::specialize_plan_msvc10_war<PtxPlan>::type::type;
using ptx_plan = typename core::detail::specialize_plan_msvc10_war<PtxPlan>::type::type;

using KeysLoadIt1 = typename ptx_plan::KeysLoadIt1;
using KeysLoadIt2 = typename ptx_plan::KeysLoadIt2;
Expand Down Expand Up @@ -502,7 +502,7 @@ struct SetOpAgent
template <bool IS_LAST_TILE>
void THRUST_DEVICE_FUNCTION consume_tile(Size tile_idx)
{
using core::uninitialized_array;
using core::detail::uninitialized_array;

pair<Size, Size> partition_beg = partitions[tile_idx + 0];
pair<Size, Size> partition_end = partitions[tile_idx + 1];
Expand Down

0 comments on commit a0c179b

Please sign in to comment.