From 3ad1bd2f205ff88f5f8813e83d8e351be74e634b Mon Sep 17 00:00:00 2001 From: Bryan Herman Date: Fri, 4 Apr 2014 23:29:35 -0400 Subject: [PATCH] updated versions of mpi and petsc --- docs/source/devguide/workflow.rst | 4 ++-- tests/run_tests.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/devguide/workflow.rst b/docs/source/devguide/workflow.rst index d5d2966fc9..5aa3088f55 100644 --- a/docs/source/devguide/workflow.rst +++ b/docs/source/devguide/workflow.rst @@ -134,7 +134,7 @@ variables should be set if the default paths are incorrect: * **MPI_DIR** - The path to the MPI directory. - * Default - */opt/mpich/3.0.4-gnu* + * Default - */opt/mpich/3.1-gnu* * **HDF5_DIR** - The path to the HDF5 directory. @@ -146,7 +146,7 @@ variables should be set if the default paths are incorrect: * **PETSC_DIR** - The path to the PETSc directory. - * Default - */opt/petsc/3.4.3-gnu* + * Default - */opt/petsc/3.4.4-gnu* To run the full test suite, the following command can be executed in the tests directory: diff --git a/tests/run_tests.py b/tests/run_tests.py index b926b21dec..5c48df3b90 100755 --- a/tests/run_tests.py +++ b/tests/run_tests.py @@ -28,10 +28,10 @@ parser.add_option('-p', '--print', action="store_true", # Default compiler paths FC='gfortran' -MPI_DIR='/opt/mpich/3.0.4-gnu' +MPI_DIR='/opt/mpich/3.1-gnu' HDF5_DIR='/opt/hdf5/1.8.12-gnu' PHDF5_DIR='/opt/phdf5/1.8.12-gnu' -PETSC_DIR='/opt/petsc/3.4.3-gnu' +PETSC_DIR='/opt/petsc/3.4.4-gnu' # Override default compiler paths if environmental vars are found if os.environ.has_key('FC'):