Skip to content

Commit

Permalink
code clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
YixingZhang007 committed Nov 6, 2024
1 parent a427707 commit f943a2e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions sycl/test-e2e/Matrix/get_coordinate_ops_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@ int main() {
layout::ext_intel_packed, 4>();
test_get_coord_op<float, float, /*TM*/ 16, /*TN*/ 16, use::accumulator,
layout::row_major, 1>();
test_get_coord_op<int32_t, int32_t, /*TM*/ 16, /*TN*/ 16, use::accumulator,
layout::row_major, 1>();
test_get_coord_op<int32_t, int32_t, /*TM*/ 16, /*TN*/ 16,
use::accumulator, layout::row_major, 1>();
break;
}

Expand All @@ -195,10 +195,10 @@ int main() {
// This combination is not currently supported for sub group size = 32 in
// IGC
#if (!defined(SG_SZ) || SG_SZ != 32)
test_get_coord_op<bfloat16, float, /*TK*/ 16, /*TN*/ 16, use::b,
test_get_coord_op<bfloat16, float, /*TK*/ 16, /*TN*/ 16, use::b,
layout::row_major, 1>();
test_get_coord_op<int8_t, int32_t, /*TK*/ 32, /*TN*/ 16, use::b,
layout::row_major, 1>();
test_get_coord_op<int8_t, int32_t, /*TK*/ 32, /*TN*/ 16, use::b,
layout::row_major, 1>();
#endif
break;
}
Expand Down

0 comments on commit f943a2e

Please sign in to comment.