From b733aaf3ec52a66f6240f34079b6d8c97d40d1ee Mon Sep 17 00:00:00 2001 From: Bernhard Manfred Gruber Date: Tue, 28 Jan 2025 16:22:52 +0100 Subject: [PATCH] more fides --- thrust/thrust/system/cuda/detail/unique.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/thrust/thrust/system/cuda/detail/unique.h b/thrust/thrust/system/cuda/detail/unique.h index fc398faf42b..d77febc623c 100644 --- a/thrust/thrust/system/cuda/detail/unique.h +++ b/thrust/thrust/system/cuda/detail/unique.h @@ -123,7 +123,7 @@ struct items_per_thread }; template -struct Tuning +struct Tuning { const static int INPUT_SIZE = sizeof(T); enum @@ -138,7 +138,7 @@ struct Tuning }; // Tuning for sm52 template -struct Tuning +struct Tuning { const static int INPUT_SIZE = sizeof(T); enum @@ -153,7 +153,7 @@ struct Tuning }; // Tuning for sm35 template -struct Tuning +struct Tuning { const static int INPUT_SIZE = sizeof(T); enum @@ -205,7 +205,7 @@ struct UniqueAgent }; // union TempStorage }; // struct PtxPlan - using ptx_plan = typename core::specialize_plan_msvc10_war::type::type; + using ptx_plan = typename core::detail::specialize_plan_msvc10_war::type::type; using ItemsLoadIt = typename ptx_plan::ItemsLoadIt; using BlockLoadItems = typename ptx_plan::BlockLoadItems; @@ -281,7 +281,7 @@ struct UniqueAgent template 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];