Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,4 @@
// XFAIL-TRACKER: GSD-5768

#include "common.hpp"

constexpr size_t TN = 16;

#include "joint_matrix_bfloat16_colmajorA_colmajorB_impl.hpp"
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
//
//===----------------------------------------------------------------------===//

#define TM 8
#define TK 16
constexpr size_t TM = 8;
constexpr size_t TN = 16;
constexpr size_t TK = 16;

template <typename T1, typename T2, size_t M, size_t N, size_t K>
void matrix_multiply(big_matrix<T1, M, N> &C, big_matrix<T2, M, K> &A,
Expand Down Expand Up @@ -43,7 +44,6 @@ void matrix_multiply(big_matrix<T1, M, N> &C, big_matrix<T2, M, K> &A,
sub_group sg = spmd_item.get_sub_group();
joint_matrix<sub_group, bfloat16, use::a, TM, TK, layout::col_major>
sub_a;
// For B, we assume B has been already VNNIed.
joint_matrix<sub_group, bfloat16, use::b, TK, TN, layout::col_major>
sub_b;
joint_matrix<sub_group, float, use::accumulator, TM, TN> sub_c;
Expand Down
Loading