Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 303185
Collapse All | Expand All

(-)tune/blas/ger/r1ktime.c (+6 lines)
Lines 259-264 double r1time( Link Here
259
   }
259
   }
260
   t1 = time00();
260
   t1 = time00();
261
   t1 = (t1 - t0)/(1.0*nreps);
261
   t1 = (t1 - t0)/(1.0*nreps);
262
   if (t1 < 0) {
263
       t1 = 0;
264
   }
262
   if (verb)
265
   if (verb)
263
      fprintf(stdout, "   M=%d, N=%d, lda=%d, nreps=%d, time=%e, mflop=%.2f\n",
266
      fprintf(stdout, "   M=%d, N=%d, lda=%d, nreps=%d, time=%e, mflop=%.2f\n",
264
              M, N, lda, nreps, t1, Time2Flop(M, N, t1));
267
              M, N, lda, nreps, t1, Time2Flop(M, N, t1));
Lines 417-422 double r1time( Link Here
417
   t1 = time00();
420
   t1 = time00();
418
   free(vmem);
421
   free(vmem);
419
   t1 = (t1-t0) / (1.0*nreps);
422
   t1 = (t1-t0) / (1.0*nreps);
423
   if (t1 < 0) {
424
       t1 = 0;
425
   }
420
   if (verb)
426
   if (verb)
421
      fprintf(stdout, "   M=%d, N=%d, lda=%d, nreps=%d, time=%e, mflop=%.2f\n",
427
      fprintf(stdout, "   M=%d, N=%d, lda=%d, nreps=%d, time=%e, mflop=%.2f\n",
422
              M, N, lda, nreps, t1, Time2Flop(M, N, t1));
428
              M, N, lda, nreps, t1, Time2Flop(M, N, t1));

Return to bug 303185