changeset 687:bcb46c9eaae1

slight proofreading
author nickols_k
date Wed, 02 May 2001 14:48:35 +0000
parents 0b3b56e9b9fa
children 1a016347010a
files TOOLS/fastmemcpybench.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/TOOLS/fastmemcpybench.c	Wed May 02 04:29:04 2001 +0000
+++ b/TOOLS/fastmemcpybench.c	Wed May 02 14:48:35 2001 +0000
@@ -116,6 +116,6 @@
   v2 = read_tsc();
   t=GetTimer()-t;
   // ARR_SIZE*100/(1024*1024)/(t/1000000) = ARR_SIZE*95.36743/t
-  printf(NAME": v2-v1=%llu = %dus  (%5.3ffps)  %5.1fMB/s\n",v2-v1,t,100000000.0f/(float)t,(float)ARR_SIZE*95.36743f/(float)t);
+  printf(NAME": cpu clocks=%llu = %dus  (%5.3ffps)  %5.1fMB/s\n",v2-v1,t,100000000.0f/(float)t,(float)ARR_SIZE*95.36743f/(float)t);
   return 0;
 }