We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcfa304 commit 59765a6Copy full SHA for 59765a6
sycl/include/sycl/ext/oneapi/matrix/matrix-unified.hpp
@@ -496,8 +496,8 @@ void joint_matrix_copy(
496
auto wi_data_dst = sycl::ext::oneapi::detail::get_wi_data(sg, dst);
497
for (int i = 0; i < wi_data_c.length(); i++) {
498
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.
+ // Special case for SRC type sycl:half since we can't
+ // cast directly from wi_element(typed half) to other type.
501
// first cast is from wi_element to half (T1).
502
// second cast is from half to dst type (T2).
503
wi_data_dst[i] = static_cast<storage_element_type>(
0 commit comments