Skip to content

Commit 72951ea

Browse files
code clean up
1 parent 4c76c35 commit 72951ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sycl/test-e2e/Matrix/get_coordinate_ops_impl.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ void test_get_coord_op() {
122122
TResult sum_cols[Cols] = {0};
123123
TResult sum_cols_ref[Cols] = {0};
124124

125-
matrix_fill(Rows, Cols, (T *)M, [](int i, int j) { return T(1) * (i + j); });
125+
matrix_fill(Rows, Cols, (T *)M, [](int i, int j) { return T(i + j); });
126126

127127
matrix_vnni<T>(Rows, Cols, *M, *Mvnni, VF);
128128
big_matrix<T, Rows / VF, Cols * VF> MM((T *)&Mvnni);

0 commit comments

Comments
 (0)