Skip to content

Commit f900df0

Browse files
5.8.0
1 parent d83b1a9 commit f900df0

File tree

126 files changed

+69170
-73
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

126 files changed

+69170
-73
lines changed

CSparse/MATLAB/ssget/Doc/ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
May 2020: ssget 2.2.0
2+
3+
* update to URL redirects in ssgui
4+
15
Jan 16, 2019: ssget 2.1.0
26

37
* added pdf files to ssget/Doc/ that describe the Rutherford-Boeing and

CSparse/MATLAB/ssget/ssgui.jar

25 Bytes
Binary file not shown.

CSparse/MATLAB/ssget/sshelp.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ <h2>7. Limitations and known issues</h2>
491491
<h2>8. Copyright and License</h2>
492492

493493
<ul>
494-
Copyright (c) 2009-2019, Timothy A. Davis. All rights reserved.
494+
Copyright (c) 2009-2020, Timothy A. Davis. All rights reserved.
495495
See ssget/Doc/License.txt for the license.
496496
</ul>
497497

@@ -501,6 +501,8 @@ <h2>9. Version and Change-Log</h2>
501501
<ul>
502502
<li> See ssget/Doc/Changelog for the changes in each version.
503503

504+
<li>Version 2.2.0, May, 2020. Update to URL redirects.
505+
504506
<li>Version 2.1.0, Jan 16, 2019. Changed "# nonzeros" column to
505507
"# entries".
506508

CSparse_to_CXSparse

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#
1515
# Created by David Bateman, Feb. 2006, David dot Bateman atsign motorola dot
1616
# com, and released by him to Tim Davis' copyright. Modified by Tim Davis,
17-
# 2006-2012, http://www.suitesparse.com.
17+
# 2006-2012, http://suitesparse.com.
1818

1919
use strict;
2020
use Cwd;

CXSparse/MATLAB/ssget/Doc/ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
May 2020: ssget 2.2.0
2+
3+
* update to URL redirects in ssgui
4+
15
Jan 16, 2019: ssget 2.1.0
26

37
* added pdf files to ssget/Doc/ that describe the Rutherford-Boeing and

CXSparse/MATLAB/ssget/ssgui.jar

25 Bytes
Binary file not shown.

CXSparse/MATLAB/ssget/sshelp.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ <h2>7. Limitations and known issues</h2>
491491
<h2>8. Copyright and License</h2>
492492

493493
<ul>
494-
Copyright (c) 2009-2019, Timothy A. Davis. All rights reserved.
494+
Copyright (c) 2009-2020, Timothy A. Davis. All rights reserved.
495495
See ssget/Doc/License.txt for the license.
496496
</ul>
497497

@@ -501,6 +501,8 @@ <h2>9. Version and Change-Log</h2>
501501
<ul>
502502
<li> See ssget/Doc/Changelog for the changes in each version.
503503

504+
<li>Version 2.2.0, May, 2020. Update to URL redirects.
505+
504506
<li>Version 2.1.0, Jan 16, 2019. Changed "# nonzeros" column to
505507
"# entries".
506508

ChangeLog

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
1-
June 30, 2020, SuiteSparse 5.8.0
1+
July 2, 2020, SuiteSparse 5.8.0
22

3+
* SLIP_LU v1.0.0 added: for solving Ax=b exactly. Requires
4+
the GNU GMP and MPRF libraries.
35
* GraphBLAS v3.3.1: see the GraphBLAS/Doc/Changlog
4-
* replaced UFget with ssget
6+
* replaced UFget with ssget: affects nearly all packages:
7+
UMFPACK, KLU, CHOLMOD, CXSparse/CSparse, etc,
8+
but their version numbers are left unchanged since it affects
9+
the MATLAB tests only, not the compiled libraries.
10+
* ssget v2.2.0: better URL redirects
11+
* updates to SuiteSparse build system
512

613
Apr 8, 2020, SuiteSparse 5.7.2
714

Contents.m

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,18 @@
122122
% spqr_qmult - y=Q*x, Q'*x, x*Q, or x*Q' using Q in Householder form
123123
%
124124
%-------------------------------------------------------------------------------
125+
% GraphBLAS: graph algorithms via sparse linear algebra (graphblas.org)
126+
%-------------------------------------------------------------------------------
127+
%
128+
% GrB - the GraphBLAS matrix object; 100s of overloaded functions.
129+
%
130+
%-------------------------------------------------------------------------------
131+
% SLIP_LU: solves sparse Ax=b exactly, with no roundoff error
132+
%-------------------------------------------------------------------------------
133+
%
134+
% SLIP_backslash - solve Ax=b via sparse left-looking integer-preserving LU
135+
%
136+
%-------------------------------------------------------------------------------
125137
% Other packages:
126138
%-------------------------------------------------------------------------------
127139
%
@@ -138,13 +150,12 @@
138150
% SuiteSparseCollection for managing the SuiteSparse Matrix Collection
139151
% RBio for reading/writing Rutherford/Boeing sparse matrices
140152
% ssget MATLAB interface to the SuiteSparse Matrix Collection
141-
% GraphBLAS graph algorithms via sparse linear algebra (graphblas.org)
142153
%
143154
%-------------------------------------------------------------------------------
144155
%
145156
% For help on compiling SuiteSparse or the demos, testing functions, etc.,
146157
% please see the help for each individual package.
147158
%
148-
% Copyright 2018, Timothy A. Davis, http://www.suitesparse.com.
159+
% Copyright 2020, Timothy A. Davis, http://suitesparse.com.
149160

150161
help SuiteSparse

GraphBLAS/CMakeLists.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,13 @@ if ( CMAKE_VERSION VERSION_GREATER "3.0" )
5656
cmake_policy ( SET CMP0048 NEW )
5757
cmake_policy ( SET CMP0054 NEW )
5858
endif ( )
59+
set ( CMAKE_MACOSX_RPATH TRUE )
5960

6061
# version of SuiteSparse:GraphBLAS
61-
set ( GraphBLAS_DATE "June 30, 2020" )
62+
set ( GraphBLAS_DATE "July 3, 2020" )
6263
set ( GraphBLAS_VERSION_MAJOR 3 )
6364
set ( GraphBLAS_VERSION_MINOR 3 )
64-
set ( GraphBLAS_VERSION_SUB 1 )
65+
set ( GraphBLAS_VERSION_SUB 2 )
6566

6667
# GraphBLAS C API Specification version, at graphblas.org
6768
set ( GraphBLAS_API_DATE "Sept 25, 2019" )

GraphBLAS/Doc/ChangeLog

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ Version 4.0.0, FUTURE, 2020 (this list is tentative):
77
* GrB_error: will have two inputs: a string (char **) and an object
88
* V4.0.0 will otherwise be identical to V3.3.0.
99

10+
Version 3.3.2, July 3, 2020
11+
12+
* minor changes to build system
13+
1014
Version 3.3.1, June 30, 2020
1115

1216
* (19) bug fix: incorrect typecasting when GrB_assign or GxB_subassign
@@ -37,7 +41,7 @@ Version 3.3.0, June 26, 2020
3741
* DRAFT interfaces: A few functions have been added to use CUDA and the
3842
Intel MKL library. These are visible in GraphBLAS.h but are
3943
undocumented; do *not* use them yet. They will likely change without
40-
warning, and without change the SuiteSparse:GraphBLAS version number.
44+
warning, and without changing the SuiteSparse:GraphBLAS version number.
4145

4246
Version 3.2.2, Apr 2, 2020
4347

GraphBLAS/Doc/GraphBLAS_UserGuide.pdf

0 Bytes
Binary file not shown.

GraphBLAS/Doc/GraphBLAS_version.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
% version of SuiteSparse:GraphBLAS
22
\date{VERSION
3-
3.3.1,
4-
June 30, 2020}
3+
3.3.2,
4+
July 3, 2020}
55

GraphBLAS/Include/GraphBLAS.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,10 +112,10 @@
112112

113113
// The version of this implementation, and the GraphBLAS API version:
114114
#define GxB_IMPLEMENTATION_NAME "SuiteSparse:GraphBLAS"
115-
#define GxB_IMPLEMENTATION_DATE "June 30, 2020"
115+
#define GxB_IMPLEMENTATION_DATE "July 3, 2020"
116116
#define GxB_IMPLEMENTATION_MAJOR 3
117117
#define GxB_IMPLEMENTATION_MINOR 3
118-
#define GxB_IMPLEMENTATION_SUB 1
118+
#define GxB_IMPLEMENTATION_SUB 2
119119
#define GxB_SPEC_DATE "Sept 25, 2019"
120120
#define GxB_SPEC_MAJOR 1
121121
#define GxB_SPEC_MINOR 3

GraphBLAS/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ static:
3737
# installs GraphBLAS to the install location defined by cmake, usually
3838
# /usr/local/lib and /usr/local/include
3939
install:
40-
( cd build ; $(MAKE) install )
40+
( cd build ; cmake $(CMAKE_OPTIONS) .. ; $(MAKE) --jobs=$(JOBS) ; $(MAKE) install )
4141

4242
# create the Doc/GraphBLAS_UserGuide.pdf
4343
docs:

GraphBLAS/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved.
44
http://suitesparse.com See GraphBLAS/Doc/License.txt for license.
55

6-
VERSION 3.3.1, June 30, 2020
6+
VERSION 3.3.2, July 3, 2020
77

88
SuiteSparse:GraphBLAS is an full implementation of the GraphBLAS standard,
99
which defines a set of sparse matrix operations on an extended algebra of

0 commit comments

Comments
 (0)