Skip to content
Merged
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
6 changes: 6 additions & 0 deletions adoc/chapters/programming_interface.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2145,6 +2145,9 @@ struct preferred_vector_width_int {
struct preferred_vector_width_long {
using return_type = std::uint32_t;
};
struct preferred_vector_width_long_long {
using return_type = std::uint32_t;
};
struct preferred_vector_width_float {
using return_type = std::uint32_t;
};
Expand Down Expand Up @@ -2186,6 +2189,9 @@ struct native_vector_width_int {
struct native_vector_width_long {
using return_type = std::uint32_t;
};
struct native_vector_width_long_long {
using return_type = std::uint32_t;
};
struct native_vector_width_float {
using return_type = std::uint32_t;
};
Expand Down
2 changes: 2 additions & 0 deletions adoc/headers/deviceInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,15 @@ struct preferred_vector_width_char;
struct preferred_vector_width_short;
struct preferred_vector_width_int;
struct preferred_vector_width_long;
struct preferred_vector_width_long_long;
struct preferred_vector_width_float;
struct preferred_vector_width_double;
struct preferred_vector_width_half;
struct native_vector_width_char;
struct native_vector_width_short;
struct native_vector_width_int;
struct native_vector_width_long;
struct native_vector_width_long_long;
struct native_vector_width_float;
struct native_vector_width_double;
struct native_vector_width_half;
Expand Down
Loading