Skip to content

Commit

Permalink
Benchmark cleanup #56
Browse files Browse the repository at this point in the history
  • Loading branch information
nakatamaho committed Sep 24, 2022
1 parent 0562aba commit 4975ee9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benchmark/mpblas/dgemm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ int main(int argc, char *argv[]) {
double elapsedtime;
char transa = 'n', transb = 'n';
int STEPN = 7, STEPM = 7, STEPK = 7, LOOPS = 7, TOTALSTEPS = 428;
int m = 1, n = 1, k = 1, int lda, ldb, ldc;
int i, ka, kb, p;
int m = 1, n = 1, k = 1;
int i, ka, kb, p, lda, ldb, ldc;

using Clock = std::chrono::high_resolution_clock;
using std::chrono::duration_cast;
Expand Down

0 comments on commit 4975ee9

Please sign in to comment.