Skip to content

[ESIMD] Doxygen update part III - core APIs. #5472

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 4, 2022
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
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ namespace intel {
namespace experimental {
namespace esimd {

/// @addtogroup sycl_esimd_misc
/// @{
/// @ingroup sycl_esimd_misc

/// "Merges" elements of the input vectors according to the merge mask.
/// @param a the first vector
Expand Down
6 changes: 5 additions & 1 deletion sycl/include/sycl/ext/intel/experimental/esimd/common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@

#include <cstdint> // for uint* types

/// @cond ESIMD_DETAIL

#ifdef __SYCL_DEVICE_ONLY__
#define SYCL_ESIMD_KERNEL __attribute__((sycl_explicit_simd))
#define SYCL_ESIMD_FUNCTION __attribute__((sycl_explicit_simd))
Expand Down Expand Up @@ -63,15 +65,17 @@
#define __ESIMD_DEPRECATED(new_api) \
__SYCL_DEPRECATED("use " __ESIMD_NS_QUOTED "::" __ESIMD_QUOTE(new_api))

/// @endcond ESIMD_DETAIL

__SYCL_INLINE_NAMESPACE(cl) {
namespace sycl {
namespace ext {
namespace intel {
namespace experimental {
namespace esimd {

/// @addtogroup sycl_esimd_core
/// @{
/// @ingroup sycl_esimd_core

using uchar = unsigned char;
using ushort = unsigned short;
Expand Down
Loading