Difference between revisions of "Benchmarking: CARMA Dev Kit - Linpack"

From Define Wiki
Jump to navigation Jump to search
Line 10: Line 10:
 
  mv linpackc.new linpack.c
 
  mv linpackc.new linpack.c
 
  gcc -O -o linpack linpack.c -lm
 
  gcc -O -o linpack linpack.c -lm
 +
 +
== CPU info ==
 +
cat /proc/cpuinfo
 +
 +
<snip>
 +
Processor      : ARMv7 Processor rev 9 (v7l)
 +
processor      : 0
 +
BogoMIPS        : 1987.37
 +
 +
processor      : 1
 +
BogoMIPS        : 1987.37
 +
 +
processor      : 2
 +
BogoMIPS        : 1987.37
 +
 +
processor      : 3
 +
BogoMIPS        : 1987.37
 +
 +
Features        : swp half thumb fastmult vfp edsp neon vfpv3 tls
 +
CPU implementer : 0x41
 +
CPU architecture: 7
 +
CPU variant    : 0x2
 +
CPU part        : 0xc09
 +
CPU revision    : 9
 +
 +
Hardware        : cardhu
 +
Revision        : 0000
 +
Serial          : 0000000000000000
 +
</snip>

Revision as of 07:00, 31 January 2013

Linkpack

file linpackc.new
for The LINPACK benchmark program done in C (improved version).
lang C
by Based on Bonnie Toy 5/88 but improved by Will Menninger.

wget http://www.netlib.org/benchmark/linpackc.new

Compile

mv linpackc.new linpack.c
gcc -O -o linpack linpack.c -lm

CPU info

cat /proc/cpuinfo

<snip> Processor : ARMv7 Processor rev 9 (v7l) processor : 0 BogoMIPS : 1987.37

processor : 1 BogoMIPS : 1987.37

processor : 2 BogoMIPS : 1987.37

processor : 3 BogoMIPS : 1987.37

Features : swp half thumb fastmult vfp edsp neon vfpv3 tls CPU implementer : 0x41 CPU architecture: 7 CPU variant : 0x2 CPU part : 0xc09 CPU revision : 9

Hardware : cardhu Revision : 0000 Serial : 0000000000000000 </snip>