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

Use RESOURCE_GROUPS property of CTest #6840

Merged

Conversation

KyleFromKitware
Copy link

@KyleFromKitware KyleFromKitware commented Feb 17, 2020

This will spread out the work to the different GPUs and help speed up the test suite and avoid some overloading. This is being driven by:

The changes to Kokkos in this PR have already been merged in kokkos/kokkos#2765.

Some more work needs to get done before this is ready for testing and merging (see https://gitlab.kitware.com/snl/project-1/-/issues/100).

The motivating issue is #7248

The matching TriBITS changes are in PR TriBITSPub/TriBITS#319.

To build Trilinos on this branch with the matching TriBITS, do:

$ cd Trilinos/
$ git clone git@github.com/TriBITSPub/TriBITS.git
$ cd TriBITS/
$ git remote add bartlettroscoe git@github.com/bartlettroscoe/TriBITS.git
$ git fetch bartlettroscoe
$ git checkout --track bartlettroscoe/tril-2422-ctest-gpu-allocation

Then to build Trilinos using the other TriBITS implementation, configure with:

-D Trilinos_TRIBITS_DIR:STRING=TriBITS/tribits \

Once we have TriBITS changes 100% done (including automated tests and documentation), we will merge TriBITSPub/TriBITS#319 to 'mastser' and then snapshot TriBITS to the Trilinos branch 'tribits_github_snapshot' and merge that branch into the Trilinos PR for the final test and merge to the 'develop' branch.

@KyleFromKitware
Copy link
Author

@bartlettroscoe

@KyleFromKitware
Copy link
Author

See also: kokkos/kokkos#2765.

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pre-Test Inspection' - - This Pull Request Requires Inspection... The code must be inspected by a member of the Team before Testing/Merging
WARNING: NO REVIEWERS HAVE BEEN REQUESTED FOR THIS PULL REQUEST!

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pre-Test Inspection' - - This Pull Request Requires Inspection... The code must be inspected by a member of the Team before Testing/Merging
WARNING: NO REVIEWERS HAVE BEEN REQUESTED FOR THIS PULL REQUEST!

@bartlettroscoe bartlettroscoe added ATDM Config Issues that are specific to the ATDM configuration settings ATDM DevOps Issues that will be worked by the Coordinated ATDM DevOps teams client: ATDM Any issue primarily impacting the ATDM project type: enhancement Issue is an enhancement, not a bug labels Mar 16, 2020
@bartlettroscoe bartlettroscoe added the AT: WIP Causes the PR autotester to not test the PR. (Remove to allow testing to occur.) label Apr 2, 2020
@KyleFromKitware KyleFromKitware force-pushed the ctest-resource-groups branch from 2066cc2 to 500fba0 Compare April 7, 2020 21:05
Copy link
Member

@bartlettroscoe bartlettroscoe left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@KyleFromKitware, thanks for putting this together. I have just a few small requests.

Can I request the following changes (consistent with my above comments in this review)?

  • Move the setting of the vars TRIBITS_TEST_EXTRA_ENVIRONMENT and TRIBITS_RESOURCES_PER_PROCESS into TriBITS proper and guard with IF (TPL_ENABLE_CUDA). (This does not makes sense for non-CUDA builds.)

  • Create a new function in TribitsAddTestHelpers.cmake called something like TRIBITS_PRIVATE_ADD_CTEST_RESOURCE_USAGE_PROPERTIES() and then use that to eliminate duplication related setting the ENVIRONMENT and RESOURCE_GROUPS properties.

  • Put code to generating CTest resource file into a new module TribitsGenerateResourceSpecFile.cmake. (This will allow for reuse of TRIBITS_ADD[_ADVANCED]_TEST() for non-TriBITS projects. Also, that file `TribitsGlobalMacros.cmake has gotten out of control in size.)

  • Change the name of the generated resource from resources.json to ctest_resources.json and move it to the base build directory. (That way it will be more clear what this is and the user will see it clearly. We don't want to hide this away.)

  • Add a comment describing why we need the code related to the command GET_PROPERTY(CTEST_RESOURCE_SPEC_FILE_TYPE CACHE CTEST_RESOURCE_SPEC_FILE PROPERTY TYPE). (It is not clear to me.)

  • Make sure and keep the TriBITS commits separate from the Kokkos commits and there should be no commits outside of cmake/tribits and packages/kokkos (which there will not be after doing the first item above). This will make it easy to apply these same commits to the TriBITS repo.

CMakeLists.txt Outdated
Comment on lines 72 to 73
SET(TRIBITS_TEST_EXTRA_ENVIRONMENT CTEST_KOKKOS_DEVICE_TYPE=gpus)
SET(TRIBITS_RESOURCES_PER_PROCESS gpus:1)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I need to look at this more, but I think we need to move this into TriBITS proper (need to think about the right place) and we need to wrap this inside of:

IF (TPL_ENABLE_CUDA)
   ...
ENDIF()

It might be nice to keep this inside of the TribitsAddTestHelper.cmake file so that TRIBITS_ADD[_ADVANCED]_TEST() can be used by non-TriBITS projects.

cmake/tribits/core/package_arch/TribitsGlobalMacros.cmake Outdated Show resolved Hide resolved
cmake/tribits/core/package_arch/TribitsProjectImpl.cmake Outdated Show resolved Hide resolved
Comment on lines 333 to 342
ELSEIF(DEFINED CACHE{CTEST_RESOURCE_SPEC_FILE})
GET_PROPERTY(CTEST_RESOURCE_SPEC_FILE_TYPE CACHE CTEST_RESOURCE_SPEC_FILE PROPERTY TYPE)
IF (CTEST_RESOURCE_SPEC_FILE_TYPE STREQUAL "INTERNAL")
ADVANCED_SET(CTEST_RESOURCE_SPEC_FILE ""
CACHE INTERNAL
"Resource spec file for CTest."
)
ENDIF()
ENDIF()
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am curious about what is going on with this GET_PROPERTY() command. What is significant about "INTERNAL" here? Can we add a comment below this that explains this idiom and what this is trying to accomplish?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Normally, CTEST_RESOURCE_SPEC_FILE is intended to be set by the user with a -D argument to cmake. However, since we are generating the file ourselves, it doesn't make sense to also provide the option to the user to change it, so I made it an INTERNAL option to tell CMake about it while hiding it from the user in ccmake and cmake-gui. If the project then gets reconfigured with ${PROJECT_NAME}_AUTOGENERATE_TEST_RESOURCE_FILE=OFF, we check if the cache entry exists and is INTERNAL, meaning it was previously generated by ${PROJECT_NAME}_AUTOGENERATE_TEST_RESOURCE_FILE=ON. If so, that means it was not manually specified by the user, so we remove it.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of this, could we not just give a default value to CTEST_RESOURCE_SPEC_FILE if ${PROJECT_NAME}_AUTOGENERATE_TEST_RESOURCE_FILE=ON but not hide the cache variable CTEST_RESOURCE_SPEC_FILE? If the full path given in CTEST_RESOURCE_SPEC_FILE is not the default value then ${PROJECT_NAME}_AUTOGENERATE_TEST_RESOURCE_FILE=ON would be ignored with a "NOTE" printed to the screen.

You would have the following just below the definition of ${PROJECT_NAME}_AUTOGENERATE_TEST_RESOURCE_FILE in the macro TRIBITS_DEFINE_GLOBAL_OPTIONS_AND_DEFINE_EXTRA_REPOS():

SET(CTEST_RESOURCE_SPEC_FILE_DOC_EXTRA "")
IF (${PROJECT_NAME}_AUTOGENERATE_TEST_RESOURCE_FILE)
  SET(CTEST_RESOURCE_SPEC_FILE_DEFAULT  ${CMAKE_BINARY_DIR}/ctest_resources.json)
  IF ("${CTEST_RESOURCE_SPEC_FILE}" STREQUAL "")
    SET(CTEST_RESOURCE_SPEC_FILE_DOC_EXTRA
       "  This file is autogenerated by default since ${PROJECT_NAME}_AUTOGENERATE_TEST_RESOURCE_FILE=${${PROJECT_NAME}_AUTOGENERATE_TEST_RESOURCE_FILE}!" )
  ENDIF()
ELSE()
  SET(CTEST_RESOURCE_SPEC_FILE_DEFAULT "")
ENDIF()

ADVANCED_SET(CTEST_RESOURCE_SPEC_FILE 
  "${CTEST_RESOURCE_SPEC_FILE_DEFAULT}"
  CACHE FILEPATH
  "Resource spec file for CTest.${CTEST_RESOURCE_SPEC_FILE_DOC_EXTRA}"
  )

Then when you auto-generate that file in TribitsProjectImpl.cmake you would have:

IF (${PROJECT_NAME}_AUTOGENERATE_TEST_RESOURCE_FILE)
  IF ("${CTEST_RESOURCE_SPEC_FILE}" STREQUAL "${CTEST_RESOURCE_SPEC_FILE_DEFAULT}")
    TRIBITS_GENERATE_RESOURCE_SPEC_FILE()
  ELSE()
    MESSAGE("NOTE: The test resource file CTEST_RESOURCE_SPEC_FILE='${CTEST_RESOURCE_SPEC_FILE}'"
      " will not be auto-generated even through"
      " ${PROJECT_NAME}_AUTOGENERATE_TEST_RESOURCE_FILE=${${PROJECT_NAME}_AUTOGENERATE_TEST_RESOURCE_FILE}"
      " because its location does not match the default"
      " location '${CTEST_RESOURCE_SPEC_FILE_DEFAULT}'."
      "  If you want to auto-generate this file, please clear CTEST_RESOURCE_SPEC_FILE and
      " reconfigure or create that file on your own and clear"
      " ${PROJECT_NAME}_AUTOGENERATE_TEST_RESOURCE_FILE."
      )
  ENDIF()
ELSE()
  # Don't autogenerate the resource file
ENDIF()

That way, we don't have to hide the variable CTEST_RESOURCE_SPEC_FILE and we allow the documentation for this variable to describe what is going on and what the relationship is between the variables CTEST_RESOURCE_SPEC_FILE and ${PROJECT_NAME}_AUTOGENERATE_TEST_RESOURCE_FILE.

How does hat sound?

NOTE: There is complex enough logic here that we should figure our how to create some automated tests for this in TirBITS to sustain this. This may be hard to do because of the need to set TPL_ENABLE_CUDA=ON. I can't set that in TriBITS automated testing but I may be able to find to mock this and test the different use cases for the generation and and usage of this file. I will worry about how to add automated testing for this in TriBITS to make sure we can sustain this long term. But I can do that after we get some initial testing on CUDA/GPU systems to make sure we are on the right track with all of this.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that sounds like a good idea. As far as testing it, we can use a mock variable and then put the logic inside IF (TPL_ENABLE_CUDA OR TPL_ENABLE_CUDA_MOCK). Does that sound good?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that sounds like a good idea. As far as testing it, we can use a mock variable and then put the logic inside IF (TPL_ENABLE_CUDA OR TPL_ENABLE_CUDA_MOCK). Does that sound good?

Right, something like that would work. Then we can set up different scenarios and make sure that the right resource file gets generated and the right test properties are getting set. We can work on that once I can do some testing on 'waterman'.

packages/kokkos/core/src/impl/Kokkos_Core.cpp Outdated Show resolved Hide resolved
cmake/tribits/core/package_arch/TribitsGlobalMacros.cmake Outdated Show resolved Hide resolved
@KyleFromKitware
Copy link
Author

@bartlettroscoe,

My intention in doing everything here first was that you could test it quickly to see if it helps any. I do of course plan to move the TriBITS stuff into the proper TriBITS repo - I will open a separate PR over there and make the changes you asked.

Have my changes in Kokkos been merged here yet?

@bartlettroscoe
Copy link
Member

Have my changes in Kokkos been merged here yet?

@KyleFromKitware, I think yes because the PR kokkos/kokkos#2765 was already merged. Can you verify that?

@bartlettroscoe
Copy link
Member

My intention in doing everything here first was that you could test it quickly to see if it helps any

@KyleFromKitware, okay, that is fine. We can do more cleanups later once we do some testing with this.

So I guess this is ready to test on CUDA systems?

@KyleFromKitware
Copy link
Author

So I guess this is ready to test on CUDA systems?

Yes, let's try it.

@KyleFromKitware
Copy link
Author

Can you verify that?

I don't see my Kokkos changes in Trilinos master or develop. My changes are in Kokkos develop but not master. Which one does Trilinos pull?

@bartlettroscoe
Copy link
Member

I don't see my Kokkos changes in Trilinos master or develop. My changes are in Kokkos develop but not master. Which one does Trilinos pull?

@KyleFromKitware, this is what I would expect. Kokkos does regular releases (about ever 3 months) where they promote from Kokkos 'develop' to 'master' and then they snapshot Kokkos 'master' to Trilinos 'develop' (through a Trilinos PR). In between proper/offical Kokkos updates to Trilinos, we can make tweaks to Kokkos to address urgent needs. As long as equivalent changes are being made in Kokkos 'develop' and Trilinos 'develop', all will be fine on the next Kokkos snapshot to Trilinos 'develop'.

Does that make sense?

@KyleFromKitware
Copy link
Author

Does that make sense?

Yes, so we expect to not see the Kokkos changes here yet. Does that mean you want me to include the accepted Kokkos patch here as well so it doesn't have to wait for Kokkos master to update?

@bartlettroscoe
Copy link
Member

Yes, so we expect to not see the Kokkos changes here yet. Does that mean you want me to include the accepted Kokkos patch here as well so it doesn't have to wait for Kokkos master to update?

@KyleFromKitware, there is enough nuance here that we should likely discuss this briefly over Skype just to make sure we are on the same page. I will send you an short meeting invite.

@KyleFromKitware KyleFromKitware force-pushed the ctest-resource-groups branch 2 times, most recently from 6daff4a to 336991c Compare April 8, 2020 18:47
@KyleFromKitware
Copy link
Author

@bartlettroscoe, per our discussion, I have cherry-picked the merged version of the Kokkos changes into this branch and rebased onto the latest develop.

@KyleFromKitware KyleFromKitware force-pushed the ctest-resource-groups branch from 336991c to 370f6f0 Compare April 8, 2020 20:08
@trilinos-autotester trilinos-autotester removed the AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration label May 20, 2020
@bartlettroscoe bartlettroscoe added the AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration label May 20, 2020
crtrott pushed a commit to kokkos/kokkos that referenced this pull request May 20, 2020
This fixes the tests KokkosCore_UnitTest_DefaultInit_<x>_MPI_1 that fail when
running with ctest GPU allocation feature that fail becuase they don't run on
GPU device 0 (see #3040).

Note: Since get_ctest_gpu() returns 0 if CTest has not provided anything, it
is safe to always call it.

This new function get_gpu() should really be unit tested on its own.
crtrott added a commit to kokkos/kokkos that referenced this pull request May 20, 2020
@bartlettroscoe
Copy link
Member

Got bit by a randomly failing test (see #3276 (comment)) likely unrelated to any changes in this PR :-(

I applied AT: RETEST to give this another try.

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - User Requested Retest - Label AT: RETEST will be reset after testing.

@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: 6755
  • 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 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 6567
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 4992
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 4839
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1029
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 4329
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_clang_9.0.0

  • Build Num: 704
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 2469
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 2480
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Using Repos:

Repo: TRILINOS (KyleFromKitware/Trilinos)
  • Branch: ctest-resource-groups
  • SHA: 88cd592
  • Mode: TEST_REPO

Pull Request Author: KyleFromKitware

@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: 6755
  • 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 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 6567
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 4992
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 4839
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1029
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 4329
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_clang_9.0.0

  • Build Num: 704
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 2469
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 2480
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 6755 (click to expand)

  -C "/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxGCC4.8.4TestingSettings.cmake"
  -C "/scratch/trilinos/jenkins/tr-test-7/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/jenkins/tr-test-7/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-6840-test-Trilinos_pullrequest_gcc_4.8.4-6755&field3=buildstamp&compare3=61&value3=20200520-2311-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-6840-test-Trilinos_pullrequest_gcc_4.8.4-6755&field2=buildstamp&compare2=61&value2=20200520-2311-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-6840-test-Trilinos_pullrequest_gcc_4.8.4-6755&field2=buildstamp&compare2=61&value2=20200520-2311-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ..................................................  Size: 50K
    ..................................................  Size: 100K
    ..................................................  Size: 150K
    ..................................................  Size: 200K
    ..................................................  Size: 250K
    ..................................................  Size: 300K
    ..................................................  Size: 350K
    ..................................................  Size: 400K
    ..................................................  Size: 450K
    .. Size of output: 451K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    ..................................................  Size: 49K
    ..................................................  Size: 99K
    ..................................................  Size: 149K
    ..................................................  Size: 199K
    ..................................................  Size: 249K
    ..................................................  Size: 299K
    ..................................................  Size: 350K
    ..................................................  Size: 399K
    ..................................................  Size: 449K
    ..................................................  Size: 499K
    ..................................................  Size: 549K
    ..................................................  Size: 600K
    ..................................................  Size: 649K
    ..................................................  Size: 699K
    ..................................................  Size: 749K
    ..................................................  Size: 799K
    ..................................................  Size: 849K
    ..................................................  Size: 899K
    ..................................................  Size: 949K
    ..................................................  Size: 999K
    ..................................................  Size: 1049K
    ..................................................  Size: 1100K
    ..................................................  Size: 1149K
    ..................................................  Size: 1200K
    ..................................................  Size: 1249K
    ..................................................  Size: 1299K
    ..................................................  Size: 1349K
    ..................................................  Size: 1399K
    ..................................................  Size: 1449K
    ..................................................  Size: 1499K
    ..................................................  Size: 1550K
    ..................................................  Size: 1600K
    ..................................................  Size: 1650K
    ..................................................  Size: 1699K
    ..................................................  Size: 1749K
    ..................................................  Size: 1800K
    ..................................................  Size: 1849K
    ..................................................  Size: 1899K
    ..................................................  Size: 1949K
    ..................................................  Size: 1999K
    ..................................................  Size: 2049K
    ..................................................  Size: 2099K
    ..................................................  Size: 2149K
    ..................................................  Size: 2199K
    ..................................................  Size: 2249K
    ..................................................  Size: 2299K
    ...................... Size of output: 2321K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
nos_pullrequest_gcc_4.8.4@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #6755
PULLREQUESTNUM = 6840
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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_KokkosCore = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

Testing Parallel level   = 10
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/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxIntelTestingSettings.cmake"
  -C "/scratch/trilinos/jenkins/ascic158/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/jenkins/ascic158/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-6840-test-Trilinos_pullrequest_intel_17.0.1-6567&field3=buildstamp&compare3=61&value3=20200520-2311-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-6840-test-Trilinos_pullrequest_intel_17.0.1-6567&field2=buildstamp&compare2=61&value2=20200520-2311-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-6840-test-Trilinos_pullrequest_intel_17.0.1-6567&field2=buildstamp&compare2=61&value2=20200520-2311-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ..................................................  Size: 50K
    ..................................................  Size: 100K
    ..................................................  Size: 150K
    ..................................................  Size: 200K
    ..................................................  Size: 250K
    ..................................................  Size: 300K
    ..................................................  Size: 350K
    ..................................................  Size: 400K
    ..................................................  Size: 450K
    ..... Size of output: 454K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    ..................................................  Size: 50K
    ..................................................  Size: 99K
    ..................................................  Size: 149K
    ..................................................  Size: 199K
    ..................................................  Size: 250K
    ..................................................  Size: 299K
    ..................................................  Size: 349K
    ..................................................  Size: 399K
    ..................................................  Size: 449K
    ..................................................  Size: 499K
    ..................................................  Size: 549K
    ..................................................  Size: 599K
    ..................................................  Size: 650K
    ..................................................  Size: 700K
    ..................................................  Size: 750K
    ..................................................  Size: 799K
    ..................................................  Size: 849K
    ..................................................  Size: 899K
    ................. Size of output: 916K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
ETCDF_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/netcdf/4.7.3/intel/17.0.1/mpich/3.2/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.7.3/intel/17.0.1/mpich/3.2/parallel/lib
GIT_URL = https://github.com/trilinos/Trilinos
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.10.6/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.10.6/parallel:sems-netcdf/4.7.3/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
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = icpc
PWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #6567
PULLREQUESTNUM = 6840
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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_KokkosCore = ON

Set CWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

Current directory: /scratch/trilinos/jenkins/ascic166/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='TrilinosATDMConfigTests,ALL_PACKAGES,KokkosCore'

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

CHANGED_PACKAGES_PT_LIST='TrilinosATDMConfigTests,ALL_PACKAGES,KokkosCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'
Build name = PR-6840-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-4992
Cur dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test
Parallel level = 20
Testing Parallel level = 10
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/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxGCC4.9.3TestingSettingsSERIAL.cmake"
-C "/scratch/trilinos/jenkins/ascic166/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/jenkins/ascic166/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-6840-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-4992&field3=buildstamp&compare3=61&value3=20200520-2311-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-6840-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-4992&field2=buildstamp&compare2=61&value2=20200520-2311-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-6840-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-4992&field2=buildstamp&compare2=61&value2=20200520-2311-Pull Request
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.................................................. Size: 100K
.................................................. Size: 150K
.................................................. Size: 200K
.................................................. Size: 250K
.................................................. Size: 300K
.................................................. Size: 350K
............................. Size of output: 378K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.................................................. Size: 49K
.................................................. Size: 99K
.................................................. Size: 149K
.................................................. Size: 199K
.................................................. Size: 249K
.................................................. Size: 299K
.................................................. Size: 349K
.................................................. Size: 399K
..................................... Size of output: 436K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
F_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/4.9.3/base/include
MODULE_VERSION_STACK = 3.2.10
JOB_COOWNERS_EMAILS = wcmclen@sandia.gov,trilinos@sandia.gov
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/4.9.3/base/lib
GIT_BRANCH = origin/develop
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/boost/1.63.0/gcc/4.9.3/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
SNLSYSTEM = cee
SEMS_HDF5_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/hdf5/1.10.6/gcc/4.9.3/base
LOADEDMODULES = 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.10.6/base:sems-netcdf/4.7.3/base:sems-metis/5.1.0/base:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #4992
PULLREQUESTNUM = 6840
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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_KokkosCore = ON

Set CWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

TRIBITS_DIR=/scratch/trilinos/jenkins/tr-test-0/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/jenkins/tr-test-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos

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

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/jenkins/tr-test-0/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='TrilinosATDMConfigTests,ALL_PACKAGES,KokkosCore'

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

CHANGED_PACKAGES_PT_LIST='TrilinosATDMConfigTests,ALL_PACKAGES,KokkosCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'
Build name = PR-6840-test-Trilinos_pullrequest_gcc_7.2.0-4839
Cur dir = /scratch/trilinos/jenkins/tr-test-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/tr-test-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos
Binary dir = /scratch/trilinos/jenkins/tr-test-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test
Parallel level = 20
Testing Parallel level = 10
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/jenkins/tr-test-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/tr-test-0/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/jenkins/tr-test-0/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=tr-host-0.novalocal&field2=buildname&compare2=61&value2=PR-6840-test-Trilinos_pullrequest_gcc_7.2.0-4839&field3=buildstamp&compare3=61&value3=20200520-2312-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-6840-test-Trilinos_pullrequest_gcc_7.2.0-4839&field2=buildstamp&compare2=61&value2=20200520-2312-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-6840-test-Trilinos_pullrequest_gcc_7.2.0-4839&field2=buildstamp&compare2=61&value2=20200520-2312-Pull Request
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.................................................. Size: 100K
.................................................. Size: 150K
.................................................. Size: 200K
.................................................. Size: 250K
.................................................. Size: 300K
.................................................. Size: 350K
.................................................. Size: 400K
........................................ Size of output: 439K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.................................................. Size: 49K
.................................................. Size: 99K
.................................................. Size: 149K
.................................................. Size: 199K
.................................................. Size: 249K
.................................................. Size: 299K
.................................................. Size: 349K
.................................................. Size: 399K
..................... Size of output: 420K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
t-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #4839
PULLREQUESTNUM = 6840
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_KokkosCore = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 1029 (click to expand)

CHANGED_PACKAGES_FULL_LIST='TrilinosATDMConfigTests,ALL_PACKAGES,KokkosCore'

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

CHANGED_PACKAGES_PT_LIST='TrilinosATDMConfigTests,ALL_PACKAGES,KokkosCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'
Build name = PR-6840-test-Trilinos_pullrequest_gcc_8.3.0-1029
Cur dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test
Parallel level = 20
Testing Parallel level = 10
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/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos/cmake/std/PullRequestLinuxGCC8.3.0TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.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=ascic166&field2=buildname&compare2=61&value2=PR-6840-test-Trilinos_pullrequest_gcc_8.3.0-1029&field3=buildstamp&compare3=61&value3=20200520-2312-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-6840-test-Trilinos_pullrequest_gcc_8.3.0-1029&field2=buildstamp&compare2=61&value2=20200520-2312-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-6840-test-Trilinos_pullrequest_gcc_8.3.0-1029&field2=buildstamp&compare2=61&value2=20200520-2312-Pull Request
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.................................................. Size: 100K
.................................................. Size: 150K
.................................................. Size: 200K
.................................................. Size: 250K
.................................................. Size: 300K
.................................................. Size: 350K
.................................................. Size: 400K
........................................ Size of output: 439K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.................................................. Size: 49K
.................................................. Size: 99K
.................................................. Size: 149K
.................................................. Size: 199K
.................................................. Size: 249K
.................................................. Size: 299K
.................................................. Size: 349K
.................................................. Size: 399K
...................... Size of output: 422K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
0
JOB_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.8.5
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.7.5
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/8.3.0/openmpi/1.10.1/parallel/lib
GIT_BRANCH = origin/develop
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/boost/1.66.0/gcc/8.3.0/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/hdf5/1.10.6/gcc/8.3.0/openmpi/1.10.1/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/scotch/6.0.3/gcc/8.3.0/openmpi/1.10.1/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/8.3.0:sems-openmpi/1.10.1:sems-boost/1.66.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/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
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #1029
PULLREQUESTNUM = 6840
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/8.3.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_KokkosCore = ON

Set CWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

build submit error = 0
Starting testing step.
CMake Error at /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0
ide10 ride10 ride10 ride10 ride10 ride10 ride10
METIS_ROOT = /home/projects/ppc64le-pwr8/metis/5.0.1/gcc/7.2.0
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
LSB_EXIT_PRE_ABORT = 99
TRILINOS_SOURCE_REPO = https://github.com/KyleFromKitware/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/1590016357.4131
BLAS_ROOT = /home/projects/ppc64le-pwr8/netlib/3.8.0/gcc/7.2.0
GIT_CHECKOUT_DIR = Trilinos
LSB_AFFINITY_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1590016357.4131.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 44298 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 = 1590016357
LSB_EXEC_HOSTTYPE = LINUXPPC64LE
GIT_PREVIOUS_SUCCESSFUL_COMMIT = a91acd0787dce62cab51626ed6f19a084fe23772
LSB_DJOB_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1590016357.4131.hostfile
no_proxy = localhost,localnets,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
GIT_CHECKOUT_DIR_1 = TFW_single_configure_support_scripts
GIT_CHECKOUT_DIR_2 = TFW_testing_single_configure_prototype
JOB_OWNER_EMAIL = HRSwant@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 4329
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/4329/display/redirect
JOB_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
LSB_BATCH_JID = 4131
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_bqNHm8maFh
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
WORKSPACE_TMP = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@tmp
GIT_BRANCH_1 = origin/master
CUDA_MANAGED_FORCE_DEVICE_ALLOC = 1
HISTCONTROL = ignoredups
PWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2
LS_EXECCWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #4329
CXX_VERSION = 7.2.0
PYTHON_ROOT = /home/projects/ppc64le/python/2.7.12
OMPI_CXX = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/packages/kokkos/bin/nvcc_wrapper
SUPERLU_VERSION = 4.3.0
PULLREQUESTNUM = 6840
BINARY_TYPE_HPC =

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_KokkosCore = ON

Set CWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 697, in
returnValue = run()
File "/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 690, 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-6840-test-Trilinos_pullrequest_cuda_9.2-4329', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=64', '-DTEST_PARALLEL_LEVEL=8', '-Dbuild_dir=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/pull_request_test', '-Dconfigure_script=/home/trilinos/jenkins/ride/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_clang_9.0.0 # 704 (click to expand)

CHANGED_PACKAGES_FULL_LIST='TrilinosATDMConfigTests,ALL_PACKAGES,KokkosCore'

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

CHANGED_PACKAGES_PT_LIST='TrilinosATDMConfigTests,ALL_PACKAGES,KokkosCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'
Build name = PR-6840-test-Trilinos_pullrequest_clang_9.0.0-704
Cur dir = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/pull_request_test
Parallel level = 10
Testing Parallel level = 10
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.12.2/bin/cmake
-C "/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/Trilinos/cmake/std/PullRequestLinuxClang9.0.0TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.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=ascic141&field2=buildname&compare2=61&value2=PR-6840-test-Trilinos_pullrequest_clang_9.0.0-704&field3=buildstamp&compare3=61&value3=20200520-2312-Pull Request-Experimental
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-6840-test-Trilinos_pullrequest_clang_9.0.0-704&field2=buildstamp&compare2=61&value2=20200520-2312-Pull Request-Experimental
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-6840-test-Trilinos_pullrequest_clang_9.0.0-704&field2=buildstamp&compare2=61&value2=20200520-2312-Pull Request-Experimental
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.................................................. Size: 100K
.................................................. Size: 150K
.................................................. Size: 200K
.................................................. Size: 250K
.................................................. Size: 300K
.................................................. Size: 350K
.................................................. Size: 400K
.................................... Size of output: 435K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.................................................. Size: 49K
.................................................. Size: 99K
.................................................. Size: 149K
.................................................. Size: 199K
.................................................. Size: 249K
.................................................. Size: 299K
.................................................. Size: 350K
.................................................. Size: 399K
.................................................. Size: 449K
. Size of output: 450K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
SION_STACK = 3.2.10
JOB_COOWNERS_EMAILS = HRSwant@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.7.3/clang/9.0.0/openmpi/1.10.1/parallel/lib
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/boost/1.63.0/clang/9.0.0/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.10.6/clang/9.0.0/openmpi/1.10.1/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/scotch/6.0.3/clang/9.0.0/openmpi/1.10.1/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/5.3.0:sems-clang/9.0.0:sems-openmpi/1.10.1:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.12.2:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0@tmp
SEMS_CMAKE_VERSION = 3.12.2
HISTCONTROL = ignoredups
SERIAL_CXX = clang++
PWD = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #704
PULLREQUESTNUM = 6840
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/superlu/4.3/clang/9.0.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_KokkosCore = ON

Set CWD = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

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 = 7704f3b1-8db5-4427-a58f-9efabaa5e824
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
GIT_CHECKOUT_DIR = Trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SSH_CLIENT = 205.137.81.17 57002 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 = a91acd0787dce62cab51626ed6f19a084fe23772
no_proxy = localhost,localnets,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 = 2469
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-ninjCurrently 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-6840-test-Trilinos_pullrequest_python_2-2469
Cur dir                  = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos
Binary dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/pull_request_test
Parallel level           = 20
Testing 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/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos/cmake/std/PullRequestLinuxPython2.cmake"
  -C "/scratch/trilinos/jenkins/tr-test-4/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/jenkins/tr-test-4/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-6840-test-Trilinos_pullrequest_python_2-2469&field3=buildstamp&compare3=61&value3=20200520-2313-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-6840-test-Trilinos_pullrequest_python_2-2469&field2=buildstamp&compare2=61&value2=20200520-2313-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-6840-test-Trilinos_pullrequest_python_2-2469&field2=buildstamp&compare2=61&value2=20200520-2313-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
a_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #2469
PULLREQUESTNUM = 6840

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

Set CWD = /scratch/trilinos/jenkins/tr-test-4/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 # 2480 (click to expand)

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 = a8acde2e-26c7-434c-a86d-e16baada0716
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
GIT_CHECKOUT_DIR = Trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SSH_CLIENT = 205.137.81.17 57002 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 = a91acd0787dce62cab51626ed6f19a084fe23772
no_proxy = localhost,localnets,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 = 2480
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_fCurrently 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-6840-test-Trilinos_pullrequest_python_3-2480
Cur dir                  = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos
Binary dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/pull_request_test
Parallel level           = 20
Testing 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/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxPython3.cmake"
  -C "/scratch/trilinos/jenkins/tr-test-4/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/jenkins/tr-test-4/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-6840-test-Trilinos_pullrequest_python_3-2480&field3=buildstamp&compare3=61&value3=20200520-2313-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-6840-test-Trilinos_pullrequest_python_3-2480&field2=buildstamp&compare2=61&value2=20200520-2313-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-6840-test-Trilinos_pullrequest_python_3-2480&field2=buildstamp&compare2=61&value2=20200520-2313-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
ortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #2480
PULLREQUESTNUM = 6840

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

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


CDash Test Results for PR# 6840.


Wiki: How to Reproduce PR Testing Builds and Errors.

@trilinos-autotester trilinos-autotester removed the AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration label May 21, 2020
@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: 6760
  • 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 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 6572
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 4997
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 4844
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1034
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 4334
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_clang_9.0.0

  • Build Num: 709
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 2473
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 2484
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Using Repos:

Repo: TRILINOS (KyleFromKitware/Trilinos)
  • Branch: ctest-resource-groups
  • SHA: 88cd592
  • Mode: TEST_REPO

Pull Request Author: KyleFromKitware

@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: 6760
  • 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 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 6572
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 4997
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 4844
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1034
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 4334
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_clang_9.0.0

  • Build Num: 709
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 2473
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 2484
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 6840
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH ctest-resource-groups
TRILINOS_SOURCE_REPO https://github.com/KyleFromKitware/Trilinos
TRILINOS_SOURCE_SHA 88cd592
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6557c3c


CDash Test Results for PR# 6840.

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester trilinos-autotester merged commit 61c8273 into trilinos:develop May 21, 2020
@trilinos-autotester
Copy link
Contributor

Merge on Pull Request# 6840: 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 May 21, 2020
jmgate pushed a commit to tcad-charon/Trilinos that referenced this pull request May 22, 2020
…s:develop' (cd0d4eb).

* trilinos-develop:
  Piro: cleaning/refactoring of steady adjoint sensitivities       moved computation of adjoint sensitivities       from Piro::NOXSolver into Piro::SteadyStateSolver
  ATDM: Set several CUDA disables (trilinos#6329, trilinos#6799, trilinos#7090)
  Tempus: Add TimeEvent Object
  amesos2: fix tests, examples with basker, cleanup
  amesos2/basker: fix memory leak
  Phalanx: remove all use of cuda uvm
  ATDM: ride: Spread out work over GPUs (trilinos#2422)
  Kokkos: Switch to use Kokkos::Cuda().cuda_device() for expected_device (kokkos/kokkos#3040, trilinos#6840)
  Kokkos: Extract and use get_gpu() (kokkos/kokkos#3040, trilinos#6840)
  ATDM: Update documentation for updated 'waterman' env (trilinos#2422)
  ATDM: waterman: Reduce from ctest -j4 to -j2 (trilinos#2422)
  ATDM: waterman: Use cmake 3.17.2 and ctest resource limits for GPUs (trilinos#2422)
  Allow pointing to a tribits outside of Trilinos (trilinos#2422)
  Automatic snapshot commit from tribits at 39a9591
jmgate pushed a commit to tcad-charon/Trilinos that referenced this pull request May 22, 2020
…s:develop' (cd0d4eb).

* trilinos-develop:
  Piro: cleaning/refactoring of steady adjoint sensitivities       moved computation of adjoint sensitivities       from Piro::NOXSolver into Piro::SteadyStateSolver
  ATDM: Set several CUDA disables (trilinos#6329, trilinos#6799, trilinos#7090)
  Tempus: Add TimeEvent Object
  amesos2: fix tests, examples with basker, cleanup
  amesos2/basker: fix memory leak
  Phalanx: remove all use of cuda uvm
  ATDM: ride: Spread out work over GPUs (trilinos#2422)
  Kokkos: Switch to use Kokkos::Cuda().cuda_device() for expected_device (kokkos/kokkos#3040, trilinos#6840)
  Kokkos: Extract and use get_gpu() (kokkos/kokkos#3040, trilinos#6840)
  ATDM: Update documentation for updated 'waterman' env (trilinos#2422)
  ATDM: waterman: Reduce from ctest -j4 to -j2 (trilinos#2422)
  ATDM: waterman: Use cmake 3.17.2 and ctest resource limits for GPUs (trilinos#2422)
  Allow pointing to a tribits outside of Trilinos (trilinos#2422)
  Automatic snapshot commit from tribits at 39a9591
bartlettroscoe added a commit to bartlettroscoe/kokkos that referenced this pull request May 22, 2020
This fixes the tests KokkosCore_UnitTest_DefaultInit_<x>_MPI_1 that fail when
running with ctest GPU allocation feature that fail becuase they don't run on
GPU device 0 (see kokkos#3040).

Note: Since get_ctest_gpu() returns 0 if CTest has not provided anything, it
is safe to always call it.

This new function get_gpu() should really be unit tested on its own.
bartlettroscoe added a commit to bartlettroscoe/kokkos that referenced this pull request May 22, 2020
…s#3040, trilinos/Trilinos#6840)

This seems to also fix the KokkosCore_UnitTest_DefaultInit_<x>_MPI_1 tests
that where failing when running with ctest GPU allocation feature that fail
because they don't run on GPU device 0 (see kokkos#3040).
crtrott added a commit to kokkos/kokkos that referenced this pull request May 28, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ATDM Config Issues that are specific to the ATDM configuration settings ATDM DevOps Issues that will be worked by the Coordinated ATDM DevOps teams client: ATDM Any issue primarily impacting the ATDM project type: enhancement Issue is an enhancement, not a bug
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants