# HG changeset patch # User nickols_k # Date 988814915 0 # Node ID bcb46c9eaae14fdc7eacbd4b4973d3cc2e800c31 # Parent 0b3b56e9b9fa3fdc541bc0e61494985ba947e647 slight proofreading diff -r 0b3b56e9b9fa -r bcb46c9eaae1 TOOLS/fastmemcpybench.c --- 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; }