Skip to content

Commit

Permalink
Merge pull request #330 from DrTimothyAldenDavis/dev2
Browse files Browse the repository at this point in the history
GraphBLAS 9.3.1
  • Loading branch information
DrTimothyAldenDavis authored Aug 11, 2024
2 parents 671c925 + 384e2e1 commit e3f309c
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 9 deletions.
5 changes: 5 additions & 0 deletions Doc/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Aug 12, 2024: version 9.3.1

* (56) bug fix: wrong type for fgetc return value in JITpackage; leads
to infinite loop on some systems when building GraphBLAS.

Aug 2, 2024: version 9.3.0

* code restructuring: Source folder split into many subfolders, and
Expand Down
Binary file modified Doc/GraphBLAS_UserGuide.pdf
Binary file not shown.
7 changes: 7 additions & 0 deletions Doc/GraphBLAS_UserGuide.tex
Original file line number Diff line number Diff line change
Expand Up @@ -14492,6 +14492,13 @@ \section{Release Notes}

\begin{itemize}

\item Aug 12, 2024: version 9.3.1

\begin{itemize}
\item (56) bug fix: wrong type for fgetc return value in JITpackage; leads
to infinite loop on some systems when building GraphBLAS.
\end{itemize}

\item Aug 2, 2024: version 9.3.0

\begin{itemize}
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
9.3.0,
Aug 2, 2024}
9.3.1,
Aug 12, 2024}

6 changes: 3 additions & 3 deletions Include/GraphBLAS.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SuiteSparse:GraphBLAS 9.3.0
// SuiteSparse:GraphBLAS 9.3.1
//------------------------------------------------------------------------------
// GraphBLAS.h: definitions for the GraphBLAS package
//------------------------------------------------------------------------------
Expand Down Expand Up @@ -275,10 +275,10 @@

// The version of this implementation, and the GraphBLAS API version:
#define GxB_IMPLEMENTATION_NAME "SuiteSparse:GraphBLAS"
#define GxB_IMPLEMENTATION_DATE "Aug 2, 2024"
#define GxB_IMPLEMENTATION_DATE "Aug 12, 2024"
#define GxB_IMPLEMENTATION_MAJOR 9
#define GxB_IMPLEMENTATION_MINOR 3
#define GxB_IMPLEMENTATION_SUB 0
#define GxB_IMPLEMENTATION_SUB 1
#define GxB_SPEC_DATE "Dec 22, 2023"
#define GxB_SPEC_MAJOR 2
#define GxB_SPEC_MINOR 1
Expand Down
4 changes: 3 additions & 1 deletion JITpackage/Source/grb_jitpackage.c
Original file line number Diff line number Diff line change
Expand Up @@ -142,12 +142,14 @@ int main (int argc, char **argv)
OK (fr != NULL) ;

// get number of lines in file
char ch;
int ch;
do
{
ch = fgetc (fr);
if (ch == '\n')
{
nfiles++;
}
} while (ch != EOF);

// read file list from response file
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2024, All Rights Reserved.

SPDX-License-Identifier: Apache-2.0

VERSION 9.3.0, Aug 2, 2024
VERSION 9.3.1, Aug 12, 2024

SuiteSparse:GraphBLAS is a complete implementation of the GraphBLAS standard,
which defines a set of sparse matrix operations on an extended algebra of
Expand Down
4 changes: 2 additions & 2 deletions cmake_modules/GraphBLAS_version.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
#-------------------------------------------------------------------------------

# version of SuiteSparse:GraphBLAS
set ( GraphBLAS_DATE "Aug 2, 2024" )
set ( GraphBLAS_DATE "Aug 12, 2024" )
set ( GraphBLAS_VERSION_MAJOR 9 CACHE STRING "" FORCE )
set ( GraphBLAS_VERSION_MINOR 3 CACHE STRING "" FORCE )
set ( GraphBLAS_VERSION_SUB 0 CACHE STRING "" FORCE )
set ( GraphBLAS_VERSION_SUB 1 CACHE STRING "" FORCE )

# GraphBLAS C API Specification version, at graphblas.org
set ( GraphBLAS_API_DATE "Dec 22, 2023" )
Expand Down

0 comments on commit e3f309c

Please sign in to comment.