Changes in preparation for new alpha release.
This commit is contained in:
parent
f3465a64f7
commit
fcc7b8aad5
13
CHANGELOG
13
CHANGELOG
@ -15,6 +15,19 @@
|
||||
# recent release.
|
||||
#=============================================================================
|
||||
|
||||
Version 2.9.1a released 2013/01/16
|
||||
|
||||
- Added a HYPRE_BoomerAMGSetRedundant() switch to allow for an agglomeration
|
||||
approach for solving the coarsest grid system.
|
||||
|
||||
- Changed how BoomerAMG handles zero diagonal entries.
|
||||
|
||||
- Made a few minor bug fixes in BoomerAMG.
|
||||
|
||||
- Fixed a configuration problem with external blas and lapack.
|
||||
|
||||
#====================================
|
||||
|
||||
Version 2.9.0b released 2012/10/30
|
||||
|
||||
- Changed the behavior of the BoomerAMG interpolation routines when a zero
|
||||
|
||||
@ -2,8 +2,8 @@ cmake_minimum_required (VERSION 2.8.8)
|
||||
project (hypre)
|
||||
|
||||
# The version number.
|
||||
set (HYPRE_VERSION 2.9.0b)
|
||||
set (HYPRE_DATE 2012/10/30)
|
||||
set (HYPRE_VERSION 2.9.1a)
|
||||
set (HYPRE_DATE 2013/1/16)
|
||||
set (HYPRE_TIME 00:00:00)
|
||||
set (HYPRE_BUGS hypre-support@llnl.gov)
|
||||
set (HYPRE_SRCDIR "${PROJECT_SOURCE_DIR}")
|
||||
|
||||
@ -55,8 +55,8 @@ dnl * Set package information so it only has to be modified in one place
|
||||
dnl *********************************************************************
|
||||
|
||||
m4_define([M4_HYPRE_NAME], [hypre])
|
||||
m4_define([M4_HYPRE_VERSION], [2.9.0b])
|
||||
m4_define([M4_HYPRE_DATE], [2012/10/30])
|
||||
m4_define([M4_HYPRE_VERSION], [2.9.1a])
|
||||
m4_define([M4_HYPRE_DATE], [2013/1/16])
|
||||
m4_define([M4_HYPRE_TIME], [00:00:00])
|
||||
m4_define([M4_HYPRE_BUGS], [hypre-support@llnl.gov])
|
||||
m4_define([M4_HYPRE_SRCDIR], [`pwd`])
|
||||
|
||||
22
configure
vendored
22
configure
vendored
@ -1,7 +1,7 @@
|
||||
#! /bin/sh
|
||||
# From configure.in Id: configure.in.
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.63 for hypre 2.9.0b.
|
||||
# Generated by GNU Autoconf 2.63 for hypre 2.9.1a.
|
||||
#
|
||||
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
||||
# 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
||||
@ -603,8 +603,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
||||
# Identity of this package.
|
||||
PACKAGE_NAME='hypre'
|
||||
PACKAGE_TARNAME='hypre'
|
||||
PACKAGE_VERSION='2.9.0b'
|
||||
PACKAGE_STRING='hypre 2.9.0b'
|
||||
PACKAGE_VERSION='2.9.1a'
|
||||
PACKAGE_STRING='hypre 2.9.1a'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="HYPRE.h"
|
||||
@ -1326,7 +1326,7 @@ if test "$ac_init_help" = "long"; then
|
||||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures hypre 2.9.0b to adapt to many kinds of systems.
|
||||
\`configure' configures hypre 2.9.1a to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
@ -1391,7 +1391,7 @@ fi
|
||||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of hypre 2.9.0b:";;
|
||||
short | recursive ) echo "Configuration of hypre 2.9.1a:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
@ -1574,7 +1574,7 @@ fi
|
||||
test -n "$ac_init_help" && exit $ac_status
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
hypre configure 2.9.0b
|
||||
hypre configure 2.9.1a
|
||||
generated by GNU Autoconf 2.63
|
||||
|
||||
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
||||
@ -1596,7 +1596,7 @@ cat >config.log <<_ACEOF
|
||||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by hypre $as_me 2.9.0b, which was
|
||||
It was created by hypre $as_me 2.9.1a, which was
|
||||
generated by GNU Autoconf 2.63. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
@ -2004,8 +2004,8 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
|
||||
|
||||
|
||||
HYPRE_NAME="hypre"
|
||||
HYPRE_VERSION="2.9.0b"
|
||||
HYPRE_DATE="2012/10/30"
|
||||
HYPRE_VERSION="2.9.1a"
|
||||
HYPRE_DATE="2013/1/16"
|
||||
HYPRE_TIME="00:00:00"
|
||||
HYPRE_BUGS="hypre-support@llnl.gov"
|
||||
HYPRE_SRCDIR="`pwd`"
|
||||
@ -8043,7 +8043,7 @@ exec 6>&1
|
||||
# report actual input values of CONFIG_FILES etc. instead of their
|
||||
# values after options handling.
|
||||
ac_log="
|
||||
This file was extended by hypre $as_me 2.9.0b, which was
|
||||
This file was extended by hypre $as_me 2.9.1a, which was
|
||||
generated by GNU Autoconf 2.63. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
@ -8102,7 +8102,7 @@ Report bugs to <bug-autoconf@gnu.org>."
|
||||
_ACEOF
|
||||
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
||||
ac_cs_version="\\
|
||||
hypre config.status 2.9.0b
|
||||
hypre config.status 2.9.1a
|
||||
configured by $0, generated by GNU Autoconf 2.63,
|
||||
with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
||||
72
releases/check2.9.1a.txt
Normal file
72
releases/check2.9.1a.txt
Normal file
@ -0,0 +1,72 @@
|
||||
|
||||
HYPRE Alpha Release Checklist
|
||||
|
||||
Alpha releases are primarily used to get new code to collaborators quickly.
|
||||
These releases may not be stable.
|
||||
|
||||
See the Developer's Manual for more information on creating new releases.
|
||||
|
||||
The following steps must be completed, initialed & dated on the [] line by
|
||||
the responsible project member before the release is made available to users.
|
||||
|
||||
|
||||
- Decision made for release number 2.9.1a
|
||||
|
||||
[rdf 1/16/2013]
|
||||
|
||||
- Copy this file to 'check{release number}.txt'.
|
||||
|
||||
[rdf 1/16/2013]
|
||||
|
||||
- Create a tracker issue "New hypre release {number}" advising project personnel
|
||||
of release decision and tentative date with a request to not disrupt the
|
||||
repository until the release is complete.
|
||||
|
||||
[rdf 1/16/2013]
|
||||
|
||||
- Update 'CHANGELOG' file with information regarding contents of this release.
|
||||
|
||||
[rdf 1/16/2013]
|
||||
|
||||
- Verify that all agreed-upon changes have been committed.
|
||||
|
||||
[rdf 1/16/2013]
|
||||
|
||||
- Project Lead review and/or concurrence to release.
|
||||
|
||||
[rdf 1/16/2013]
|
||||
|
||||
- Update 'config/configure.in' and 'CMakeLists.txt' with release number and
|
||||
date, then run 'config/bootstrap' and commit changes to the repository.
|
||||
|
||||
[]
|
||||
|
||||
- Tag repository with release number (e.g., 'cvs rtag V2-8-2a linear_solvers').
|
||||
|
||||
[]
|
||||
|
||||
- Create release tar files by running the 'tools/mkdist' script (for more
|
||||
information, do 'mkdist -help'). This can be run from within any directory,
|
||||
just be sure to use the latest version of the 'mkdist' script.
|
||||
|
||||
[]
|
||||
|
||||
- Run the 'AUTOTEST/testdist.sh' script to verify a stable release. For more
|
||||
information on running this script, do 'testdist.sh -help'. If any of the
|
||||
tests fail, untag the repository, make necessary corrections, and start over.
|
||||
|
||||
[**OPTIONAL**]
|
||||
|
||||
- Commit the verification file generated by the 'testdist.sh' script into the
|
||||
releases/ directory of the repository.
|
||||
|
||||
[**OPTIONAL**]
|
||||
|
||||
- On the CASC cluster, copy tar file to '/usr/casc/hypre'.
|
||||
|
||||
[]
|
||||
|
||||
- FINAL CERTIFICATION: Verify that all steps have been signed off and commit
|
||||
this file to the repository.
|
||||
|
||||
[]
|
||||
Loading…
Reference in New Issue
Block a user