Skip to content

Commit 59765a6

Browse files
committed
fix typo and space at end of comment
1 parent dcfa304 commit 59765a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sycl/include/sycl/ext/oneapi/matrix/matrix-unified.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -496,8 +496,8 @@ void joint_matrix_copy(
496496
auto wi_data_dst = sycl::ext::oneapi::detail::get_wi_data(sg, dst);
497497
for (int i = 0; i < wi_data_c.length(); i++) {
498498
if constexpr (std::is_same_v<T1, sycl::half>) {
499-
// Special case for SRC type sycl:half since we can't
500-
// cast direvtly from wi_element(typed half) to other type.
499+
// Special case for SRC type sycl:half since we can't
500+
// cast directly from wi_element(typed half) to other type.
501501
// first cast is from wi_element to half (T1).
502502
// second cast is from half to dst type (T2).
503503
wi_data_dst[i] = static_cast<storage_element_type>(

0 commit comments

Comments
 (0)