slight proofreading

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@688 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
nickols_k 2001-05-02 14:48:35 +00:00
parent 829e701e2c
commit 798db8a716
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}