@@ -378,14 +378,12 @@ joint_matrix_store(Group sg,
378
378
// This handles cases where matrix can be put into a tile
379
379
template <typename Group, typename T, size_t NumRows, size_t NumCols,
380
380
matrix_layout Layout, access::address_space Space>
381
- inline __SYCL_ALWAYS_INLINE
382
- typename std::enable_if_t <(NumRows <= tile_size) &&
383
- (NumCols * sizeof (T) / 4 <= tile_size),
384
- void >::type
385
- joint_matrix_store (Group sg,
386
- joint_matrix<Group, T, NumRows, NumCols, Layout> &jm,
387
- multi_ptr<T, Space> dst, size_t stride,
388
- matrix_layout layout) {
381
+ inline __SYCL_ALWAYS_INLINE typename std::enable_if_t <
382
+ (NumRows <= tile_size) && (NumCols * sizeof (T) / 4 <= tile_size), void >
383
+ joint_matrix_store (Group sg,
384
+ joint_matrix<Group, T, NumRows, NumCols, Layout> &jm,
385
+ multi_ptr<T, Space> dst, size_t stride,
386
+ matrix_layout layout) {
389
387
T *mem = dst.get ();
390
388
// tilestore happens!
391
389
tilestored64_internal (NumRows, NumCols * sizeof (T),
0 commit comments