Skip to content

Commit

Permalink
Intel: GEMM benchmark (#96)
Browse files Browse the repository at this point in the history
Fix max_sizeb computation
  • Loading branch information
lhuot authored and dmudiger committed May 8, 2018
1 parent 57a0562 commit 3540221
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/intel/gemm/bench.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ int main(int argc, char *argv[])
sizec = p_gemm_params[i].ldc * p_gemm_params[i].n;

max_sizea = std::max(sizea, max_sizea);
max_sizeb = std::max(sizea, max_sizeb);
max_sizeb = std::max(sizeb, max_sizeb);
max_sizec = std::max(sizec, max_sizec);

max_m = std::max(p_gemm_params[i].m, max_m);
Expand Down

0 comments on commit 3540221

Please sign in to comment.