-
Notifications
You must be signed in to change notification settings - Fork 4
/
HISTORY
82 lines (65 loc) · 3.05 KB
/
HISTORY
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
==============================================================
High Performance Computing Linpack Benchmark (HPL)
HPL - 2.2 - February 24, 2016
==============================================================
History
- 09/09/00 Public release of Version 1.0
- 09/27/00 A couple of mistakes in the VSIPL port have been
corrected. The tar file as well as the web site were updated
on September 27th, 2000. Note that these problems were not
affecting the BLAS version of the software in any way.
- 01/01/04 Version 1.0a
The MPI process grid numbering scheme is now an run-time
option.
The inlined assembly timer routine that caused the compila-
tion to fail when using gcc version 3.3 and above has been
removed from the package.
Various building problems on the T3E have been fixed; Thanks
to Edward Anderson.
- 15/12/04 Version 1.0b
Weakness of the pseudo-random matrix generator found for pro-
blem sizes being power of twos and larger than 2^15; Thanks
to Gregory Bauer. This problem has not been fixed. It is thus
currently recommended to HPL users willing to test matrices
of size larger than 2^15 to not use power twos.
When the matrix size is such that one needs > 16 GB per MPI
rank, the intermediate calculation (mat.ld+1) * mat.nq in
HPL_pdtest.c ends up overflowing because it is done using
32-bit arithmetic. This issue has been fixed by typecasting
to size_t; Thanks to John Baron.
- 09/10/08 Version 2.0
Piotr Luszczek changed to 64-bit RNG, modified files:
-- [M] include/hpl_matgen.h
-- [M] testing/matgen/HPL_ladd.c
-- [M] testing/matgen/HPL_lmul.c
-- [M] testing/matgen/HPL_rand.c
-- [M] testing/ptest/HPL_pdinfo.c
For a motivation for the change, see:
Dongarra and Langou, ``The Problem with the Linpack
Benchmark Matrix Generator'', LAWN 206, June 2008.
-- [M] testing/ptest/HPL_pdtest.c --
Julien Langou changed the test for correctness from
||Ax-b||_oo / ( eps * ||A||_1 * N )
||Ax-b||_oo / ( eps * ||A||_1 * ||x||_1 )
||Ax-b||_oo / ( eps * ||A||_oo * ||x||_oo * N )
to the normwise backward error
|| r ||_oo / ( eps * ( || x ||_oo * || A ||_oo + || b ||_oo ) * N )
See:
Nicholas J. Higham, ``Accuracy and Stability of Numerical Algorithms'',
Society for Industrial and Applied Mathematics, Philadelphia, PA, USA,
Second Edition, pages = xxx+680, ISBN = 0-89871-521-0, 2002.
Note that in our case || b ||_oo is almost for sure
1/2, we compute it anyway.
- 10/26/2012 Version 2.1
Piotr Luszczek introduced exact time stamping for HPL_pdgesv():
-- [M] dist/include/hpl_misc.h
-- [M] dist/testing/ptest/HPL_pdtest.c
Piotr Luszczek fixed out-of-bounds access in data spreading functions
and exact time stamping for HPL_pdgesv():
-- [M] dist/src/pgesv/HPL_spreadN.c
-- [M] dist/src/pgesv/HPL_spreadT.c
Thanks to Stephen Whalen from Cray.
- 02/24/2016 Version 2.2
Piotr Luszczek added continuous reporting of factorization progress
submitted by Intel and make scripts that uses Intel software tools and
libraries and their Apple's Mac OS X equivalents.