Skip to content

Commit cb7597f

Browse files
authored
Release 2.32.0 (#1159)
1 parent f6bb554 commit cb7597f

File tree

7 files changed

+34
-24
lines changed

7 files changed

+34
-24
lines changed

CHANGELOG

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@
77
# This file chronicles user-level changes, beginning with the most recent.
88
# =============================================================================
99

10+
Version 2.32.0 released 2024/10/08
11+
12+
- New MGR features and updates
13+
- New filtering option to AMG for block-diagonal preconditioning
14+
- New memory usage monitoring functions
15+
- Added non-UVM support for ILUT and HMIS coarsening
16+
- Various bug fixes
17+
18+
#====================================
19+
1020
Version 2.31.0 released 2024/02/14
1121

1222
- Added iterative ILU0 option

src/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ else ()
1212
endif ()
1313

1414
# The version number.
15-
set(HYPRE_VERSION 2.31.0)
16-
set(HYPRE_NUMBER 23100)
17-
set(HYPRE_DATE 2024/02/14)
15+
set(HYPRE_VERSION 2.32.0)
16+
set(HYPRE_NUMBER 23200)
17+
set(HYPRE_DATE 2024/10/08)
1818
set(HYPRE_TIME 00:00:00)
1919
set(HYPRE_BUGS https://github.com/hypre-space/hypre/issues)
2020
set(HYPRE_SRCDIR "${PROJECT_SOURCE_DIR}")

src/config/configure.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ dnl * Set package information so it only has to be modified in one place
4848
dnl *********************************************************************
4949

5050
m4_define([M4_HYPRE_NAME], [hypre])
51-
m4_define([M4_HYPRE_VERSION], [2.31.0])
52-
m4_define([M4_HYPRE_NUMBER], [23100])
53-
m4_define([M4_HYPRE_DATE], [2024/02/14])
51+
m4_define([M4_HYPRE_VERSION], [2.32.0])
52+
m4_define([M4_HYPRE_NUMBER], [23200])
53+
m4_define([M4_HYPRE_DATE], [2024/10/08])
5454
m4_define([M4_HYPRE_TIME], [00:00:00])
5555
m4_define([M4_HYPRE_BUGS], [https://github.com/hypre-space/hypre/issues])
5656
m4_define([M4_HYPRE_SRCDIR], [`pwd`])

src/config/version.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
#
55
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
66

7-
hypre_version="2.31.0"
8-
hypre_reldate="2024/02/14"
7+
hypre_version="2.32.0"
8+
hypre_reldate="2024/10/08"
99

1010
hypre_major=`echo $hypre_version | cut -d. -f 1`
1111
hypre_minor=`echo $hypre_version | cut -d. -f 2`

src/configure

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /bin/sh
22
# From configure.in Id.
33
# Guess values for system-dependent variables and create Makefiles.
4-
# Generated by GNU Autoconf 2.71 for hypre 2.31.0.
4+
# Generated by GNU Autoconf 2.71 for hypre 2.32.0.
55
#
66
#
77
# Copyright (C) 1992-1996, 1998-2017, 2020-2021 Free Software Foundation,
@@ -612,8 +612,8 @@ MAKEFLAGS=
612612
# Identity of this package.
613613
PACKAGE_NAME='hypre'
614614
PACKAGE_TARNAME='hypre'
615-
PACKAGE_VERSION='2.31.0'
616-
PACKAGE_STRING='hypre 2.31.0'
615+
PACKAGE_VERSION='2.32.0'
616+
PACKAGE_STRING='hypre 2.32.0'
617617
PACKAGE_BUGREPORT=''
618618
PACKAGE_URL=''
619619

@@ -1473,7 +1473,7 @@ if test "$ac_init_help" = "long"; then
14731473
# Omit some internal or obsolete options to make the list less imposing.
14741474
# This message is too long to be a string in the A/UX 3.1 sh.
14751475
cat <<_ACEOF
1476-
\`configure' configures hypre 2.31.0 to adapt to many kinds of systems.
1476+
\`configure' configures hypre 2.32.0 to adapt to many kinds of systems.
14771477
14781478
Usage: $0 [OPTION]... [VAR=VALUE]...
14791479
@@ -1539,7 +1539,7 @@ fi
15391539

15401540
if test -n "$ac_init_help"; then
15411541
case $ac_init_help in
1542-
short | recursive ) echo "Configuration of hypre 2.31.0:";;
1542+
short | recursive ) echo "Configuration of hypre 2.32.0:";;
15431543
esac
15441544
cat <<\_ACEOF
15451545
@@ -1904,7 +1904,7 @@ fi
19041904
test -n "$ac_init_help" && exit $ac_status
19051905
if $ac_init_version; then
19061906
cat <<\_ACEOF
1907-
hypre configure 2.31.0
1907+
hypre configure 2.32.0
19081908
generated by GNU Autoconf 2.71
19091909
19101910
Copyright (C) 2021 Free Software Foundation, Inc.
@@ -2249,7 +2249,7 @@ cat >config.log <<_ACEOF
22492249
This file contains any messages produced by compilers while
22502250
running configure, to aid debugging if configure makes a mistake.
22512251
2252-
It was created by hypre $as_me 2.31.0, which was
2252+
It was created by hypre $as_me 2.32.0, which was
22532253
generated by GNU Autoconf 2.71. Invocation command line was
22542254
22552255
$ $0$ac_configure_args_raw
@@ -3230,9 +3230,9 @@ ac_config_headers="$ac_config_headers HYPRE_config.h:config/HYPRE_config.h.in"
32303230

32313231

32323232
HYPRE_NAME="hypre"
3233-
HYPRE_VERSION="2.31.0"
3234-
HYPRE_NUMBER=23100
3235-
HYPRE_DATE="2024/02/14"
3233+
HYPRE_VERSION="2.32.0"
3234+
HYPRE_NUMBER=23200
3235+
HYPRE_DATE="2024/10/08"
32363236
HYPRE_TIME="00:00:00"
32373237
HYPRE_BUGS="https://github.com/hypre-space/hypre/issues"
32383238
HYPRE_SRCDIR="`pwd`"
@@ -11852,7 +11852,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
1185211852
# report actual input values of CONFIG_FILES etc. instead of their
1185311853
# values after options handling.
1185411854
ac_log="
11855-
This file was extended by hypre $as_me 2.31.0, which was
11855+
This file was extended by hypre $as_me 2.32.0, which was
1185611856
generated by GNU Autoconf 2.71. Invocation command line was
1185711857
1185811858
CONFIG_FILES = $CONFIG_FILES
@@ -11916,7 +11916,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
1191611916
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1191711917
ac_cs_config='$ac_cs_config_escaped'
1191811918
ac_cs_version="\\
11919-
hypre config.status 2.31.0
11919+
hypre config.status 2.32.0
1192011920
configured by $0, generated by GNU Autoconf 2.71,
1192111921
with options \\"\$ac_cs_config\\"
1192211922

src/docs/ref-manual/conf.doxygen

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PROJECT_NAME = hypre
4848
# could be handy for archiving the generated documentation or if some version
4949
# control system is used.
5050

51-
PROJECT_NUMBER = 2.31.0
51+
PROJECT_NUMBER = 2.32.0
5252

5353
# Using the PROJECT_BRIEF tag one can provide an optional one line description
5454
# for a project that appears at the top of each page and should give viewer a

src/docs/usr-manual/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,17 +70,17 @@
7070
# built documents.
7171
#
7272
# The short X.Y version.
73-
version = '2.31.0'
73+
version = '2.32.0'
7474
# The full version, including alpha/beta/rc tags.
75-
release = '2.31.0'
75+
release = '2.32.0'
7676

7777
# The language for content autogenerated by Sphinx. Refer to documentation
7878
# for a list of supported languages.
7979
#language = None
8080

8181
# There are two options for replacing |today|: either, you set today to some
8282
# non-false value, then it is used:
83-
today = 'February 14, 2024'
83+
today = 'October 08, 2024'
8484
# Else, today_fmt is used as the format for a strftime call.
8585
#today_fmt = '%B %d, %Y'
8686

0 commit comments

Comments
 (0)