Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…arse into dev2
  • Loading branch information
DrTimothyAldenDavis committed Mar 22, 2024
2 parents b1bd9cc + 9a45c21 commit 8f0fb2b
Show file tree
Hide file tree
Showing 8 changed files with 242 additions and 211 deletions.
35 changes: 31 additions & 4 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Mar XX, 2024: version 7.7.0
Mar XX, 2024: version 7.7.0 FIXME date

* SPEX 3.1.0: major revision to API, new methods. Added SPEX_Cholesky,
SPEX_Backslash, and python interface. MATLAB interface revised.
* Example 1.7.0: revised for change in SPEX API
* GraphBLAS 9.1.0: revised definitions of C11 or MSVC complex type
* GraphBLAS 9.1.0: revised defn of C11 or MSVC complex type, bug fix
* CXSparse 4.4.0: revise malloc/calloc/realloc/free wrappers
* All others: minor changes to build system

* Package versions in this release:
SuiteSparse_config 7.7.0
AMD 3.3.2
Expand All @@ -15,7 +15,7 @@ Mar XX, 2024: version 7.7.0
CHOLMOD 5.2.1
COLAMD 3.3.3
CSparse 4.3.2
CXSparse 4.3.2
CXSparse 4.4.0
Example 1.7.0
GraphBLAS 9.1.0
KLU 2.3.3
Expand All @@ -28,6 +28,33 @@ Mar XX, 2024: version 7.7.0
SPQR 4.3.3
UMFPACK 6.3.3

Mar 2, 2024: version 7.6.1

* GraphBLAS 9.0.3: performance bug fix (JIT kernels were not compiled with
OpenMP, since v8.3.1), and fix to Makefile ("make static")
* SuiteSparse_config 7.6.1: version number, added link to math.js in README
* Package versions in this release:
SuiteSparse_config 7.6.1
AMD 3.3.1
BTF 2.3.1
CAMD 3.3.1
CCOLAMD 3.3.2
CHOLMOD 5.2.0
COLAMD 3.3.2
CSparse 4.3.1
CXSparse 4.3.1
Example 1.6.2
GraphBLAS 9.0.3
KLU 2.3.2
LDL 3.3.1
LAGraph 1.1.2
SuiteSparse_Mongoose 3.3.2
ParU 0.1.2
RBio 4.3.1
SPEX 2.3.2
SPQR 4.3.2
UMFPACK 6.3.2

Jan 20, 2024: version 7.6.0

* CHOLMOD 5.2.0: bug fix (restore ABI compatibility with 5.0.x, i.e., 5.2.0
Expand Down
4 changes: 2 additions & 2 deletions Example/Include/my_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
#endif

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

#if ! defined (NO_GRAPHBLAS)
Expand Down
204 changes: 0 additions & 204 deletions GraphBLAS/Tcov/log_Jan9.txt

This file was deleted.

205 changes: 205 additions & 0 deletions GraphBLAS/Tcov/log_Mar21.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion LAGraph/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
cmake_minimum_required ( VERSION 3.20 ) # LAGraph can be built stand-alone

# version of LAGraph
set ( LAGraph_DATE "Feb XX, 2024" )
set ( LAGraph_DATE "Feb XX, 2024" ) # FIXME date for 7.7.0
set ( LAGraph_VERSION_MAJOR 1 CACHE STRING "" FORCE )
set ( LAGraph_VERSION_MINOR 1 CACHE STRING "" FORCE )
set ( LAGraph_VERSION_SUB 3 CACHE STRING "" FORCE )
Expand Down
2 changes: 2 additions & 0 deletions LAGraph/experimental/test/test_BF.c
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,8 @@ void test_BF (void)
// since d5 is a dense vector filled with infinity, we have
// to compare it against d seperaterly
OK (GrB_Vector_extractElement (&di, d5, i)) ;
printf ("di %g d[i] %g difference %g\n",
di, d [i], di - d [i]) ;
TEST_CHECK (di == d[i]) ;

// since d5a is a dense vector filled with infinity, we
Expand Down
1 change: 1 addition & 0 deletions SPEX/Tcov/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ spex_demo_lu_extended
tcov_for_cholesky
tcov_for_lu
tcov_for_lu2
tcov_for_other
Binary file removed SPEX/Tcov/tcov_for_other
Binary file not shown.

0 comments on commit 8f0fb2b

Please sign in to comment.