Skip to content

Commit

Permalink
more fides
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardmgruber committed Jan 29, 2025
1 parent 8c77645 commit b733aaf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions thrust/thrust/system/cuda/detail/unique.h
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ struct items_per_thread
};

template <class T>
struct Tuning<sm52, T>
struct Tuning<core::detail::sm52, T>
{
const static int INPUT_SIZE = sizeof(T);
enum
Expand All @@ -138,7 +138,7 @@ struct Tuning<sm52, T>
}; // Tuning for sm52

template <class T>
struct Tuning<sm35, T>
struct Tuning<core::detail::sm35, T>
{
const static int INPUT_SIZE = sizeof(T);
enum
Expand All @@ -153,7 +153,7 @@ struct Tuning<sm35, T>
}; // Tuning for sm35

template <class T>
struct Tuning<sm30, T>
struct Tuning<core::detail::sm30, T>
{
const static int INPUT_SIZE = sizeof(T);
enum
Expand Down Expand Up @@ -205,7 +205,7 @@ struct UniqueAgent
}; // 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 ItemsLoadIt = typename ptx_plan::ItemsLoadIt;
using BlockLoadItems = typename ptx_plan::BlockLoadItems;
Expand Down Expand Up @@ -281,7 +281,7 @@ struct UniqueAgent
template <bool IS_LAST_TILE, bool IS_FIRST_TILE>
Size THRUST_DEVICE_FUNCTION consume_tile_impl(int num_tile_items, int tile_idx, Size tile_base)
{
using core::uninitialized_array;
using core::detail::uninitialized_array;

item_type items_loc[ITEMS_PER_THREAD];
Size selection_flags[ITEMS_PER_THREAD];
Expand Down

0 comments on commit b733aaf

Please sign in to comment.