/mobile Handheld Friendly website
Ubuntu : Intel® Q6600® one core |
Each table row shows performance measurements for this C# Mono program with a particular command-line input value N.
| N | CPU secs | Elapsed secs | Memory KB | Code B | ≈ CPU Load |
|---|---|---|---|---|---|
| 500 | 0.36 | 0.36 | 272 | 459 | 0% 3% 0% 100% |
| 3,000 | 9.29 | 9.30 | 13,872 | 459 | 0% 1% 0% 100% |
| 5,500 | 30.98 | 30.99 | 13,872 | 459 | 0% 0% 0% 100% |
Read the ↓ make, command line, and program output logs to see how this program was run.
Read spectral-norm benchmark to see what this program should do.
Mono JIT compiler version 3.0.3 (tarball Tue Feb 12 10:56:44 PST 2013)
LLVM: yes(3.2svn-mono)
/* The Computer Language Benchmarks Game http://benchmarksgame.alioth.debian.org/ contributed by Isaac Gouy */ using System; class SpectralNorm { public static void Main(String[] args) { int n = 100; if (args.Length > 0) n = Int32.Parse(args[0]); Console.WriteLine("{0:f9}", new SpectralNorm().Approximate(n)); } double Approximate(int n) { // create unit vector double[] u = new double[n]; for (int i=0; i<n; i++) u[i] = 1; // 20 steps of the power method double[] v = new double[n]; for (int i=0; i<n; i++) v[i] = 0; for (int i=0; i<10; i++) { MultiplyAtAv(n,u,v); MultiplyAtAv(n,v,u); } // B=AtA A multiplied by A transposed // v.Bv /(v.v) eigenvalue of v double vBv = 0, vv = 0; for (int i=0; i<n; i++) { vBv += u[i]*v[i]; vv += v[i]*v[i]; } return Math.Sqrt(vBv/vv); } /* return element i,j of infinite matrix A */ double A(int i, int j){ return 1.0/((i+j)*(i+j+1)/2 +i+1); } /* multiply vector v by matrix A */ void MultiplyAv(int n, double[] v, double[] Av){ for (int i=0; i<n; i++){ Av[i] = 0; for (int j=0; j<n; j++) Av[i] += A(i,j)*v[j]; } } /* multiply vector v by matrix A transposed */ void MultiplyAtv(int n, double[] v, double[] Atv){ for (int i=0;i<n;i++){ Atv[i] = 0; for (int j=0; j<n; j++) Atv[i] += A(j,i)*v[j]; } } /* multiply vector v by matrix A and then by matrix A transposed */ void MultiplyAtAv(int n, double[] v, double[] AtAv){ double[] u = new double[n]; MultiplyAv(n,v,u); MultiplyAtv(n,u,AtAv); } }
Tue, 12 Feb 2013 21:29:24 GMT MAKE: mv spectralnorm.csharp spectralnorm.cs /usr/local/bin/mcs -optimize+ -platform:x86 -out:spectralnorm.csharp_run spectralnorm.cs rm spectralnorm.cs 0.23s to complete and log all make actions COMMAND LINE: /usr/local/bin/mono --llvm spectralnorm.csharp_run 5500 PROGRAM OUTPUT: 1.274224153 <premain>: CommandLine Error: Argument 'misched' defined more than once! <premain>: CommandLine Error: Argument 'print-machineinstrs' defined more than once! -simplifycfg: CommandLine Error: Argument 'misched' defined more than once! -simplifycfg: CommandLine Error: Argument 'print-machineinstrs' defined more than once!