Skip to content

Commit

Permalink
works with c2c
Browse files Browse the repository at this point in the history
  • Loading branch information
rogerbarton committed Jan 19, 2024
1 parent a0f25dc commit 2cad862
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sw/blas/gemm/src/gemm_occamy_2dpipe.h
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ void gemm_oc(const GemmInfo info, const GemmArgs args) {
const uint32_t p_srcA = pi * PJ + ((2 * PJ - pi - pk) % PJ);
const uint32_t p_srcB = pj + PJ * ((2 * PJ - pj - pk) % PJ);

const bool fetch_dram = true;//pk == 0;
const bool fetch_dram = pk == 0;
c2cL1_A = fetch_dram ? NULL : l1Ptr[p_srcA];
c2cL1_B = fetch_dram ? NULL : l1Ptr[p_srcB];

Expand Down

0 comments on commit 2cad862

Please sign in to comment.