Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SYCL][Joint matrix] clarify the range of the prefetch templated argu…
…ments (#13796) This is a clarification to match all the matrix spec that `Rows` and `Cols` are in the range of the logical dimensions, independently from the memory layout. For instance, in the `ext_intel_packed` (or VNNI) layout case, prefetch will look like: `joint_matrix_prefetch<TK, TN>(sg, B + sg_starty / SG_SZ * TN * vnniFactor, N * vnniFactor, layout::ext_intel_packed, syclex::properties{syclex::prefetch_hint_L1}); ` instead of `joint_matrix_prefetch<TK / vnniFactor, TN * vnniFactor>( sg, B + sg_starty / SG_SZ * TN * vnniFactor, N * vnniFactor, layout::ext_intel_packed, syclex::properties{syclex::prefetch_hint_L1}); `
- Loading branch information