Skip to content

Commit

Permalink
v3.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
DrTimothyAldenDavis committed Jul 14, 2020
1 parent 4305426 commit bcc41e2
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 9 deletions.
5 changes: 3 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,13 @@ if ( CMAKE_VERSION VERSION_GREATER "3.0" )
cmake_policy ( SET CMP0048 NEW )
cmake_policy ( SET CMP0054 NEW )
endif ( )
set ( CMAKE_MACOSX_RPATH TRUE )

# version of SuiteSparse:GraphBLAS
set ( GraphBLAS_DATE "June 30, 2020" )
set ( GraphBLAS_DATE "July 3, 2020" )
set ( GraphBLAS_VERSION_MAJOR 3 )
set ( GraphBLAS_VERSION_MINOR 3 )
set ( GraphBLAS_VERSION_SUB 1 )
set ( GraphBLAS_VERSION_SUB 2 )

# GraphBLAS C API Specification version, at graphblas.org
set ( GraphBLAS_API_DATE "Sept 25, 2019" )
Expand Down
6 changes: 5 additions & 1 deletion Doc/ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ Version 4.0.0, FUTURE, 2020 (this list is tentative):
* GrB_error: will have two inputs: a string (char **) and an object
* V4.0.0 will otherwise be identical to V3.3.0.

Version 3.3.2, July 3, 2020

* minor changes to build system

Version 3.3.1, June 30, 2020

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

Version 3.2.2, Apr 2, 2020

Expand Down
4 changes: 2 additions & 2 deletions Doc/GraphBLAS_version.tex
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
% version of SuiteSparse:GraphBLAS
\date{VERSION
3.3.1,
June 30, 2020}
3.3.2,
July 3, 2020}

4 changes: 2 additions & 2 deletions Include/GraphBLAS.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,10 @@

// The version of this implementation, and the GraphBLAS API version:
#define GxB_IMPLEMENTATION_NAME "SuiteSparse:GraphBLAS"
#define GxB_IMPLEMENTATION_DATE "June 30, 2020"
#define GxB_IMPLEMENTATION_DATE "July 3, 2020"
#define GxB_IMPLEMENTATION_MAJOR 3
#define GxB_IMPLEMENTATION_MINOR 3
#define GxB_IMPLEMENTATION_SUB 1
#define GxB_IMPLEMENTATION_SUB 2
#define GxB_SPEC_DATE "Sept 25, 2019"
#define GxB_SPEC_MAJOR 1
#define GxB_SPEC_MINOR 3
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ static:
# installs GraphBLAS to the install location defined by cmake, usually
# /usr/local/lib and /usr/local/include
install:
( cd build ; $(MAKE) install )
( cd build ; cmake $(CMAKE_OPTIONS) .. ; $(MAKE) --jobs=$(JOBS) ; $(MAKE) install )

# create the Doc/GraphBLAS_UserGuide.pdf
docs:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved.
http://suitesparse.com See GraphBLAS/Doc/License.txt for license.

VERSION 3.3.1, June 30, 2020
VERSION 3.3.2, July 3, 2020

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

0 comments on commit bcc41e2

Please sign in to comment.