Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions projects/rocprim/rocprim/include/rocprim/config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@
__builtin_amdgcn_processor_is("gfx1100") || __builtin_amdgcn_processor_is("gfx1101") \
|| __builtin_amdgcn_processor_is("gfx1102") \
|| __builtin_amdgcn_processor_is("gfx1103") \
|| __builtin_amdgcn_processor_is("gfx1151") \
|| __builtin_amdgcn_processor_is("gfx1152") \
|| __builtin_amdgcn_processor_is("gfx1153") \
|| __builtin_amdgcn_processor_is("gfx11-generic")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ enum class target_arch : unsigned int
gfx1030 = 1030,
gfx1100 = 1100,
gfx1102 = 1102,
gfx1151 = 1151,
gfx1152 = 1152,
gfx1153 = 1153,
gfx1200 = 1200,
Expand Down Expand Up @@ -224,6 +225,7 @@ constexpr auto target_arch_descriptors = std::array{
X(gfx1030),
X(gfx1100),
X(gfx1102),
X(gfx1151),
X(gfx1152),
X(gfx1153),
X(gfx1200),
Expand Down Expand Up @@ -271,6 +273,7 @@ constexpr arch::wavefront::target arch_wavefront_size(const target_arch target_a
case target_arch::gfx1030: return arch::wavefront::target::size32;
case target_arch::gfx1100: return arch::wavefront::target::size32;
case target_arch::gfx1102: return arch::wavefront::target::size32;
case target_arch::gfx1151: return arch::wavefront::target::size32;
case target_arch::gfx1152: return arch::wavefront::target::size32;
case target_arch::gfx1153: return arch::wavefront::target::size32;
case target_arch::gfx1200: return arch::wavefront::target::size32;
Expand Down Expand Up @@ -505,6 +508,7 @@ auto dispatch_target_arch([[maybe_unused]] const target_arch target_arch)
X(gfx1030);
X(gfx1100);
X(gfx1102);
X(gfx1151);
X(gfx1152);
X(gfx1153);
X(gfx1200);
Expand Down