Skip to content

Commit 0715816

Browse files
dkhaldibb-sycl
authored andcommitted
[SYCL][Matrix] Minor corrections to the matrix tests (intel#1475)
1 parent fe45a82 commit 0715816

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

SYCL/Matrix/joint_matrix_int8_vnni_impl.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,16 @@ void matrix_multiply(big_matrix<T1, NUM_ROWS_C, NUM_COLS_C> &C,
5050
sub_group sg = spmd_item.get_sub_group();
5151
joint_matrix<sub_group, int8_t, use::a, TM, TK, layout::row_major>
5252
sub_a;
53+
<<<<<<< HEAD
5354
joint_matrix<sub_group, int8_t, use::b, TK, TN,
5455
<<<<<<< HEAD
5556
layout::row_major>
5657
=======
5758
ext::intel::experimental::matrix::layout::packed>
5859
>>>>>>> cbbfcc6c1 ([SYCL] Add matrix tests that use the new API (unified API) (#1391))
60+
=======
61+
joint_matrix<sub_group, int8_t, use::b, TK, TN, layout::row_major>
62+
>>>>>>> 61464a1ec ([SYCL][Matrix] Minor corrections to the matrix tests (#1475))
5963
sub_b;
6064
joint_matrix<sub_group, int32_t, use::accumulator, TM, TN> sub_c;
6165

SYCL/Matrix/joint_matrix_query_default.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,16 +75,22 @@ void matrix_multiply(big_matrix<T1, NUM_ROWS_C, NUM_COLS_C> &C,
7575
ext::oneapi::sub_group sg = spmd_item.get_sub_group();
7676

7777
<<<<<<< HEAD
78+
<<<<<<< HEAD
79+
=======
80+
>>>>>>> 61464a1ec ([SYCL][Matrix] Minor corrections to the matrix tests (#1475))
7881
myparams2::joint_matrix_a<sub_group, layout::row_major> sub_a;
7982
myparams2::joint_matrix_b<
8083
sub_group, ext::intel::experimental::matrix::layout::packed>
8184
sub_b;
8285
myparams2::joint_matrix_accumulator<sub_group> sub_c;
86+
<<<<<<< HEAD
8387
=======
8488
myparams2::joint_matrix_a<sub_group> sub_a;
8589
myparams2::joint_matrix_b<sub_group> sub_b;
8690
myparams2::joint_matrix_c<sub_group> sub_c;
8791
>>>>>>> cbbfcc6c1 ([SYCL] Add matrix tests that use the new API (unified API) (#1391))
92+
=======
93+
>>>>>>> 61464a1ec ([SYCL][Matrix] Minor corrections to the matrix tests (#1475))
8894

8995
joint_matrix_load(sg, sub_c,
9096
accC.get_pointer() + (sg_startx * TM) * N +

0 commit comments

Comments
 (0)