| Home | Info | Benchmarks | Conclusion | Downloads |
|
Routines used: STREAM void STREAM_Copy(double *source,double *destination, int size){
int j;
size=size/8;
for (j=0; j < size; j++) source[j] = destination[j];
}
Byte Copy void byte_copy(char *source,char *destination, int size) {
int j;
for (j=0; j < size; j++) source[j] = destination[j];
}
MySQL bmove512
FC 64
Libmotovec
Apple memcpy/bcopy
Simple Amiga benchmark source stream.c (20 KB) Compile with: gcc -O3 stream.c -o stream
Amiga benchmark simple 68k/Coldfire executable
MorphOS benchmark simple executable
APPLE MAC OS X benchmark executable
LINUX x86 compiled benchmark executable
LINUX PPC-32 static compiled benchmark executable
Membench testsuite source code. Linux (C/ASM)
|