diff --git a/rocprim/include/rocprim/device/config_types.hpp b/rocprim/include/rocprim/device/config_types.hpp
index 58729b1..7e356da 100644
--- a/rocprim/include/rocprim/device/config_types.hpp
+++ b/rocprim/include/rocprim/device/config_types.hpp
@@ -204,16 +204,23 @@ constexpr bool prefix_equals(const char* lhs, const char* rhs, std::size_t n)
 constexpr target_arch get_target_arch_from_name(const char* const arch_name, const std::size_t n)
 {
     constexpr const char* target_names[]
-        = {"gfx803", "gfx900", "gfx906", "gfx908", "gfx90a", "gfx1030", "gfx1100", "gfx1102"};
+        = {"gfx803",
+        "gfx900", "gfx902", "gfx909", "gfx912",
+        "gfx906",
+        "gfx908",
+        "gfx90a",
+        "gfx1030", "gfx1031", "gfx1032", "gfx1033", "gfx1034", "gfx1035", "gfx1036",
+        "gfx1100", "gfx1101",
+        "gfx1102", "gfx1103", "gfx1150", "gfx1151", "gfx1152", "gfx1153"};
     constexpr target_arch target_architectures[] = {
         target_arch::gfx803,
-        target_arch::gfx900,
+        target_arch::gfx900, target_arch::gfx900, target_arch::gfx900, target_arch::gfx900,
         target_arch::gfx906,
         target_arch::gfx908,
         target_arch::gfx90a,
-        target_arch::gfx1030,
-        target_arch::gfx1100,
-        target_arch::gfx1102,
+        target_arch::gfx1030, target_arch::gfx1030, target_arch::gfx1030, target_arch::gfx1030, target_arch::gfx1030, target_arch::gfx1030, target_arch::gfx1030,
+        target_arch::gfx1100, target_arch::gfx1100,
+        target_arch::gfx1102, target_arch::gfx1102, target_arch::gfx1102, target_arch::gfx1102, target_arch::gfx1102, target_arch::gfx1102,
     };
     static_assert(sizeof(target_names) / sizeof(target_names[0])
                       == sizeof(target_architectures) / sizeof(target_architectures[0]),