forked from trilinos/Trilinos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request trilinos#2955 from trilinos/jhu-fbfdbe9
new muelu test machine
- Loading branch information
Showing
7 changed files
with
723 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
TRILINOS_DRIVER_SETUP() | ||
|
||
TRILINOS_DRIVER_ADD_DASHBOARD( | ||
SERIAL_RELEASE_DEFAULT | ||
ctest_linux_nightly_mpi_release_muelu_rocketman.cmake | ||
CTEST_INSTALLER_TYPE release | ||
RUN_SERIAL | ||
TIMEOUT_MINUTES 330 | ||
) | ||
|
||
TRILINOS_ADD_REQUIRED_CMAKE_INSTALLS() |
129 changes: 129 additions & 0 deletions
129
cmake/ctest/drivers/rocketman/TrilinosCTestDriverCore.rocketman.gcc.cmake
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
# @HEADER | ||
# ************************************************************************ | ||
# | ||
# Trilinos: An Object-Oriented Solver Framework | ||
# Copyright (2001) Sandia Corporation | ||
# | ||
# | ||
# Copyright (2001) Sandia Corporation. Under the terms of Contract | ||
# DE-AC04-94AL85000, there is a non-exclusive license for use of this | ||
# work by or on behalf of the U.S. Government. Export of this program | ||
# may require a license from the United States Government. | ||
# | ||
# 1. Redistributions of source code must retain the above copyright | ||
# notice, this list of conditions and the following disclaimer. | ||
# | ||
# 2. Redistributions in binary form must reproduce the above copyright | ||
# notice, this list of conditions and the following disclaimer in the | ||
# documentation and/or other materials provided with the distribution. | ||
# | ||
# 3. Neither the name of the Corporation nor the names of the | ||
# contributors may be used to endorse or promote products derived from | ||
# this software without specific prior written permission. | ||
# | ||
# THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY | ||
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE | ||
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | ||
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | ||
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | ||
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | ||
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
# | ||
# NOTICE: The United States Government is granted for itself and others | ||
# acting on its behalf a paid-up, nonexclusive, irrevocable worldwide | ||
# license in this data to reproduce, prepare derivative works, and | ||
# perform publicly and display publicly. Beginning five (5) years from | ||
# July 25, 2001, the United States Government is granted for itself and | ||
# others acting on its behalf a paid-up, nonexclusive, irrevocable | ||
# worldwide license in this data to reproduce, prepare derivative works, | ||
# distribute copies to the public, perform publicly and display | ||
# publicly, and to permit others to do so. | ||
# | ||
# NEITHER THE UNITED STATES GOVERNMENT, NOR THE UNITED STATES DEPARTMENT | ||
# OF ENERGY, NOR SANDIA CORPORATION, NOR ANY OF THEIR EMPLOYEES, MAKES | ||
# ANY WARRANTY, EXPRESS OR IMPLIED, OR ASSUMES ANY LEGAL LIABILITY OR | ||
# RESPONSIBILITY FOR THE ACCURACY, COMPLETENESS, OR USEFULNESS OF ANY | ||
# INFORMATION, APPARATUS, PRODUCT, OR PROCESS DISCLOSED, OR REPRESENTS | ||
# THAT ITS USE WOULD NOT INFRINGE PRIVATELY OWNED RIGHTS. | ||
# | ||
# ************************************************************************ | ||
# @HEADER | ||
|
||
|
||
INCLUDE("${CTEST_SCRIPT_DIRECTORY}/../../TrilinosCTestDriverCore.cmake") | ||
|
||
# | ||
# Platform/compiler specific options for rocketman using gcc | ||
# | ||
|
||
MACRO(TRILINOS_SYSTEM_SPECIFIC_CTEST_DRIVER) | ||
|
||
# Base of Trilinos/cmake/ctest then BUILD_DIR_NAME | ||
|
||
IF(COMM_TYPE STREQUAL MPI) | ||
string(TOUPPER $ENV{SEMS_MPI_NAME} UC_MPI_NAME) | ||
SET(BUILD_DIR_NAME ${UC_MPI_NAME}-$ENV{SEMS_MPI_VERSION}_${BUILD_TYPE}_${BUILD_NAME_DETAILS}) | ||
ELSE() | ||
SET(BUILD_DIR_NAME ${COMM_TYPE}-${BUILD_TYPE}_${BUILD_NAME_DETAILS}) | ||
ENDIF() | ||
|
||
|
||
SET(CTEST_DASHBOARD_ROOT "${TRILINOS_CMAKE_DIR}/../../${BUILD_DIR_NAME}" ) | ||
SET(CTEST_NOTES_FILES "${CTEST_SCRIPT_DIRECTORY}/${CTEST_SCRIPT_NAME}" ) | ||
SET(CTEST_BUILD_FLAGS "-j35 -i" ) | ||
|
||
SET_DEFAULT(CTEST_PARALLEL_LEVEL "35" ) | ||
SET_DEFAULT(Trilinos_ENABLE_SECONDARY_TESTED_CODE ON) | ||
SET_DEFAULT(Trilinos_EXCLUDE_PACKAGES ${EXTRA_EXCLUDE_PACKAGES} TriKota Optika) | ||
|
||
SET(EXTRA_SYSTEM_CONFIGURE_OPTIONS | ||
"-DBUILD_SHARED_LIBS=ON" | ||
"-DCMAKE_BUILD_TYPE=${BUILD_TYPE}" | ||
"-DCMAKE_VERBOSE_MAKEFILE=ON" | ||
|
||
"-DTrilinos_ENABLE_COMPLEX:BOOL=OFF" | ||
|
||
"-DTrilinos_ENABLE_Fortran=OFF" | ||
|
||
"-DSuperLU_INCLUDE_DIRS=$ENV{SEMS_SUPERLU_INCLUDE_PATH}" | ||
"-DSuperLU_LIBRARY_DIRS=$ENV{SEMS_SUPERLU_LIBRARY_PATH}" | ||
"-DSuperLU_LIBRARY_NAMES=superlu" | ||
|
||
### PACKAGE CONFIGURATION ### | ||
|
||
### MISC ### | ||
"-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON" | ||
) | ||
|
||
SET_DEFAULT(COMPILER_VERSION "$ENV{SEMS_COMPILER_NAME}-$ENV{SEMS_COMPILER_VERSION}") | ||
|
||
# Ensure that MPI is on for all parallel builds that might be run. | ||
IF(COMM_TYPE STREQUAL MPI) | ||
|
||
SET(EXTRA_SYSTEM_CONFIGURE_OPTIONS | ||
${EXTRA_SYSTEM_CONFIGURE_OPTIONS} | ||
"-DTPL_ENABLE_MPI=ON" | ||
"-DMPI_BASE_DIR:PATH=$ENV{SEMS_OPENMPI_ROOT}" | ||
"-DMPI_EXEC_POST_NUMPROCS_FLAGS:STRING=--bind-to\\\;socket\\\;--map-by\\\;socket" | ||
) | ||
|
||
SET(CTEST_MEMORYCHECK_COMMAND_OPTIONS | ||
"--gen-suppressions=all --error-limit=no --log-file=nightly_suppressions.txt" ${CTEST_MEMORYCHECK_COMMAND_OPTIONS} ) | ||
|
||
ELSE() | ||
|
||
SET( EXTRA_SYSTEM_CONFIGURE_OPTIONS | ||
${EXTRA_SYSTEM_CONFIGURE_OPTIONS} | ||
"-DCMAKE_CXX_COMPILER=$ENV{SEMS_COMPILER_ROOT}/bin/g++" | ||
"-DCMAKE_C_COMPILER=$ENV{SEMS_COMPILER_ROOT}/bin/gcc" | ||
) | ||
|
||
ENDIF() | ||
|
||
TRILINOS_CTEST_DRIVER() | ||
|
||
ENDMACRO() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
#!/bin/bash | ||
|
||
echo | ||
echo "Starting nightly Trilinos development testing on rocketman: `date`" | ||
echo | ||
|
||
# | ||
# TrilinosDriver settings: | ||
# | ||
|
||
export TDD_PARALLEL_LEVEL=2 | ||
|
||
# Trilinos settings: | ||
# | ||
|
||
# Submission mode for the *TrilinosDriver* dashboard | ||
export TDD_CTEST_TEST_TYPE=Nightly | ||
|
||
# enable this to avoid clobbering any local changes you're making | ||
#export TDD_IN_TESTING_MODE=ON | ||
|
||
export TDD_DEBUG_VERBOSE=1 | ||
export TDD_FORCE_CMAKE_INSTALL=0 | ||
export TRIBITS_TDD_USE_SYSTEM_CTEST=1 | ||
|
||
#export CTEST_DO_SUBMIT=FALSE | ||
#export CTEST_START_WITH_EMPTY_BINARY_DIRECTORY=FALSE | ||
|
||
# Machine specific environment | ||
# | ||
export TDD_HTTP_PROXY="http://sonproxy.sandia.gov:80" | ||
export TDD_HTTPS_PROXY="https://sonproxy.sandia.gov:80" | ||
export http_proxy="http://sonproxy.sandia.gov:80" | ||
export https_proxy="https://sonproxy.sandia.gov:80" | ||
|
||
. ~/.bashrc | ||
|
||
# If you update the list of modules, go to ~/code/trilinos-test/trilinos/ and | ||
# do "git pull". Otherwise, the tests could fail on the first night, as we | ||
# would first run old cron_driver.sh and only then pull | ||
|
||
# =========================================================================== | ||
export CTEST_CONFIGURATION="default" | ||
module load sems-cmake/3.5.2 | ||
module load sems-gcc/5.3.0 | ||
module load sems-openmpi/1.10.1 | ||
module load sems-superlu/4.3/base | ||
|
||
# Remove colors (-fdiagnostics-color) from OMPI flags | ||
# It may result in non-XML characters on the Dashboard | ||
export OMPI_CFLAGS=`echo $OMPI_CFLAGS | sed 's/-fdiagnostics-color//'` | ||
export OMPI_CXXFLAGS=`echo $OMPI_CXXFLAGS | sed 's/-fdiagnostics-color//'` | ||
|
||
echo "Configuration = $CTEST_CONFIGURATION" | ||
env | ||
|
||
export OMP_NUM_THREADS=2 | ||
|
||
# Machine independent cron_driver: | ||
SCRIPT_DIR=`cd "\`dirname \"$0\"\`";pwd` | ||
$SCRIPT_DIR/../cron_driver.py | ||
|
||
module unload sems-superlu/4.3/base | ||
module unload sems-openmpi/1.10.1 | ||
module unload sems-gcc/5.3.0 | ||
module unload sems-cmake/3.5.2 | ||
# =========================================================================== | ||
|
||
echo | ||
echo "Ending nightly Trilinos development testing on rocketman: `date`" | ||
echo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
SHELL=/bin/bash | ||
# * * * * * command to execute | ||
# │ │ │ │ │ | ||
# │ │ │ │ │ | ||
# │ │ │ │ └───── day of week (0 - 6) (0 to 6 are Sunday to Saturday, or use names; 7 is Sunday, the same as 0) | ||
# │ │ │ └────────── month (1 - 12) | ||
# │ │ └─────────────── day of month (1 - 31) | ||
# │ └──────────────────── hour (0 - 23) | ||
# └───────────────────────── min (0 - 59) | ||
|
||
# MIN HOUR DAY MONTH | ||
|
||
# nightly tests | ||
|
||
00 22 * * * cd /home/nightlyTesting/Trilinos/cmake/ctest/drivers/rocketman; eval `python ./setSshEnv.python`; cd /home/nightlyTesting/Trilinos; git pull > /dev/null 2>&1; cd /home/nightlyTesting/Trilinos/cmake/ctest/drivers/rocketman && ./cron_driver.sh &> /space/nightlyTesting/cron_driver.log; cd /space/nightlyTesting; /space/nightlyTesting/Trilinos/cmake/ctest/drivers/rocketman/sendTestSummary.sh cron_driver.log | ||
|
||
|
||
# | ||
@reboot /home/jhu/bin/send-reboot-email.sh | ||
|
||
|
||
#description of fields | ||
#minute This controls what minute of the hour the command will run on, | ||
# and is between '0' and '59' | ||
#hour This controls what hour the command will run on, and is specified in | ||
# the 24 hour clock, values must be between 0 and 23 (0 is midnight) | ||
#dom This is the Day of Month, that you want the command run on, e.g. to | ||
# run a command on the 19th of each month, the dom would be 19. | ||
#month This is the month a specified command will run on, it may be specified | ||
# numerically (0-12), or as the name of the month (e.g. May) | ||
#dow This is the Day of Week that you want a command to be run on, it can | ||
# also be numeric (0-7) or as the name of the day (e.g. sun). |
87 changes: 87 additions & 0 deletions
87
cmake/ctest/drivers/rocketman/ctest_linux_nightly_mpi_release_muelu_rocketman.cmake
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
# @HEADER | ||
# ************************************************************************ | ||
# | ||
# Trilinos: An Object-Oriented Solver Framework | ||
# Copyright (2001) Sandia Corporation | ||
# | ||
# | ||
# Copyright (2001) Sandia Corporation. Under the terms of Contract | ||
# DE-AC04-94AL85000, there is a non-exclusive license for use of this | ||
# work by or on behalf of the U.S. Government. Export of this program | ||
# may require a license from the United States Government. | ||
# | ||
# 1. Redistributions of source code must retain the above copyright | ||
# notice, this list of conditions and the following disclaimer. | ||
# | ||
# 2. Redistributions in binary form must reproduce the above copyright | ||
# notice, this list of conditions and the following disclaimer in the | ||
# documentation and/or other materials provided with the distribution. | ||
# | ||
# 3. Neither the name of the Corporation nor the names of the | ||
# contributors may be used to endorse or promote products derived from | ||
# this software without specific prior written permission. | ||
# | ||
# THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY | ||
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE | ||
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | ||
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | ||
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | ||
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | ||
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
# | ||
# NOTICE: The United States Government is granted for itself and others | ||
# acting on its behalf a paid-up, nonexclusive, irrevocable worldwide | ||
# license in this data to reproduce, prepare derivative works, and | ||
# perform publicly and display publicly. Beginning five (5) years from | ||
# July 25, 2001, the United States Government is granted for itself and | ||
# others acting on its behalf a paid-up, nonexclusive, irrevocable | ||
# worldwide license in this data to reproduce, prepare derivative works, | ||
# distribute copies to the public, perform publicly and display | ||
# publicly, and to permit others to do so. | ||
# | ||
# NEITHER THE UNITED STATES GOVERNMENT, NOR THE UNITED STATES DEPARTMENT | ||
# OF ENERGY, NOR SANDIA CORPORATION, NOR ANY OF THEIR EMPLOYEES, MAKES | ||
# ANY WARRANTY, EXPRESS OR IMPLIED, OR ASSUMES ANY LEGAL LIABILITY OR | ||
# RESPONSIBILITY FOR THE ACCURACY, COMPLETENESS, OR USEFULNESS OF ANY | ||
# INFORMATION, APPARATUS, PRODUCT, OR PROCESS DISCLOSED, OR REPRESENTS | ||
# THAT ITS USE WOULD NOT INFRINGE PRIVATELY OWNED RIGHTS. | ||
# | ||
# ************************************************************************ | ||
# @HEADER | ||
|
||
|
||
INCLUDE("${CTEST_SCRIPT_DIRECTORY}/TrilinosCTestDriverCore.rocketman.gcc.cmake") | ||
|
||
# | ||
# Set the options specific to this build case | ||
# | ||
|
||
# The variable BUILD_DIR_NAME is based COMM_TYPE, BUILD_TYPE, and BUILD_NAME_DETAILS. | ||
# Tribits creates the variable listed under "Build Name" by prepending the OS type and compiler | ||
# details to BUILD_DIR_NAME. | ||
SET(COMM_TYPE MPI) | ||
SET(BUILD_TYPE RELEASE) | ||
SET(BUILD_NAME_DETAILS DEFAULT) | ||
|
||
SET(CTEST_PARALLEL_LEVEL 8) | ||
SET(CTEST_TEST_TYPE Nightly) | ||
SET(CTEST_TEST_TIMEOUT 14400) # twice the default value, for valgrind | ||
SET(CTEST_DO_MEMORY_TESTING FALSE) | ||
|
||
SET(Trilinos_PACKAGES MueLu Xpetra Amesos2) | ||
|
||
SET(EXTRA_CONFIGURE_OPTIONS | ||
"-DTrilinos_ENABLE_EXPLICIT_INSTANTIATION=ON" | ||
"-DTrilinos_ENABLE_DEPENDENCY_UNIT_TESTS=OFF" | ||
"-DTPL_ENABLE_SuperLU=ON" | ||
) | ||
|
||
# | ||
# Set the rest of the system-specific options and run the dashboard build/test | ||
# | ||
|
||
TRILINOS_SYSTEM_SPECIFIC_CTEST_DRIVER() |
Oops, something went wrong.