summaryrefslogtreecommitdiffstats
path: root/TOOLS/fastmemcpybench.c
diff options
context:
space:
mode:
authornickols_k <nickols_k@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-05-02 14:48:35 +0000
committernickols_k <nickols_k@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-05-02 14:48:35 +0000
commit798db8a716a777bc638f56c03d53ce44fa61fa56 (patch)
tree251edf90e26b040fcda9e9d8d7a5b7643e9450ac /TOOLS/fastmemcpybench.c
parent829e701e2c78be9671e992de7c7ed63f5a39056c (diff)
downloadmpv-798db8a716a777bc638f56c03d53ce44fa61fa56.tar.bz2
mpv-798db8a716a777bc638f56c03d53ce44fa61fa56.tar.xz
slight proofreading
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@688 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'TOOLS/fastmemcpybench.c')
-rw-r--r--TOOLS/fastmemcpybench.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/TOOLS/fastmemcpybench.c b/TOOLS/fastmemcpybench.c
index ec51c52db8..dd153a2b75 100644
--- a/TOOLS/fastmemcpybench.c
+++ b/TOOLS/fastmemcpybench.c
@@ -116,6 +116,6 @@ int main( void )
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;
}