Update gemm.c

This commit is contained in:
Martin Kroeker 2020-04-08 17:25:28 +02:00 committed by GitHub
parent 626e98028d
commit 3778b91657
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -126,14 +126,14 @@ int main(int argc, char *argv[]){
char transa = 'N';
char transb = 'N';
blasint m, n, k, i, j, lda, ldb, ldc;
int loops = 100000;
int loops = 1000000;
int has_param_m = 0;
int has_param_n = 0;
int has_param_k = 0;
char *p;
int from = 1;
int to = 30;
int to = 50;
int step = 1;
struct timeval start, stop;