Skip to content

Commit

Permalink
transformer: test single cluster concat with gemm
Browse files Browse the repository at this point in the history
  • Loading branch information
Viviane Potocnik committed Oct 20, 2023
1 parent eef0700 commit 3f07167
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sw/blas/gemm/src/gemm.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ void gemm_fp64_baseline(uint32_t M, uint32_t N, uint32_t K, double* A,
for (uint32_t n = 0; n < N; n++) {
double c0 = BETA * C[m * ldC + n];
for (uint32_t k = 0; k < K; k++) {
dump_index(k + m * ldA);
dump_gemm(A[k + m * ldA]);
// c0 += A[k + m * ldA] * B[k * ldB + n];
// dump_index(k + m * ldA);
// dump_gemm(A[k + m * ldA]);
c0 += A[k + m * ldA] * B[k * ldB + n];
}
C[m * ldC + n] = c0;
}
Expand Down

0 comments on commit 3f07167

Please sign in to comment.