Skip to content

Commit 53b619f

Browse files
authored
[SYCL][ESIMD] Remove array specialization of copy_from function (#6480)
Remove array specialization of copy_from function
1 parent 0b64bc1 commit 53b619f

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

sycl/include/sycl/ext/intel/esimd/detail/simd_obj_impl.hpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -326,14 +326,6 @@ class simd_obj_impl {
326326
copy_from(acc, offset, Flags{});
327327
}
328328

329-
/// Initializes this object from an rvalue to an array with the same number
330-
/// of elements.
331-
/// @param Arr Rvalue reference to the array.
332-
template <int N1> std::enable_if_t<N1 == N> copy_from(const Ty (&&Arr)[N1]) {
333-
__esimd_dbg_print(copy_from(const Ty(&&Arr)[N1]));
334-
init_from_array(std::move(Arr));
335-
}
336-
337329
/// Type conversion into a scalar:
338330
/// <code><simd_obj_impl<RawTy, 1, simd<Ty,1>></code> to \c Ty.
339331
template <typename T = simd_obj_impl,

0 commit comments

Comments
 (0)