Skip to content

Commit 8f0fb2b

Browse files
2 parents b1bd9cc + 9a45c21 commit 8f0fb2b

File tree

8 files changed

+242
-211
lines changed

8 files changed

+242
-211
lines changed

ChangeLog

Lines changed: 31 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
Mar XX, 2024: version 7.7.0
1+
Mar XX, 2024: version 7.7.0 FIXME date
22

33
* SPEX 3.1.0: major revision to API, new methods. Added SPEX_Cholesky,
44
SPEX_Backslash, and python interface. MATLAB interface revised.
55
* Example 1.7.0: revised for change in SPEX API
6-
* GraphBLAS 9.1.0: revised definitions of C11 or MSVC complex type
6+
* GraphBLAS 9.1.0: revised defn of C11 or MSVC complex type, bug fix
7+
* CXSparse 4.4.0: revise malloc/calloc/realloc/free wrappers
78
* All others: minor changes to build system
8-
99
* Package versions in this release:
1010
SuiteSparse_config 7.7.0
1111
AMD 3.3.2
@@ -15,7 +15,7 @@ Mar XX, 2024: version 7.7.0
1515
CHOLMOD 5.2.1
1616
COLAMD 3.3.3
1717
CSparse 4.3.2
18-
CXSparse 4.3.2
18+
CXSparse 4.4.0
1919
Example 1.7.0
2020
GraphBLAS 9.1.0
2121
KLU 2.3.3
@@ -28,6 +28,33 @@ Mar XX, 2024: version 7.7.0
2828
SPQR 4.3.3
2929
UMFPACK 6.3.3
3030

31+
Mar 2, 2024: version 7.6.1
32+
33+
* GraphBLAS 9.0.3: performance bug fix (JIT kernels were not compiled with
34+
OpenMP, since v8.3.1), and fix to Makefile ("make static")
35+
* SuiteSparse_config 7.6.1: version number, added link to math.js in README
36+
* Package versions in this release:
37+
SuiteSparse_config 7.6.1
38+
AMD 3.3.1
39+
BTF 2.3.1
40+
CAMD 3.3.1
41+
CCOLAMD 3.3.2
42+
CHOLMOD 5.2.0
43+
COLAMD 3.3.2
44+
CSparse 4.3.1
45+
CXSparse 4.3.1
46+
Example 1.6.2
47+
GraphBLAS 9.0.3
48+
KLU 2.3.2
49+
LDL 3.3.1
50+
LAGraph 1.1.2
51+
SuiteSparse_Mongoose 3.3.2
52+
ParU 0.1.2
53+
RBio 4.3.1
54+
SPEX 2.3.2
55+
SPQR 4.3.2
56+
UMFPACK 6.3.2
57+
3158
Jan 20, 2024: version 7.6.0
3259

3360
* CHOLMOD 5.2.0: bug fix (restore ABI compatibility with 5.0.x, i.e., 5.2.0

Example/Include/my_internal.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
#endif
5050

5151
#include "cs.h"
52-
#if !defined (CXSPARSE__VERSION) || CXSPARSE__VERSION < SUITESPARSE__VERCODE(4,3,2)
53-
#error "This library requires CXSparse 4.3.2 or later"
52+
#if !defined (CXSPARSE__VERSION) || CXSPARSE__VERSION < SUITESPARSE__VERCODE(4,4,0)
53+
#error "This library requires CXSparse 4.4.0 or later"
5454
#endif
5555

5656
#if ! defined (NO_GRAPHBLAS)

GraphBLAS/Tcov/log_Jan9.txt

Lines changed: 0 additions & 204 deletions
This file was deleted.

GraphBLAS/Tcov/log_Mar21.txt

Lines changed: 205 additions & 0 deletions
Large diffs are not rendered by default.

LAGraph/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
cmake_minimum_required ( VERSION 3.20 ) # LAGraph can be built stand-alone
4040

4141
# version of LAGraph
42-
set ( LAGraph_DATE "Feb XX, 2024" )
42+
set ( LAGraph_DATE "Feb XX, 2024" ) # FIXME date for 7.7.0
4343
set ( LAGraph_VERSION_MAJOR 1 CACHE STRING "" FORCE )
4444
set ( LAGraph_VERSION_MINOR 1 CACHE STRING "" FORCE )
4545
set ( LAGraph_VERSION_SUB 3 CACHE STRING "" FORCE )

LAGraph/experimental/test/test_BF.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -396,6 +396,8 @@ void test_BF (void)
396396
// since d5 is a dense vector filled with infinity, we have
397397
// to compare it against d seperaterly
398398
OK (GrB_Vector_extractElement (&di, d5, i)) ;
399+
printf ("di %g d[i] %g difference %g\n",
400+
di, d [i], di - d [i]) ;
399401
TEST_CHECK (di == d[i]) ;
400402

401403
// since d5a is a dense vector filled with infinity, we

SPEX/Tcov/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ spex_demo_lu_extended
77
tcov_for_cholesky
88
tcov_for_lu
99
tcov_for_lu2
10+
tcov_for_other

SPEX/Tcov/tcov_for_other

-440 KB
Binary file not shown.

0 commit comments

Comments
 (0)