Skip to content

Commit bb68eef

Browse files
authored
[SYCL][ESIMD][NFC] Align namespace name with the spec guidelines (#2573)
SYCL specification recommends using `detail` namespace for implementation details. This change should unify the name across the whole project.
1 parent a108e93 commit bb68eef

File tree

2 files changed

+117
-129
lines changed

2 files changed

+117
-129
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ constexpr unsigned int ElemsPerAddrDecoding(unsigned int ElemsPerAddrEncoded) {
7777
return (1 << ElemsPerAddrEncoded);
7878
}
7979

80-
namespace details {
80+
namespace detail {
8181

8282
/// type traits
8383
template <typename T> struct is_esimd_vector {
@@ -236,7 +236,7 @@ template <> struct word_type<int> { using type = short; };
236236
template <> struct word_type<uchar> { using type = ushort; };
237237
template <> struct word_type<uint> { using type = ushort; };
238238

239-
} // namespace details
239+
} // namespace detail
240240
} // namespace gpu
241241
} // namespace INTEL
242242
} // namespace sycl

0 commit comments

Comments
 (0)