Skip to content

Commit

Permalink
fixed cache
Browse files Browse the repository at this point in the history
  • Loading branch information
YuriPlyakhin committed Nov 22, 2024
1 parent 5f7e2dd commit bd4c85c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions sycl/test-e2e/Matrix/joint_matrix_bf16_fill_k_cache_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -483,10 +483,11 @@ size_t matrix_size = -1;
MCache1, NCache1, KCache1, MCache2, NCache2, KCache2>(matrix_size);
test<bfloat16, float, VnniFactor, /*TM*/ 32, /*TN*/ 64, /*TK*/ 16,
MCache1, NCache1, KCache1, MCache2, NCache2, KCache2>(matrix_size);
test<bfloat16, float, VnniFactor, /*TM*/ 1, /*TN*/ 64, /*TK*/ 32,
MCache1, NCache1, KCache1, MCache2, NCache2, KCache2>(matrix_size);
test<bfloat16, float, VnniFactor, /*TM*/ 1, /*TN*/ 64, /*TK*/ 32, MCache1,
NCache1, /*KCache1*/ 32, MCache2, NCache2, KCache2>(matrix_size);
test<bfloat16, float, VnniFactor, /*TM*/ 32, /*TN*/ 64, /*TK*/ 32,
MCache1, NCache1, KCache1, MCache2, NCache2, KCache2>(matrix_size);
MCache1, NCache1, /*KCache1*/ 32, MCache2, NCache2, KCache2>(
matrix_size);
#endif
break;
}
Expand Down

0 comments on commit bd4c85c

Please sign in to comment.