Skip to content

Commit 94a15d6

Browse files
authored
Merge pull request #992 from gmlueck/me/cherry-pick-961
Add info device vector width for long long
2 parents f7e6dcd + 8359bb8 commit 94a15d6

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

adoc/chapters/programming_interface.adoc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2145,6 +2145,9 @@ struct preferred_vector_width_int {
21452145
struct preferred_vector_width_long {
21462146
using return_type = std::uint32_t;
21472147
};
2148+
struct preferred_vector_width_long_long {
2149+
using return_type = std::uint32_t;
2150+
};
21482151
struct preferred_vector_width_float {
21492152
using return_type = std::uint32_t;
21502153
};
@@ -2186,6 +2189,9 @@ struct native_vector_width_int {
21862189
struct native_vector_width_long {
21872190
using return_type = std::uint32_t;
21882191
};
2192+
struct native_vector_width_long_long {
2193+
using return_type = std::uint32_t;
2194+
};
21892195
struct native_vector_width_float {
21902196
using return_type = std::uint32_t;
21912197
};

adoc/headers/deviceInfo.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,15 @@ struct preferred_vector_width_char;
1717
struct preferred_vector_width_short;
1818
struct preferred_vector_width_int;
1919
struct preferred_vector_width_long;
20+
struct preferred_vector_width_long_long;
2021
struct preferred_vector_width_float;
2122
struct preferred_vector_width_double;
2223
struct preferred_vector_width_half;
2324
struct native_vector_width_char;
2425
struct native_vector_width_short;
2526
struct native_vector_width_int;
2627
struct native_vector_width_long;
28+
struct native_vector_width_long_long;
2729
struct native_vector_width_float;
2830
struct native_vector_width_double;
2931
struct native_vector_width_half;

0 commit comments

Comments
 (0)