Skip to content

Commit c61c894

Browse files
author
Alexander Batashev
committed
clang-format
1 parent 7306635 commit c61c894

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

sycl/include/CL/sycl/INTEL/esimd/esimd.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ template <typename Ty, int N> class simd {
276276
return Ret;
277277
}
278278

279-
/// \name Replicate
279+
/// \name Replicate
280280
/// Replicate simd instance given a region.
281281
/// @{
282282
///

sycl/include/CL/sycl/INTEL/esimd/esimd_memory.hpp

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -248,9 +248,9 @@ ESIMD_INLINE ESIMD_NODEBUG void block_store(AccessorTy acc, uint32_t offset,
248248
#endif // __SYCL_DEVICE_ONLY__ && __SYCL_EXPLICIT_SIMD__
249249
}
250250

251-
/// Accessor-based gather.
251+
/// Accessor-based gather.
252252
///
253-
/// Collects elements located at given offsets in an accessor and returns them
253+
/// Collects elements located at given offsets in an accessor and returns them
254254
/// as a single \ref simd object. An element can be 1, 2 or 4-byte value.
255255
///
256256
/// \tparam T is element type; can only be a 1,2,4-byte integer or \c float.
@@ -313,9 +313,9 @@ ESIMD_INLINE ESIMD_NODEBUG
313313
}
314314
}
315315

316-
/// Accessor-based scatter.
316+
/// Accessor-based scatter.
317317
///
318-
/// Writes elements of a \ref simd object into an accessor at given offsets.
318+
/// Writes elements of a \ref simd object into an accessor at given offsets.
319319
/// An element can be 1, 2 or 4-byte value.
320320
///
321321
/// \tparam T is element type; can only be a 1,2,4-byte integer or \c float.
@@ -821,7 +821,7 @@ ESIMD_INLINE ESIMD_NODEBUG uint32_t esimd_get_value(AccessorTy acc) {
821821
}
822822

823823
/// \defgroup sycl_esimd_raw_send_api Raw send APIs
824-
/// APIs below are used to implement the send messages on Intel(R) processor
824+
/// APIs below are used to implement the send messages on Intel(R) processor
825825
/// graphics, as defined in the documentation at
826826
/// https://01.org/sites/default/files/documentation/intel-gfx-prm-osrc-icllp-vol02a-commandreference-instructions_2.pdf
827827
///
@@ -835,9 +835,9 @@ ESIMD_INLINE ESIMD_NODEBUG uint32_t esimd_get_value(AccessorTy acc) {
835835
/// \param msgSrc1 is the second source operand of send message.
836836
/// \param exDesc is the extended message descriptor.
837837
/// \param msgDesc is the message descriptor.
838-
/// \param execSize is the execution size, which must be a compile time
838+
/// \param execSize is the execution size, which must be a compile time
839839
/// constant.
840-
/// \param sfid is the shared function ID, which must be a compile time
840+
/// \param sfid is the shared function ID, which must be a compile time
841841
/// constant.
842842
/// \param numSrc0 is the number of GRFs for source-0, which must be a compile
843843
/// time constant.
@@ -921,15 +921,15 @@ esimd_raw_send_load(simd<T1, n1> msgDst, simd<T2, n2> msgSrc0, uint32_t exDesc,
921921
/// constant.
922922
/// \param sfid is the shared function ID, which must be a compile time
923923
/// constant.
924-
/// \param numSrc0 is the number of GRFs for source-0, which must be a compile
924+
/// \param numSrc0 is the number of GRFs for source-0, which must be a compile
925925
/// time constant.
926-
/// \param numSrc1 is the number of GRFs for source-1, which must be a compile
926+
/// \param numSrc1 is the number of GRFs for source-1, which must be a compile
927927
/// time constant.
928-
/// \param isEOT is the flag that indicates whether this is an EOT message,
928+
/// \param isEOT is the flag that indicates whether this is an EOT message,
929929
/// which must be a compile time constant (optional - default to 0).
930-
/// \param isSendc is the flag that indicates whether sendc should be used,
930+
/// \param isSendc is the flag that indicates whether sendc should be used,
931931
/// which must be a compile time constant (optional - default to 0).
932-
/// \param mask is the predicate to specify enabled channels (optional - default
932+
/// \param mask is the predicate to specify enabled channels (optional - default
933933
/// to on).
934934
template <typename T1, int n1, typename T2, int n2, int N = 16>
935935
ESIMD_INLINE ESIMD_NODEBUG void
@@ -958,13 +958,13 @@ esimd_raw_sends_store(simd<T1, n1> msgSrc0, simd<T2, n2> msgSrc1,
958958
/// constant.
959959
/// \param sfid is the shared function ID, which must be a compile time
960960
/// constant.
961-
/// \param numSrc0 is the number of GRFs for source-0, which must be a compile
961+
/// \param numSrc0 is the number of GRFs for source-0, which must be a compile
962962
/// time constant.
963-
/// \param isEOT is the flag that indicates whether this is an EOT message,
963+
/// \param isEOT is the flag that indicates whether this is an EOT message,
964964
/// which must be a compile time constant (optional - default to 0).
965-
/// \param isSendc is the flag that indicates whether sendc should be used,
965+
/// \param isSendc is the flag that indicates whether sendc should be used,
966966
/// which must be a compile time constant (optional - default to 0).
967-
/// \param mask is the predicate to specify enabled channels (optional - default
967+
/// \param mask is the predicate to specify enabled channels (optional - default
968968
/// to on).
969969
template <typename T1, int n1, int N = 16>
970970
ESIMD_INLINE ESIMD_NODEBUG void

sycl/include/CL/sycl/INTEL/esimd/esimd_view.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ template <typename BaseTy, typename RegionTy> class simd_view {
283283
return read()[i];
284284
}
285285

286-
/// \name Replicate
286+
/// \name Replicate
287287
/// Replicate simd instance given a simd_view
288288
/// @{
289289
///

0 commit comments

Comments
 (0)