| 1 | {{{ |
| 2 | ============================================================================ |
| 3 | HPLinpack 1.0a -- High-Performance Linpack benchmark -- January 20, 2004 |
| 4 | Written by A. Petitet and R. Clint Whaley, Innovative Computing Labs., UTK |
| 5 | ============================================================================ |
| 6 | |
| 7 | An explanation of the input/output parameters follows: |
| 8 | T/V : Wall time / encoded variant. |
| 9 | N : The order of the coefficient matrix A. |
| 10 | NB : The partitioning blocking factor. |
| 11 | P : The number of process rows. |
| 12 | Q : The number of process columns. |
| 13 | Time : Time in seconds to solve the linear system. |
| 14 | Gflops : Rate of execution for solving the linear system. |
| 15 | |
| 16 | The following parameter values will be used: |
| 17 | |
| 18 | N : 28600 |
| 19 | NB : 220 |
| 20 | PMAP : Row-major process mapping |
| 21 | P : 2 |
| 22 | Q : 2 |
| 23 | PFACT : Left |
| 24 | NBMIN : 4 |
| 25 | NDIV : 2 |
| 26 | RFACT : Right |
| 27 | BCAST : 1ringM |
| 28 | DEPTH : 0 |
| 29 | SWAP : Mix (threshold = 64) |
| 30 | L1 : transposed form |
| 31 | U : transposed form |
| 32 | EQUIL : yes |
| 33 | ALIGN : 8 double precision words |
| 34 | |
| 35 | ---------------------------------------------------------------------------- |
| 36 | |
| 37 | - The matrix A is randomly generated for each test. |
| 38 | - The following scaled residual checks will be computed: |
| 39 | 1) ||Ax-b||_oo / ( eps * ||A||_1 * N ) |
| 40 | 2) ||Ax-b||_oo / ( eps * ||A||_1 * ||x||_1 ) |
| 41 | 3) ||Ax-b||_oo / ( eps * ||A||_oo * ||x||_oo ) |
| 42 | - The relative machine precision (eps) is taken to be 1.110223e-16 |
| 43 | - Computational tests pass if scaled residuals are less than 16.0 |
| 44 | |
| 45 | ============================================================================ |
| 46 | T/V N NB P Q Time Gflops |
| 47 | ---------------------------------------------------------------------------- |
| 48 | WR01R2L4 28600 220 2 2 291.85 5.344e+01 |
| 49 | ---------------------------------------------------------------------------- |
| 50 | ||Ax-b||_oo / ( eps * ||A||_1 * N ) = 0.0038030 ...... PASSED |
| 51 | ||Ax-b||_oo / ( eps * ||A||_1 * ||x||_1 ) = 0.0054760 ...... PASSED |
| 52 | ||Ax-b||_oo / ( eps * ||A||_oo * ||x||_oo ) = 0.0011149 ...... PASSED |
| 53 | ============================================================================ |
| 54 | |
| 55 | Finished 1 tests with the following results: |
| 56 | 1 tests completed and passed residual checks, |
| 57 | 0 tests completed and failed residual checks, |
| 58 | 0 tests skipped because of illegal input values. |
| 59 | ---------------------------------------------------------------------------- |
| 60 | |
| 61 | End of Tests. |
| 62 | ============================================================================ |
| 63 | }}} |