Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More fixes
Browse files Browse the repository at this point in the history
bernhardmgruber committed Jan 27, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 5c0d3f4 commit 3f99dcf
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
@@ -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
{
@@ -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
{
@@ -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
{
@@ -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;
@@ -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];

0 comments on commit 3f99dcf

Please sign in to comment.