Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MueLu: extending the interface of LWGraph to give direct access to rowPtrs and entries #5841

Merged
merged 2 commits into from
Sep 4, 2019

Conversation

lucbv
Copy link
Contributor

@lucbv lucbv commented Sep 3, 2019

@trilinos/muelu

Description

I am simply adding two host / device function that give access to the row pointers and entries from the Kokkos::StaticCrsGraph.

Motivation and Context

Accessing the underlying local data avoid having to use methods that transfer data to host which is not always the right thing to do.

Related Issues

How Has This Been Tested?

I did a local build and things seem OK so far.

Checklist

  • My commit messages mention the appropriate GitHub issue numbers.
  • My code follows the code style of the affected package(s).
  • My change requires a change to the documentation.
  • I have updated the documentation accordingly.
  • I have read the code contribution guidelines for this project.
  • I have added tests to cover my changes.
  • All new and existing tests passed.
  • No new compiler warnings were introduced.
  • These changes break backwards compatibility.

@lucbv lucbv added type: enhancement Issue is an enhancement, not a bug pkg: MueLu AT: AUTOMERGE Causes the PR autotester to automatically merge the PR branch once approvals are completed client: ExaWind All issue that impact the ECP project ExaWind labels Sep 3, 2019
@lucbv lucbv requested review from csiefer2 and jhux2 September 3, 2019 14:35
@lucbv lucbv requested a review from a team as a code owner September 3, 2019 14:35
@lucbv lucbv self-assigned this Sep 3, 2019
@lucbv lucbv added AT: WIP Causes the PR autotester to not test the PR. (Remove to allow testing to occur.) and removed AT: AUTOMERGE Causes the PR autotester to automatically merge the PR branch once approvals are completed labels Sep 3, 2019
…wPtrs and entries

Accessing the underlying local data avoid having to use methods that transfer data to host which is not always the right thing to do.
@lucbv lucbv requested a review from cgcgcg September 3, 2019 14:39
cgcgcg
cgcgcg previously approved these changes Sep 3, 2019
@lucbv
Copy link
Contributor Author

lucbv commented Sep 3, 2019

I am wondering if at this point we should just add a method that gives direct access to the StaticCrsGraph something like:

    //! Return the local graph
    KOKKOS_INLINE_FUNCTION local_graph_type getLocalGraph() const {
      return graph_;
    }

@jhux2 @csiefer2 what do you think?

@jhux2
Copy link
Member

jhux2 commented Sep 3, 2019

I am wondering if at this point we should just add a method that gives direct access to the StaticCrsGraph something like:

Yes, if you want something else about the graph besides the rowmap and entries.

@mhoemmen
Copy link
Contributor

mhoemmen commented Sep 3, 2019

@lucbv I am partial to the withLocalAccess style of accessing local data:

withLocalAccess ([&] (const local_graph_type& lclGraph) { /* ... */ }, gblGraph);

@lucbv
Copy link
Contributor Author

lucbv commented Sep 3, 2019

Adding a unit test for LWGraph that test the two new methods.

@lucbv lucbv added AT: AUTOMERGE Causes the PR autotester to automatically merge the PR branch once approvals are completed and removed AT: WIP Causes the PR autotester to not test the PR. (Remove to allow testing to occur.) labels Sep 3, 2019
@trilinos-autotester
Copy link
Contributor

Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection Is Not Necessary for this Pull Request.

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_4.8.4

  • Build Num: 4419
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 4243
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 2680
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 2504
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 2081
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
JENKINS_JOB_TYPE Experimental
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 519
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 519
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Using Repos:

Repo: TRILINOS (lucbv/Trilinos)
  • Branch: MueLu_LWGraph_interface
  • SHA: b4b3716
  • Mode: TEST_REPO

Pull Request Author: lucbv

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Jenkins Testing: 1 or more Jobs FAILED

Note: Testing will normally be attempted again in approx. 2 Hrs 30 Mins. If a change to the PR source branch occurs, the testing will be attempted again on next available autotester run.

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_4.8.4

  • Build Num: 4419
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 4243
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 2680
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 2504
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 2081
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
JENKINS_JOB_TYPE Experimental
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 519
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 519
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 4419 (click to expand)

 12) sems-superlu/4.3/base
 13) sems-cmake/3.10.3
 14) atdm-env
 15) atdm-ninja_fortran/1.7.2

*** Generating set of Trilinos enables given modified packages from
*** git commit origin/develop to HEAD


TRILINOS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/commonTools/framework/../..
TRILINOS_SCRIPTS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/commonTools/framework/../..
TRIBITS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/commonTools/framework/../../cmake/tribits

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

Current directory: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos

git diff --name-only origin/develop..HEAD > /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4

C) Get the unfiltered list of changed Trilinos packages (including 'ALL_PACKAGES')

CHANGED_PACKAGES_FULL_LIST='MueLu'

D) Filter list of changed packages to get only the PT packages

CHANGED_PACKAGES_PT_LIST='MueLu'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'
Build name = PR-5841-test-Trilinos_pullrequest_gcc_4.8.4-4419
Cur dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos
Binary dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test
Parallel level = 20
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 53
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxGCC4.8.4TestingSettings.cmake"
-C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=tr-test-7.novalocal&field2=buildname&compare2=61&value2=PR-5841-test-Trilinos_pullrequest_gcc_4.8.4-4419&field3=buildstamp&compare3=61&value3=20190903-2340-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_gcc_4.8.4-4419&field2=buildstamp&compare2=61&value2=20190903-2340-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_gcc_4.8.4-4419&field2=buildstamp&compare2=61&value2=20190903-2340-Pull Request
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.................................................. Size: 100K
.................................................. Size: 150K
.............. Size of output: 163K
Error(s) when configuring the project
configure submit error = 0
CMake Error at /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype/simple_testing.cmake:189 (message):
Configure failed with error -1

8.4
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #4419
PULLREQUESTNUM = 5841
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/4.8.4/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_MueLu = ON

Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 524, in
returnValue = run()
File "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 518, in run
'package_subproject_list.cmake'])
File "/projects/sems/install/rhel7-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-5841-test-Trilinos_pullrequest_gcc_4.8.4-4419', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=20', '-Dbuild_dir=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test', '-Dconfigure_script=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxGCC4.8.4TestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../TFW_single_configure_support_scripts/package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_intel_17.0.1 # 4243 (click to expand)

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1

C) Get the unfiltered list of changed Trilinos packages (including 'ALL_PACKAGES')

CHANGED_PACKAGES_FULL_LIST='MueLu'

D) Filter list of changed packages to get only the PT packages

CHANGED_PACKAGES_PT_LIST='MueLu'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'
Build name = PR-5841-test-Trilinos_pullrequest_intel_17.0.1-4243
Cur dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
Binary dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test
Parallel level = 20
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 53
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel6-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxIntelTestingSettings.cmake"
-C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic158&field2=buildname&compare2=61&value2=PR-5841-test-Trilinos_pullrequest_intel_17.0.1-4243&field3=buildstamp&compare3=61&value3=20190903-2339-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_intel_17.0.1-4243&field2=buildstamp&compare2=61&value2=20190903-2339-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_intel_17.0.1-4243&field2=buildstamp&compare2=61&value2=20190903-2339-Pull Request
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.................................................. Size: 100K
.................................................. Size: 150K
............ Size of output: 161K
Error(s) when configuring the project
configure submit error = 0
CMake Error at /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype/simple_testing.cmake:189 (message):
Configure failed with error -1

INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/netcdf/4.4.1/intel/17.0.1/mpich/3.2/exo_parallel/include
MKL_LIB = /projects/sems/install/rhel6-x86_64/sems/compiler/intel/17.0.1/base/mkl/lib/intel64
MODULE_VERSION_STACK = 3.2.10
SEMS_MPICH_ROOT = /projects/sems/install/rhel6-x86_64/sems/compiler/intel/17.0.1/mpich/3.2
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.4.7
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.6.6
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/netcdf/4.4.1/intel/17.0.1/mpich/3.2/exo_parallel/lib
GIT_BRANCH = origin/develop
SEMS_INTEL_LOCAL_PYTHON_VERSION = 2.6.6
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/boost/1.63.0/intel/17.0.1/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.4.7
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel6-x86_64/sems/tpl/hdf5/1.8.12/intel/17.0.1/mpich/3.2/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/scotch/6.0.3/intel/17.0.1/mpich/3.2/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/4.9.3:sems-intel/17.0.1:sems-mpich/3.2:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.8.12/parallel:sems-netcdf/4.4.1/exo_parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
SEMS_COMPILER_VERSION = 17.0.1
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = icpc
PWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1
SEMS_MPICH_LOCAL_PYTHON_VERSION = 2.6.6
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #4243
XFILESEARCHPATH = /usr/dt/app-defaults/%L/Dt
PULLREQUESTNUM = 5841
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/superlu/4.3/intel/17.0.1/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_MueLu = ON

Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 524, in
returnValue = run()
File "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 518, in run
'package_subproject_list.cmake'])
File "/projects/sems/install/rhel6-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-5841-test-Trilinos_pullrequest_intel_17.0.1-4243', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=20', '-Dbuild_dir=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test', '-Dconfigure_script=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxIntelTestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../TFW_single_configure_support_scripts/package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.9.3_SERIAL # 2680 (click to expand)


*** Generating set of Trilinos enables given modified packages from
*** git commit origin/develop to HEAD


TRILINOS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/commonTools/framework/../..
TRILINOS_SCRIPTS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/commonTools/framework/../..
TRIBITS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/commonTools/framework/../../cmake/tribits

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

Current directory: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos

git diff --name-only origin/develop..HEAD > /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL

C) Get the unfiltered list of changed Trilinos packages (including 'ALL_PACKAGES')

CHANGED_PACKAGES_FULL_LIST='MueLu'

D) Filter list of changed packages to get only the PT packages

CHANGED_PACKAGES_PT_LIST='MueLu'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'
Build name = PR-5841-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-2680
Cur dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
Binary dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test
Parallel level = 20
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 53
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxGCC4.9.3TestingSettingsSERIAL.cmake"
-C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic166&field2=buildname&compare2=61&value2=PR-5841-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-2680&field3=buildstamp&compare3=61&value3=20190903-2332-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-2680&field2=buildstamp&compare2=61&value2=20190903-2332-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-2680&field2=buildstamp&compare2=61&value2=20190903-2332-Pull Request
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.................................................. Size: 100K
............... Size of output: 114K
Error(s) when configuring the project
configure submit error = 0
CMake Error at /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype/simple_testing.cmake:189 (message):
Configure failed with error -1

OADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/4.9.3:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.8.12/base:sems-netcdf/4.4.1/exo:sems-metis/5.1.0/base:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
SEMS_COMPILER_VERSION = 4.9.3
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #2680
PULLREQUESTNUM = 5841
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/4.9.3/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_MueLu = ON

Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 524, in
returnValue = run()
File "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 518, in run
'package_subproject_list.cmake'])
File "/projects/sems/install/rhel7-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-5841-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-2680', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=20', '-Dbuild_dir=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test', '-Dconfigure_script=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxGCC4.9.3TestingSettingsSERIAL.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../TFW_single_configure_support_scripts/package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_7.2.0 # 2504 (click to expand)

 13) sems-cmake/3.10.3
 14) atdm-env
 15) atdm-ninja_fortran/1.7.2

*** Generating set of Trilinos enables given modified packages from
*** git commit origin/develop to HEAD


TRILINOS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/commonTools/framework/../..
TRILINOS_SCRIPTS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/commonTools/framework/../..
TRIBITS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/commonTools/framework/../../cmake/tribits

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

Current directory: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos

git diff --name-only origin/develop..HEAD > /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0

C) Get the unfiltered list of changed Trilinos packages (including 'ALL_PACKAGES')

CHANGED_PACKAGES_FULL_LIST='MueLu'

D) Filter list of changed packages to get only the PT packages

CHANGED_PACKAGES_PT_LIST='MueLu'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'
Build name = PR-5841-test-Trilinos_pullrequest_gcc_7.2.0-2504
Cur dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos
Binary dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test
Parallel level = 13
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 53
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel6-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0TestingSettings.cmake"
-C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic158&field2=buildname&compare2=61&value2=PR-5841-test-Trilinos_pullrequest_gcc_7.2.0-2504&field3=buildstamp&compare3=61&value3=20190903-2340-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_gcc_7.2.0-2504&field2=buildstamp&compare2=61&value2=20190903-2340-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_gcc_7.2.0-2504&field2=buildstamp&compare2=61&value2=20190903-2340-Pull Request
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.................................................. Size: 100K
.................................................. Size: 150K
.............. Size of output: 163K
Error(s) when configuring the project
configure submit error = 0
CMake Error at /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype/simple_testing.cmake:189 (message):
Configure failed with error -1

WD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #2504
XFILESEARCHPATH = /usr/dt/app-defaults/%L/Dt
PULLREQUESTNUM = 5841
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/superlu/4.3/gcc/7.2.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_MueLu = ON

Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 524, in
returnValue = run()
File "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 518, in run
'package_subproject_list.cmake'])
File "/projects/sems/install/rhel6-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-5841-test-Trilinos_pullrequest_gcc_7.2.0-2504', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=13', '-Dbuild_dir=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test', '-Dconfigure_script=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0TestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../TFW_single_configure_support_scripts/package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_cuda_9.2 # 2081 (click to expand)

CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ride13&field2=buildname&compare2=61&value2=PR-5841-test-Trilinos_pullrequest_cuda_9.2-2081&field3=buildstamp&compare3=61&value3=20190903-2341-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_cuda_9.2-2081&field2=buildstamp&compare2=61&value2=20190903-2341-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_cuda_9.2-2081&field2=buildstamp&compare2=61&value2=20190903-2341-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ..................................................  Size: 50K
    ..................................................  Size: 100K
    .............................................. Size of output: 145K
Error(s) when configuring the project
configure submit error = 0
CMake Error at /home/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/TFW_testing_single_configure_prototype/simple_testing.cmake:189 (message):
  Configure failed with error -1

ODE_OWNER_EMAIL = ceeadmin@sandia.gov
LSB_EXIT_PRE_ABORT = 99
TRILINOS_SOURCE_REPO = https://github.com/lucbv/Trilinos
PARMETIS_HOME = /home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
FC_VERSION = 7.2.0
LSB_JOBFILENAME = /ascldap/users/trilinos/.lsbatch/1567554041.859685
BLAS_ROOT = /home/projects/ppc64le-pwr8/netlib/3.8.0/gcc/7.2.0
FC_VENDOR = gcc
LSB_AFFINITY_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1567554041.859685.hostAffinityFile
PARMETIS_ROOT = /home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
LSF_ENVDIR = /opt/lsf/conf
MPI_VENDOR = openmpi
PYTHON = /home/projects/ppc64le/python/2.7.12/bin/python
CXX_VENDOR = gcc
HDF5_ROOT = /home/projects/ppc64le-pwr8-nvidia/hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
HOSTTYPE = LINUXPPC64LE
SSH_CLIENT = 205.137.81.17 39780 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
LSF_LIM_API_NTRIES = 1
PATH = /ascldap/users/rabartl/install/white-ride/cmake-3.11.2/bin:/ascldap/users/rabartl/install/white-ride/ninja-1.8.2/bin:/home/projects/ppc64le/valgrind/3.12.0/bin:/home/projects/ppc64le/cmake/3.9.6/bin:/home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8/metis/5.0.1/gcc/7.2.0/bin:/home/projects/ppc64le-pwr8-nvidia/netcdf/4.6.1/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/pnetcdf-exo/1.9.0/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le/java/ibm/sdk/8.0.0/bin:/home/projects/ppc64le/papi/5.5.1/bin:/home/projects/ppc64le/gcc/7.2.0/bin:/home/projects/ppc64le/binutils/2.30.0/bin:/home/projects/ppc64le-pwr8-nvidia/cuda/9.2.88/bin:/home/projects/ppc64le/python/2.7.12/bin:/home/projects/ppc64le/git/2.10.1/bin:/opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/bin:/opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/etc:/usr/local/bin:/usr/bin:/opt/ibutils/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
LSB_QUEUE = rhel7F
LSF_JOB_TIMESTAMP_VALUE = 1567554042
LSB_EXEC_HOSTTYPE = LINUXPPC64LE
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 56b31834d4eab716725aeaa814acde426e27cdc7
LSB_DJOB_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1567554041.859685.hostfile
no_proxy = localhost,localnets,.sandia.gov,127.0.0.1,169.254.0.0/16,forge.sandia.gov
LSF_LIBDIR = /opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/lib
CGNS_VERSION = 20180521
LSB_SUB_USER = trilinos
NODE_LABELS = ride-trilinos trilinos-ride
GIT_BRANCH_2 = origin/pull_request_changes
JOB_OWNER_EMAIL = HRSwant@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 2081
SBD_KRB5CCNAME_VAL =
LSB_RES_GET_FANOUT_INFO = Y
RUN_DISPLAY_URL = https://ascic-jenkins.sandia.gov/job/trilinos-folder/job/Trilinos_pullrequest_cuda_9.2/2081/display/redirect
JOB_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
LSB_BATCH_JID = 859685
MPI_HOME = /home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
SUPERLU_HOME = /home/projects/ppc64le-pwr8/superlu/4.3.0/gcc/7.2.0
F77_VENDOR = gcc
KRB5CCNAME = FILE:/tmp/krb5cc_91724_E2tT8fRC2o
BINUTILS_VERSION = 2.30.0
GIT_BRANCH = origin/develop
CMAKE_ROOT = /home/projects/ppc64le/cmake/3.9.6
BOOST_ROOT = /home/projects/ppc64le-pwr8/boost/1.65.1/gcc/7.2.0
VALGRIND_ROOT = /home/projects/ppc64le/valgrind/3.12.0
MPIF77 = /home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin/mpif77
PARMETIS_VERSION = 4.0.3
LSB_JOBNAME = trilinos-folder/Trilinos_pullrequest_cuda_9.2
LOADEDMODULES = git/2.10.1:python/2.7.12:cuda/9.2.88:binutils/2.30.0:gcc/7.2.0:papi/5.5.1:java/ibm/sdk/8.0.0:openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:pnetcdf-exo/1.9.0/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:zlib/1.2.8:hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:netcdf/4.6.1/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:cgns/20180521/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:netlib/3.8.0/gcc/7.2.0:superlu/4.3.0/gcc/7.2.0:boost/1.65.1/gcc/7.2.0:metis/5.0.1/gcc/7.2.0:parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:cmake/3.9.6:valgrind/3.12.0:devpack/20180521/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
GIT_BRANCH_1 = origin/master
CUDA_MANAGED_FORCE_DEVICE_ALLOC = 1
HISTCONTROL = ignoredups
PWD = /home/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2
LS_EXECCWD = /home/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #2081
CXX_VERSION = 7.2.0
PYTHON_ROOT = /home/projects/ppc64le/python/2.7.12
OMPI_CXX = /home/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/packages/kokkos/bin/nvcc_wrapper
SUPERLU_VERSION = 4.3.0
PULLREQUESTNUM = 5841
BINARY_TYPE_HPC =

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_MueLu = ON

Set CWD = /home/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/home/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 524, in
returnValue = run()
File "/home/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 518, in run
'package_subproject_list.cmake'])
File "/home/projects/ppc64le/python/2.7.12/lib/python2.7/subprocess.py", line 541, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-5841-test-Trilinos_pullrequest_cuda_9.2-2081', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=64', '-Dbuild_dir=/home/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/pull_request_test', '-Dconfigure_script=/home/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxCuda9.2TestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../TFW_single_configure_support_scripts/package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_python_2 # 519 (click to expand)

LANG = en_US.UTF-8
QTLIB = /usr/lib64/qt-3.3/lib
QTINC = /usr/lib64/qt-3.3/include
HUDSON_HOME = /var/lib/jenkins
TRILINOS_TARGET_BRANCH = develop
https_proxy = http://wwwproxy.sandia.gov:80
F90 = gfortran
SERIAL_F90 = gfortran
SEMS_CMAKE_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3
JOB_COOWNERS = prwolfe,trilinos
SERIAL_FC = gfortran
BUILD_CAUSE_MANUALTRIGGER = true
HUDSON_COOKIE = 8b7d86b2-7143-417a-b15c-033e1ddf7fe2
ftp_proxy = http://wwwproxy.sandia.gov:80/
QT_GRAPHICSSYSTEM_CHECKED = 1
SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
F77 = gfortran
TRILINOS_TARGET_REPO = https://github.com/trilinos/Trilinos
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
NODE_NAME = tr-test-4-trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SSH_CLIENT = 205.137.81.17 38670 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
NODE_LABELS = tr-test-4-trilinos trilinos-32 trilinos-any trilinos-cloud-32 trilinos_cloud_32_node_4
PATH = /projects/sierra/linux_rh7/install/Python/2.7.15/bin:/projects/sierra/linux_rh7/install/Python/extrasbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/sbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/bin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/bin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 56b31834d4eab716725aeaa814acde426e27cdc7
no_proxy = localhost,localnets,.sandia.gov,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = gcc
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 519
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-gcc/7.2.0:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIALCurrently Loaded Modulefiles:
  1) sems-env                   4) sems-cmake/3.10.3
  2) sems-git/2.10.1            5) atdm-env
  3) sems-gcc/7.2.0             6) atdm-ninja_fortran/1.7.2
Build name               = PR-5841-test-Trilinos_pullrequest_python_2-519
Cur dir                  = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos
Binary dir               = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_2/pull_request_test
Parallel level           = 20
skip_by_parts_submit     = OFF
skip_single_submit       = ON
skip_update_step         = ON
skip_upload_config_files = OFF
skip_clean_build_dir     = ON
Subproject count         = 53
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake 
  -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos/cmake/std/PullRequestLinuxPython2.cmake"
  -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_2/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=tr-test-4.novalocal&field2=buildname&compare2=61&value2=PR-5841-test-Trilinos_pullrequest_python_2-519&field3=buildstamp&compare3=61&value3=20190903-2340-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_python_2-519&field2=buildstamp&compare2=61&value2=20190903-2340-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_python_2-519&field2=buildstamp&compare2=61&value2=20190903-2340-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ...................... Size of output: 21K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
_CXX = g++
PWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #519
PULLREQUESTNUM = 5841

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_python_3 # 519 (click to expand)

LANG = en_US.UTF-8
QTLIB = /usr/lib64/qt-3.3/lib
QTINC = /usr/lib64/qt-3.3/include
HUDSON_HOME = /var/lib/jenkins
TRILINOS_TARGET_BRANCH = develop
https_proxy = http://wwwproxy.sandia.gov:80
F90 = gfortran
SERIAL_F90 = gfortran
SEMS_CMAKE_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3
JOB_COOWNERS = prwolfe,trilinos
SERIAL_FC = gfortran
BUILD_CAUSE_MANUALTRIGGER = true
HUDSON_COOKIE = 9b34f619-98ce-405c-9e83-be35ac316bf9
ftp_proxy = http://wwwproxy.sandia.gov:80/
QT_GRAPHICSSYSTEM_CHECKED = 1
SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
F77 = gfortran
TRILINOS_TARGET_REPO = https://github.com/trilinos/Trilinos
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
NODE_NAME = tr-test-4-trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SSH_CLIENT = 205.137.81.17 38670 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
NODE_LABELS = tr-test-4-trilinos trilinos-32 trilinos-any trilinos-cloud-32 trilinos_cloud_32_node_4
PATH = /projects/sierra/linux_rh7/install/Python/3.6.3/bin:/projects/sierra/linux_rh7/install/Python/extrasbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/sbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/bin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/bin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 56b31834d4eab716725aeaa814acde426e27cdc7
no_proxy = localhost,localnets,.sandia.gov,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = gcc
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 519
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-gcc/7.2.0:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CCurrently Loaded Modulefiles:
  1) sems-env                   4) sems-cmake/3.10.3
  2) sems-git/2.10.1            5) atdm-env
  3) sems-gcc/7.2.0             6) atdm-ninja_fortran/1.7.2
Build name               = PR-5841-test-Trilinos_pullrequest_python_3-519
Cur dir                  = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos
Binary dir               = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_3/pull_request_test
Parallel level           = 20
skip_by_parts_submit     = OFF
skip_single_submit       = ON
skip_update_step         = ON
skip_upload_config_files = OFF
skip_clean_build_dir     = ON
Subproject count         = 53
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake 
  -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxPython3.cmake"
  -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_3/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=tr-test-4.novalocal&field2=buildname&compare2=61&value2=PR-5841-test-Trilinos_pullrequest_python_3-519&field3=buildstamp&compare3=61&value3=20190903-2341-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_python_3-519&field2=buildstamp&compare2=61&value2=20190903-2341-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_python_3-519&field2=buildstamp&compare2=61&value2=20190903-2341-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ...................... Size of output: 21K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
XX = g++
PWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_3
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #519
PULLREQUESTNUM = 5841

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS


CDash Test Results for PR# 5841.


Wiki: How to Reproduce PR Testing Builds and Errors.

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_4.8.4

  • Build Num: 4421
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 4245
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 2682
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 2506
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 2083
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
JENKINS_JOB_TYPE Experimental
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 521
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 521
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Using Repos:

Repo: TRILINOS (lucbv/Trilinos)
  • Branch: MueLu_LWGraph_interface
  • SHA: b4b3716
  • Mode: TEST_REPO

Pull Request Author: lucbv

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Jenkins Testing: 1 or more Jobs FAILED

Note: Testing will normally be attempted again in approx. 2 Hrs 30 Mins. If a change to the PR source branch occurs, the testing will be attempted again on next available autotester run.

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_4.8.4

  • Build Num: 4421
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 4245
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 2682
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 2506
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 2083
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
JENKINS_JOB_TYPE Experimental
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 521
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 521
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA b4b3716
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 21ec714
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 4421 (click to expand)

 12) sems-superlu/4.3/base
 13) sems-cmake/3.10.3
 14) atdm-env
 15) atdm-ninja_fortran/1.7.2

*** Generating set of Trilinos enables given modified packages from
*** git commit origin/develop to HEAD


TRILINOS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/commonTools/framework/../..
TRILINOS_SCRIPTS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/commonTools/framework/../..
TRIBITS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/commonTools/framework/../../cmake/tribits

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

Current directory: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos

git diff --name-only origin/develop..HEAD > /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4

C) Get the unfiltered list of changed Trilinos packages (including 'ALL_PACKAGES')

CHANGED_PACKAGES_FULL_LIST='MueLu'

D) Filter list of changed packages to get only the PT packages

CHANGED_PACKAGES_PT_LIST='MueLu'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'
Build name = PR-5841-test-Trilinos_pullrequest_gcc_4.8.4-4421
Cur dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos
Binary dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test
Parallel level = 20
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 53
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxGCC4.8.4TestingSettings.cmake"
-C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=tr-test-7.novalocal&field2=buildname&compare2=61&value2=PR-5841-test-Trilinos_pullrequest_gcc_4.8.4-4421&field3=buildstamp&compare3=61&value3=20190904-0240-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_gcc_4.8.4-4421&field2=buildstamp&compare2=61&value2=20190904-0240-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_gcc_4.8.4-4421&field2=buildstamp&compare2=61&value2=20190904-0240-Pull Request
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.................................................. Size: 100K
.................................................. Size: 150K
.............. Size of output: 163K
Error(s) when configuring the project
configure submit error = 0
CMake Error at /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype/simple_testing.cmake:189 (message):
Configure failed with error -1

8.4
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #4421
PULLREQUESTNUM = 5841
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/4.8.4/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_MueLu = ON

Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 524, in
returnValue = run()
File "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 518, in run
'package_subproject_list.cmake'])
File "/projects/sems/install/rhel7-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-5841-test-Trilinos_pullrequest_gcc_4.8.4-4421', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=20', '-Dbuild_dir=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test', '-Dconfigure_script=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxGCC4.8.4TestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../TFW_single_configure_support_scripts/package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_intel_17.0.1 # 4245 (click to expand)

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1

C) Get the unfiltered list of changed Trilinos packages (including 'ALL_PACKAGES')

CHANGED_PACKAGES_FULL_LIST='MueLu'

D) Filter list of changed packages to get only the PT packages

CHANGED_PACKAGES_PT_LIST='MueLu'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'
Build name = PR-5841-test-Trilinos_pullrequest_intel_17.0.1-4245
Cur dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
Binary dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test
Parallel level = 20
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 53
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel6-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxIntelTestingSettings.cmake"
-C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic158&field2=buildname&compare2=61&value2=PR-5841-test-Trilinos_pullrequest_intel_17.0.1-4245&field3=buildstamp&compare3=61&value3=20190904-0240-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_intel_17.0.1-4245&field2=buildstamp&compare2=61&value2=20190904-0240-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_intel_17.0.1-4245&field2=buildstamp&compare2=61&value2=20190904-0240-Pull Request
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.................................................. Size: 100K
.................................................. Size: 150K
............ Size of output: 161K
Error(s) when configuring the project
configure submit error = 0
CMake Error at /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype/simple_testing.cmake:189 (message):
Configure failed with error -1

INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/netcdf/4.4.1/intel/17.0.1/mpich/3.2/exo_parallel/include
MKL_LIB = /projects/sems/install/rhel6-x86_64/sems/compiler/intel/17.0.1/base/mkl/lib/intel64
MODULE_VERSION_STACK = 3.2.10
SEMS_MPICH_ROOT = /projects/sems/install/rhel6-x86_64/sems/compiler/intel/17.0.1/mpich/3.2
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.4.7
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.6.6
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/netcdf/4.4.1/intel/17.0.1/mpich/3.2/exo_parallel/lib
GIT_BRANCH = origin/develop
SEMS_INTEL_LOCAL_PYTHON_VERSION = 2.6.6
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/boost/1.63.0/intel/17.0.1/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.4.7
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel6-x86_64/sems/tpl/hdf5/1.8.12/intel/17.0.1/mpich/3.2/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/scotch/6.0.3/intel/17.0.1/mpich/3.2/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/4.9.3:sems-intel/17.0.1:sems-mpich/3.2:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.8.12/parallel:sems-netcdf/4.4.1/exo_parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
SEMS_COMPILER_VERSION = 17.0.1
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = icpc
PWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1
SEMS_MPICH_LOCAL_PYTHON_VERSION = 2.6.6
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #4245
XFILESEARCHPATH = /usr/dt/app-defaults/%L/Dt
PULLREQUESTNUM = 5841
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/superlu/4.3/intel/17.0.1/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_MueLu = ON

Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 524, in
returnValue = run()
File "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 518, in run
'package_subproject_list.cmake'])
File "/projects/sems/install/rhel6-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-5841-test-Trilinos_pullrequest_intel_17.0.1-4245', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=20', '-Dbuild_dir=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test', '-Dconfigure_script=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxIntelTestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../TFW_single_configure_support_scripts/package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.9.3_SERIAL # 2682 (click to expand)


*** Generating set of Trilinos enables given modified packages from
*** git commit origin/develop to HEAD


TRILINOS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/commonTools/framework/../..
TRILINOS_SCRIPTS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/commonTools/framework/../..
TRIBITS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/commonTools/framework/../../cmake/tribits

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

Current directory: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos

git diff --name-only origin/develop..HEAD > /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL

C) Get the unfiltered list of changed Trilinos packages (including 'ALL_PACKAGES')

CHANGED_PACKAGES_FULL_LIST='MueLu'

D) Filter list of changed packages to get only the PT packages

CHANGED_PACKAGES_PT_LIST='MueLu'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'
Build name = PR-5841-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-2682
Cur dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
Binary dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test
Parallel level = 20
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 53
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxGCC4.9.3TestingSettingsSERIAL.cmake"
-C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic166&field2=buildname&compare2=61&value2=PR-5841-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-2682&field3=buildstamp&compare3=61&value3=20190904-0232-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-2682&field2=buildstamp&compare2=61&value2=20190904-0232-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-2682&field2=buildstamp&compare2=61&value2=20190904-0232-Pull Request
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.................................................. Size: 100K
............... Size of output: 114K
Error(s) when configuring the project
configure submit error = 0
CMake Error at /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype/simple_testing.cmake:189 (message):
Configure failed with error -1

OADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/4.9.3:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.8.12/base:sems-netcdf/4.4.1/exo:sems-metis/5.1.0/base:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
SEMS_COMPILER_VERSION = 4.9.3
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #2682
PULLREQUESTNUM = 5841
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/4.9.3/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_MueLu = ON

Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 524, in
returnValue = run()
File "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 518, in run
'package_subproject_list.cmake'])
File "/projects/sems/install/rhel7-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-5841-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-2682', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=20', '-Dbuild_dir=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test', '-Dconfigure_script=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxGCC4.9.3TestingSettingsSERIAL.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../TFW_single_configure_support_scripts/package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_7.2.0 # 2506 (click to expand)

 13) sems-cmake/3.10.3
 14) atdm-env
 15) atdm-ninja_fortran/1.7.2

*** Generating set of Trilinos enables given modified packages from
*** git commit origin/develop to HEAD


TRILINOS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/commonTools/framework/../..
TRILINOS_SCRIPTS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/commonTools/framework/../..
TRIBITS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/commonTools/framework/../../cmake/tribits

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

Current directory: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos

git diff --name-only origin/develop..HEAD > /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0

C) Get the unfiltered list of changed Trilinos packages (including 'ALL_PACKAGES')

CHANGED_PACKAGES_FULL_LIST='MueLu'

D) Filter list of changed packages to get only the PT packages

CHANGED_PACKAGES_PT_LIST='MueLu'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'
Build name = PR-5841-test-Trilinos_pullrequest_gcc_7.2.0-2506
Cur dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos
Binary dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test
Parallel level = 13
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 53
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel6-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0TestingSettings.cmake"
-C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic158&field2=buildname&compare2=61&value2=PR-5841-test-Trilinos_pullrequest_gcc_7.2.0-2506&field3=buildstamp&compare3=61&value3=20190904-0240-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_gcc_7.2.0-2506&field2=buildstamp&compare2=61&value2=20190904-0240-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_gcc_7.2.0-2506&field2=buildstamp&compare2=61&value2=20190904-0240-Pull Request
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.................................................. Size: 100K
.................................................. Size: 150K
.............. Size of output: 163K
Error(s) when configuring the project
configure submit error = 0
CMake Error at /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype/simple_testing.cmake:189 (message):
Configure failed with error -1

WD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #2506
XFILESEARCHPATH = /usr/dt/app-defaults/%L/Dt
PULLREQUESTNUM = 5841
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/superlu/4.3/gcc/7.2.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_MueLu = ON

Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 524, in
returnValue = run()
File "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 518, in run
'package_subproject_list.cmake'])
File "/projects/sems/install/rhel6-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-5841-test-Trilinos_pullrequest_gcc_7.2.0-2506', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=13', '-Dbuild_dir=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test', '-Dconfigure_script=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0TestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../TFW_single_configure_support_scripts/package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_cuda_9.2 # 2083 (click to expand)

CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ride11&field2=buildname&compare2=61&value2=PR-5841-test-Trilinos_pullrequest_cuda_9.2-2083&field3=buildstamp&compare3=61&value3=20190904-0241-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_cuda_9.2-2083&field2=buildstamp&compare2=61&value2=20190904-0241-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_cuda_9.2-2083&field2=buildstamp&compare2=61&value2=20190904-0241-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ..................................................  Size: 50K
    ..................................................  Size: 100K
    .............................................. Size of output: 145K
Error(s) when configuring the project
configure submit error = 0
CMake Error at /home/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/TFW_testing_single_configure_prototype/simple_testing.cmake:189 (message):
  Configure failed with error -1

DE_OWNER_EMAIL = ceeadmin@sandia.gov
LSB_EXIT_PRE_ABORT = 99
TRILINOS_SOURCE_REPO = https://github.com/lucbv/Trilinos
PARMETIS_HOME = /home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
FC_VERSION = 7.2.0
LSB_JOBFILENAME = /ascldap/users/trilinos/.lsbatch/1567564871.859688
BLAS_ROOT = /home/projects/ppc64le-pwr8/netlib/3.8.0/gcc/7.2.0
FC_VENDOR = gcc
LSB_AFFINITY_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1567564871.859688.hostAffinityFile
PARMETIS_ROOT = /home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
LSF_ENVDIR = /opt/lsf/conf
MPI_VENDOR = openmpi
PYTHON = /home/projects/ppc64le/python/2.7.12/bin/python
CXX_VENDOR = gcc
HDF5_ROOT = /home/projects/ppc64le-pwr8-nvidia/hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
HOSTTYPE = LINUXPPC64LE
SSH_CLIENT = 205.137.81.17 39780 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
LSF_LIM_API_NTRIES = 1
PATH = /ascldap/users/rabartl/install/white-ride/cmake-3.11.2/bin:/ascldap/users/rabartl/install/white-ride/ninja-1.8.2/bin:/home/projects/ppc64le/valgrind/3.12.0/bin:/home/projects/ppc64le/cmake/3.9.6/bin:/home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8/metis/5.0.1/gcc/7.2.0/bin:/home/projects/ppc64le-pwr8-nvidia/netcdf/4.6.1/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/pnetcdf-exo/1.9.0/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le/java/ibm/sdk/8.0.0/bin:/home/projects/ppc64le/papi/5.5.1/bin:/home/projects/ppc64le/gcc/7.2.0/bin:/home/projects/ppc64le/binutils/2.30.0/bin:/home/projects/ppc64le-pwr8-nvidia/cuda/9.2.88/bin:/home/projects/ppc64le/python/2.7.12/bin:/home/projects/ppc64le/git/2.10.1/bin:/opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/bin:/opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/etc:/usr/local/bin:/usr/bin:/opt/ibutils/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
LSB_QUEUE = rhel7F
LSF_JOB_TIMESTAMP_VALUE = 1567564871
LSB_EXEC_HOSTTYPE = LINUXPPC64LE
GIT_PREVIOUS_SUCCESSFUL_COMMIT = ecc20c4a17ed3c395c83863e1a4e0869258fcd10
LSB_DJOB_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1567564871.859688.hostfile
no_proxy = localhost,localnets,.sandia.gov,127.0.0.1,169.254.0.0/16,forge.sandia.gov
LSF_LIBDIR = /opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/lib
CGNS_VERSION = 20180521
LSB_SUB_USER = trilinos
NODE_LABELS = ride-trilinos trilinos-ride
GIT_BRANCH_2 = origin/pull_request_changes
JOB_OWNER_EMAIL = HRSwant@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 2083
SBD_KRB5CCNAME_VAL =
LSB_RES_GET_FANOUT_INFO = Y
RUN_DISPLAY_URL = https://ascic-jenkins.sandia.gov/job/trilinos-folder/job/Trilinos_pullrequest_cuda_9.2/2083/display/redirect
JOB_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
LSB_BATCH_JID = 859688
MPI_HOME = /home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
SUPERLU_HOME = /home/projects/ppc64le-pwr8/superlu/4.3.0/gcc/7.2.0
F77_VENDOR = gcc
KRB5CCNAME = FILE:/tmp/krb5cc_91724_E2tT8fRC2o
BINUTILS_VERSION = 2.30.0
GIT_BRANCH = origin/develop
CMAKE_ROOT = /home/projects/ppc64le/cmake/3.9.6
BOOST_ROOT = /home/projects/ppc64le-pwr8/boost/1.65.1/gcc/7.2.0
VALGRIND_ROOT = /home/projects/ppc64le/valgrind/3.12.0
MPIF77 = /home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin/mpif77
PARMETIS_VERSION = 4.0.3
LSB_JOBNAME = trilinos-folder/Trilinos_pullrequest_cuda_9.2
LOADEDMODULES = git/2.10.1:python/2.7.12:cuda/9.2.88:binutils/2.30.0:gcc/7.2.0:papi/5.5.1:java/ibm/sdk/8.0.0:openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:pnetcdf-exo/1.9.0/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:zlib/1.2.8:hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:netcdf/4.6.1/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:cgns/20180521/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:netlib/3.8.0/gcc/7.2.0:superlu/4.3.0/gcc/7.2.0:boost/1.65.1/gcc/7.2.0:metis/5.0.1/gcc/7.2.0:parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:cmake/3.9.6:valgrind/3.12.0:devpack/20180521/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
GIT_BRANCH_1 = origin/master
CUDA_MANAGED_FORCE_DEVICE_ALLOC = 1
HISTCONTROL = ignoredups
PWD = /home/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2
LS_EXECCWD = /home/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #2083
CXX_VERSION = 7.2.0
PYTHON_ROOT = /home/projects/ppc64le/python/2.7.12
OMPI_CXX = /home/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/packages/kokkos/bin/nvcc_wrapper
SUPERLU_VERSION = 4.3.0
PULLREQUESTNUM = 5841
BINARY_TYPE_HPC =

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_MueLu = ON

Set CWD = /home/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/home/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 524, in
returnValue = run()
File "/home/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 518, in run
'package_subproject_list.cmake'])
File "/home/projects/ppc64le/python/2.7.12/lib/python2.7/subprocess.py", line 541, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-5841-test-Trilinos_pullrequest_cuda_9.2-2083', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=64', '-Dbuild_dir=/home/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/pull_request_test', '-Dconfigure_script=/home/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxCuda9.2TestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../TFW_single_configure_support_scripts/package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_python_2 # 521 (click to expand)

LANG = en_US.UTF-8
QTLIB = /usr/lib64/qt-3.3/lib
QTINC = /usr/lib64/qt-3.3/include
HUDSON_HOME = /var/lib/jenkins
TRILINOS_TARGET_BRANCH = develop
https_proxy = http://wwwproxy.sandia.gov:80
F90 = gfortran
SERIAL_F90 = gfortran
SEMS_CMAKE_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3
JOB_COOWNERS = prwolfe,trilinos
SERIAL_FC = gfortran
BUILD_CAUSE_MANUALTRIGGER = true
HUDSON_COOKIE = 8b9e0fe4-c6bc-4ab9-a602-a544d3e4803d
ftp_proxy = http://wwwproxy.sandia.gov:80/
QT_GRAPHICSSYSTEM_CHECKED = 1
SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
F77 = gfortran
TRILINOS_TARGET_REPO = https://github.com/trilinos/Trilinos
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
NODE_NAME = tr-test-4-trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SSH_CLIENT = 205.137.81.17 38670 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
NODE_LABELS = tr-test-4-trilinos trilinos-32 trilinos-any trilinos-cloud-32 trilinos_cloud_32_node_4
PATH = /projects/sierra/linux_rh7/install/Python/2.7.15/bin:/projects/sierra/linux_rh7/install/Python/extrasbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/sbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/bin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/bin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
GIT_PREVIOUS_SUCCESSFUL_COMMIT = ecc20c4a17ed3c395c83863e1a4e0869258fcd10
no_proxy = localhost,localnets,.sandia.gov,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = gcc
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 521
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-gcc/7.2.0:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIALCurrently Loaded Modulefiles:
  1) sems-env                   4) sems-cmake/3.10.3
  2) sems-git/2.10.1            5) atdm-env
  3) sems-gcc/7.2.0             6) atdm-ninja_fortran/1.7.2
Build name               = PR-5841-test-Trilinos_pullrequest_python_2-521
Cur dir                  = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos
Binary dir               = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_2/pull_request_test
Parallel level           = 20
skip_by_parts_submit     = OFF
skip_single_submit       = ON
skip_update_step         = ON
skip_upload_config_files = OFF
skip_clean_build_dir     = ON
Subproject count         = 53
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake 
  -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos/cmake/std/PullRequestLinuxPython2.cmake"
  -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_2/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=tr-test-4.novalocal&field2=buildname&compare2=61&value2=PR-5841-test-Trilinos_pullrequest_python_2-521&field3=buildstamp&compare3=61&value3=20190904-0241-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_python_2-521&field2=buildstamp&compare2=61&value2=20190904-0241-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_python_2-521&field2=buildstamp&compare2=61&value2=20190904-0241-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ...................... Size of output: 21K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
_CXX = g++
PWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #521
PULLREQUESTNUM = 5841

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_python_3 # 521 (click to expand)

LANG = en_US.UTF-8
QTLIB = /usr/lib64/qt-3.3/lib
QTINC = /usr/lib64/qt-3.3/include
HUDSON_HOME = /var/lib/jenkins
TRILINOS_TARGET_BRANCH = develop
https_proxy = http://wwwproxy.sandia.gov:80
F90 = gfortran
SERIAL_F90 = gfortran
SEMS_CMAKE_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3
JOB_COOWNERS = prwolfe,trilinos
SERIAL_FC = gfortran
BUILD_CAUSE_MANUALTRIGGER = true
HUDSON_COOKIE = d949396b-dc45-4e02-a364-6c7c2d9452d8
ftp_proxy = http://wwwproxy.sandia.gov:80/
QT_GRAPHICSSYSTEM_CHECKED = 1
SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
F77 = gfortran
TRILINOS_TARGET_REPO = https://github.com/trilinos/Trilinos
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
NODE_NAME = tr-test-4-trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SSH_CLIENT = 205.137.81.17 38670 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
NODE_LABELS = tr-test-4-trilinos trilinos-32 trilinos-any trilinos-cloud-32 trilinos_cloud_32_node_4
PATH = /projects/sierra/linux_rh7/install/Python/3.6.3/bin:/projects/sierra/linux_rh7/install/Python/extrasbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/sbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/bin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/bin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
GIT_PREVIOUS_SUCCESSFUL_COMMIT = ecc20c4a17ed3c395c83863e1a4e0869258fcd10
no_proxy = localhost,localnets,.sandia.gov,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = gcc
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 521
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-gcc/7.2.0:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CCurrently Loaded Modulefiles:
  1) sems-env                   4) sems-cmake/3.10.3
  2) sems-git/2.10.1            5) atdm-env
  3) sems-gcc/7.2.0             6) atdm-ninja_fortran/1.7.2
Build name               = PR-5841-test-Trilinos_pullrequest_python_3-521
Cur dir                  = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos
Binary dir               = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_3/pull_request_test
Parallel level           = 20
skip_by_parts_submit     = OFF
skip_single_submit       = ON
skip_update_step         = ON
skip_upload_config_files = OFF
skip_clean_build_dir     = ON
Subproject count         = 53
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake 
  -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxPython3.cmake"
  -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_3/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=tr-test-4.novalocal&field2=buildname&compare2=61&value2=PR-5841-test-Trilinos_pullrequest_python_3-521&field3=buildstamp&compare3=61&value3=20190904-0241-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_python_3-521&field2=buildstamp&compare2=61&value2=20190904-0241-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-5841-test-Trilinos_pullrequest_python_3-521&field2=buildstamp&compare2=61&value2=20190904-0241-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ...................... Size of output: 21K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
XX = g++
PWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_3
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #521
PULLREQUESTNUM = 5841

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS


CDash Test Results for PR# 5841.


Wiki: How to Reproduce PR Testing Builds and Errors.

@lucbv lucbv force-pushed the MueLu_LWGraph_interface branch from b4b3716 to 94b9792 Compare September 4, 2019 13:31
@trilinos-autotester
Copy link
Contributor

Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection Is Not Necessary for this Pull Request.

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_4.8.4

  • Build Num: 4424
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA 94b9792
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6fb5880

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 4248
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA 94b9792
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6fb5880

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 2685
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA 94b9792
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6fb5880

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 2509
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA 94b9792
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6fb5880

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 2086
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
JENKINS_JOB_TYPE Experimental
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA 94b9792
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6fb5880

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 522
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA 94b9792
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6fb5880

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 522
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA 94b9792
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6fb5880

Using Repos:

Repo: TRILINOS (lucbv/Trilinos)
  • Branch: MueLu_LWGraph_interface
  • SHA: 94b9792
  • Mode: TEST_REPO

Pull Request Author: lucbv

@lucbv
Copy link
Contributor Author

lucbv commented Sep 4, 2019

It turns out if you don't commit the source code for the test it does not work that well...

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Jenkins Testing: all Jobs PASSED

Pull Request Auto Testing has PASSED (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_4.8.4

  • Build Num: 4424
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA 94b9792
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6fb5880

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 4248
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA 94b9792
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6fb5880

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 2685
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA 94b9792
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6fb5880

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 2509
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA 94b9792
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6fb5880

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 2086
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
JENKINS_JOB_TYPE Experimental
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA 94b9792
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6fb5880

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 522
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA 94b9792
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6fb5880

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 522
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 5841
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH MueLu_LWGraph_interface
TRILINOS_SOURCE_REPO https://github.com/lucbv/Trilinos
TRILINOS_SOURCE_SHA 94b9792
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6fb5880


CDash Test Results for PR# 5841.

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pre-Merge Inspection' - SUCCESS: The last commit to this Pull Request has been INSPECTED AND APPROVED by [ cgcgcg ]!

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Pull Request will be Automerged

@trilinos-autotester trilinos-autotester merged commit 55f13be into trilinos:develop Sep 4, 2019
@trilinos-autotester
Copy link
Contributor

Merge on Pull Request# 5841: IS A SUCCESS - Pull Request successfully merged

@trilinos-autotester trilinos-autotester removed the AT: AUTOMERGE Causes the PR autotester to automatically merge the PR branch once approvals are completed label Sep 4, 2019
@lucbv lucbv deleted the MueLu_LWGraph_interface branch September 4, 2019 15:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
client: ExaWind All issue that impact the ECP project ExaWind pkg: MueLu type: enhancement Issue is an enhancement, not a bug
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

5 participants