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

WIP Tpetra: persistent MPI requests #4782

Closed
wants to merge 3 commits into from

Conversation

cgcgcg
Copy link
Contributor

@cgcgcg cgcgcg commented Apr 1, 2019

@trilinos/tpetra

Description

This PR adds the option to use persistent MPI communication in Tpetra. The defaults communication option is not changed. I tested this using MueLu, where this can be switched on for the solve phase only. There are probably quite a lot of cases where this will not work correctly, so I appreciate feedback!

@cgcgcg cgcgcg added pkg: Tpetra pkg: Teuchos Issues primarily dealing with the Teuchos Package labels Apr 1, 2019
@cgcgcg cgcgcg self-assigned this Apr 1, 2019
@cgcgcg cgcgcg changed the title Tpetra: persistent MPI requests WIP Tpetra: persistent MPI requests Apr 1, 2019
@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_4.8.4

  • Build Num: 3082
  • 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 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA e62faf1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 77f266c

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 2912
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA e62faf1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 77f266c

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 1361
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA e62faf1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 77f266c

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 1049
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA e62faf1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 77f266c

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 779
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
JENKINS_JOB_TYPE Experimental
PULLREQUESTNUM 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA e62faf1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 77f266c

Using Repos:

Repo: TRILINOS (cgcgcg/Trilinos)
  • Branch: tpetraPersistentPR
  • SHA: e62faf1
  • Mode: TEST_REPO

Pull Request Author: cgcgcg

@mhoemmen mhoemmen self-requested a review April 1, 2019 20:57
@@ -210,6 +210,11 @@ class MpiCommRequestBase : public CommRequest<OrdinalType> {
return tmp_rawMpiRequest;
}

MPI_Request getRawMpiRequest()
{
return rawMpiRequest_;
Copy link
Contributor

Choose a reason for hiding this comment

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

We should add the right abstraction to CommRequest, instead of exposing this implementation detail. It looks like start (which you added below) doesn't need this method.

*out_ << os.str ();
}

int count = persistentRequests_.size();
Copy link
Contributor

Choose a reason for hiding this comment

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

  1. Use of raw MPI needs to be protected by the HAVE_TPETRACORE_MPI macro.
  2. Just call Teuchos::waitAll; it does exactly what lines 578-586 do.
  3. We should talk about better encapsulations (e.g., a "CommRequests" interface with an MpiCommRequests base class that has an array of raw MPI_Request in it).

Copy link
Contributor Author

Choose a reason for hiding this comment

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

As far as I can see, 'waitAll' actually frees the requests. I can add an optional parameter to take care of that. And add a 'startAll' function.

@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: 3082
  • 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 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA e62faf1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 77f266c

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 2912
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA e62faf1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 77f266c

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 1361
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA e62faf1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 77f266c

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 1049
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA e62faf1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 77f266c

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 779
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
JENKINS_JOB_TYPE Experimental
PULLREQUESTNUM 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA e62faf1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 77f266c
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 3082 (click to expand)

    ..................................................  Size: 6750K
    ..................................................  Size: 6799K
    ..................................................  Size: 6849K
    ..................................................  Size: 6900K
    ..................................................  Size: 6950K
    ..................................................  Size: 7000K
    ..................................................  Size: 7049K
    ..................................................  Size: 7100K
    ..................................................  Size: 7149K
    ..................................................  Size: 7199K
    ..................................................  Size: 7250K
    ..................................................  Size: 7300K
    ..................................................  Size: 7350K
    ..................................................  Size: 7399K
    ..................................................  Size: 7450K
    ..................................................  Size: 7499K
    ..................................................  Size: 7550K
    ..................................................  Size: 7600K
    ..................................................  Size: 7649K
    ..................................................  Size: 7699K
    ..................................................  Size: 7750K
    ..................................................  Size: 7799K
    ..................................................  Size: 7849K
    ..................................................  Size: 7899K
    ..................................................  Size: 7949K
    ..................................................  Size: 8000K
    ..................................................  Size: 8050K
    ..................................................  Size: 8100K
    ..................................................  Size: 8150K
    ..................................................  Size: 8199K
    ..................................................  Size: 8250K
    ..................................................  Size: 8300K
    ..................................................  Size: 8349K
    ..................................................  Size: 8400K
    ..................................................  Size: 8450K
    ..................................................  Size: 8500K
    ..................................................  Size: 8549K
    ..................................................  Size: 8600K
    ..................................................  Size: 8650K
    ..................................................  Size: 8699K
    ..................................................  Size: 8750K
    ..................................................  Size: 8799K
    ..................................................  Size: 8849K
    ..................................................  Size: 8900K
    ..................................................  Size: 8950K
    ..................................................  Size: 9000K
    ..................................................  Size: 9049K
    ..................................................  Size: 9100K
    ..................................................  Size: 9150K
    ..................................................  Size: 9200K
    ..................................................  Size: 9250K
    ..................................................  Size: 9300K
    ..................................................  Size: 9349K
    ..................................................  Size: 9399K
    ..................................................  Size: 9449K
    ..................................................  Size: 9500K
    ..................................................  Size: 9550K
    ..................................................  Size: 9600K
    ..................................................  Size: 9649K
    ..................................................  Size: 9700K
    ..................................................  Size: 9749K
    ..................................................  Size: 9800K
    ..................................................  Size: 9849K
    ..................................................  Size: 9900K
    ..................................................  Size: 9949K
    ..................................................  Size: 10000K
    ..................................................  Size: 10049K
    ..................................................  Size: 10099K
    ..................................................  Size: 10150K
    ..................................................  Size: 10200K
    ..................................................  Size: 10250K
    ..................................................  Size: 10299K
    ..................................................  Size: 10350K
    ..................................................  Size: 10400K
    ..................................................  Size: 10450K
    ..................................................  Size: 10499K
    ..................................................  Size: 10550K
    ..................................................  Size: 10599K
    ..................................................  Size: 10649K
    ..................................................  Size: 10699K
    ..................................................  Size: 10749K
    ..................................................  Size: 10799K
    ..................................................  Size: 10849K
    ..................................................  Size: 10900K
    ..................................................  Size: 10949K
    ..................................................  Size: 10999K
    ..................................................  Size: 11049K
    ..................................................  Size: 11099K
    ..................................................  Size: 11149K
    ..................................................  Size: 11199K
    ..................................................  Size: 11249K
    ... Size of output: 11253K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
Archiving artifacts
Finished: SUCCESS

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

    ..................................................  Size: 19249K
    ..................................................  Size: 19299K
    ..................................................  Size: 19349K
    ..................................................  Size: 19400K
    ..................................................  Size: 19450K
    ..................................................  Size: 19500K
    ..................................................  Size: 19549K
    ..................................................  Size: 19599K
    ..................................................  Size: 19649K
    ..................................................  Size: 19699K
    ..................................................  Size: 19750K
    ..................................................  Size: 19800K
    ..................................................  Size: 19850K
    ..................................................  Size: 19900K
    ..................................................  Size: 19950K
    ..................................................  Size: 20000K
    ..................................................  Size: 20050K
    ..................................................  Size: 20099K
    ..................................................  Size: 20149K
    ..................................................  Size: 20199K
    ..................................................  Size: 20249K
    ..................................................  Size: 20300K
    ..................................................  Size: 20350K
    ..................................................  Size: 20400K
    ..................................................  Size: 20450K
    ..................................................  Size: 20500K
    ..................................................  Size: 20550K
    ..................................................  Size: 20600K
    ..................................................  Size: 20650K
    ..................................................  Size: 20699K
    ..................................................  Size: 20749K
    ..................................................  Size: 20799K
    ..................................................  Size: 20849K
    ..................................................  Size: 20900K
    ..................................................  Size: 20950K
    ..................................................  Size: 21000K
    ..................................................  Size: 21050K
    ..................................................  Size: 21100K
    ..................................................  Size: 21150K
    ..................................................  Size: 21199K
    ..................................................  Size: 21249K
    ..................................................  Size: 21299K
    ..................................................  Size: 21350K
    ..................................................  Size: 21399K
    ..................................................  Size: 21449K
    ..................................................  Size: 21499K
    ..................................................  Size: 21549K
    ..................................................  Size: 21600K
    ..................................................  Size: 21650K
    ..................................................  Size: 21699K
    ..................................................  Size: 21749K
    ..................................................  Size: 21799K
    ..................................................  Size: 21849K
    ..................................................  Size: 21899K
    ..................................................  Size: 21950K
    ..................................................  Size: 22000K
    ..................................................  Size: 22049K
    ..................................................  Size: 22099K
    ..................................................  Size: 22149K
    ..................................................  Size: 22199K
    ..................................................  Size: 22249K
    ..................................................  Size: 22299K
    ..................................................  Size: 22349K
    ..................................................  Size: 22399K
    ..................................................  Size: 22450K
    ..................................................  Size: 22500K
    ..................................................  Size: 22550K
    ..................................................  Size: 22600K
    ..................................................  Size: 22649K
    ..................................................  Size: 22699K
    ..................................................  Size: 22749K
    ..................................................  Size: 22799K
    ..................................................  Size: 22850K
    ..................................................  Size: 22900K
    ..................................................  Size: 22950K
    ..................................................  Size: 23000K
    ..................................................  Size: 23049K
    ..................................................  Size: 23099K
    ..................................................  Size: 23150K
    ..................................................  Size: 23199K
    ..................................................  Size: 23249K
    ..................................................  Size: 23300K
    ..................................................  Size: 23349K
    ..................................................  Size: 23399K
    ..................................................  Size: 23449K
    ..................................................  Size: 23500K
    ..................................................  Size: 23550K
    ..................................................  Size: 23599K
    ..................................................  Size: 23649K
    ..................................................  Size: 23699K
    ..................................................  Size: 23750K
    ................................. Size of output: 23783K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
Archiving artifacts
Finished: SUCCESS

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

Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/dense-hessian/ROL_example_dense-hessian_DenseHessian.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/sacado/ROL_example_sacado_example_01a.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/sacado/ROL_example_sacado_example_01b.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/sacado/ROL_example_sacado_example_02.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/burgers-control/ROL_example_burgers-control_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/burgers-control/ROL_example_burgers-control_example_02.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/burgers-control/ROL_example_burgers-control_example_03.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/burgers-control/ROL_example_burgers-control_example_04.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/burgers-control/ROL_example_burgers-control_example_05.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/burgers-control/ROL_example_burgers-control_example_06.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/burgers-control/ROL_example_burgers-control_example_07.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/parabolic-control/ROL_example_parabolic-control_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/parabolic-control/ROL_example_parabolic-control_example_02.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/parabolic-control/ROL_example_parabolic-control_example_03.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/parabolic-control/ROL_example_parabolic-control_example_04.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/parabolic-control/ROL_example_parabolic-control_example_05.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/parabolic-control/ROL_example_parabolic-control_example_06.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/poisson-control/ROL_example_poisson-control_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/poisson-control/ROL_example_poisson-control_example_02.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/tensor-opt/ROL_example_tensor-opt_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/TEST/ROL_example_PDE-OPT_TEST_test_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/TEST/ROL_example_PDE-OPT_TEST_test_02.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/TEST/ROL_example_PDE-OPT_TEST_test_03.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/TEST/ROL_example_PDE-OPT_TEST_test_04.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/TEST/ROL_example_PDE-OPT_TEST_test_05.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/TEST/ROL_example_PDE-OPT_TEST_test_07.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/TEST/ROL_example_PDE-OPT_TEST_test_08.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/TEST/ROL_example_PDE-OPT_TEST_test_09.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/0ld/poisson/ROL_example_PDE-OPT_0ld_poisson_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/0ld/stefan-boltzmann/ROL_example_PDE-OPT_0ld_stefan-boltzmann_example_03.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/0ld/elasticity/ROL_example_PDE-OPT_0ld_elasticity_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/0ld/elasticity/ROL_example_PDE-OPT_0ld_elasticity_example_02.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/0ld/adv-diff-react/ROL_example_PDE-OPT_0ld_adv-diff-react_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/0ld/adv-diff-react/ROL_example_PDE-OPT_0ld_adv-diff-react_example_02.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/0ld/stoch-adv-diff/ROL_example_PDE-OPT_0ld_stoch-adv-diff_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/poisson/ROL_example_PDE-OPT_poisson_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/helmholtz/ROL_example_PDE-OPT_helmholtz_example_02.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/poisson-boltzmann/ROL_example_PDE-OPT_poisson-boltzmann_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/adv-diff-react/ROL_example_PDE-OPT_adv-diff-react_example_02.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/tempus/ROL_example_tempus_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/navier-stokes/ROL_example_PDE-OPT_navier-stokes_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/navier-stokes/ROL_example_PDE-OPT_navier-stokes_example_02.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/tempus/ROL_example_tempus_example_02.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/obstacle/ROL_example_PDE-OPT_obstacle_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/helmholtz/ROL_example_PDE-OPT_helmholtz_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/tempus/ROL_example_tempus_example_sincos.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/ginzburg-landau/ROL_example_PDE-OPT_ginzburg-landau_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/ginzburg-landau/ROL_example_PDE-OPT_ginzburg-landau_example_02.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/tempus/ROL_example_tempus_example_parabolic_thyravec.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/nonlinear-elliptic/ROL_example_PDE-OPT_nonlinear-elliptic_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/nonlinear-elliptic/ROL_example_PDE-OPT_nonlinear-elliptic_example_02.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/tempus/ROL_example_tempus_example_parabolic_modeleval.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/example/PDE-OPT/topo-opt/poisson/ROL_example_PDE-OPT_topo-opt_poisson_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/tutorial/ROL_tutorial_BoundAndInequality.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/rol/tutorial/ROL_tutorial_Unconstrained.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/piro/test/Piro_UnitTests.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/piro/test/Piro_Epetra_MatrixFreeOperator_UnitTests.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/piro/test/Piro_MatrixFreeDecorator_UnitTests.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/piro/test/Piro_EvalModel.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/piro/test/Piro_ThyraSolver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/piro/test/Piro_AnalysisDriver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/piro/test/Piro_AnalysisDriverTpetra.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/piro/test/Piro_SecondOrderIntegrator.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/piro/test/Piro_NOXSolver_UnitTests.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/piro/test/Piro_LOCASolver_UnitTests.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/piro/test/Piro_RythmosSolver_UnitTests.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/piro/test/Piro_Epetra_RythmosSolver_UnitTests.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/piro/test/Piro_TempusSolver_UnitTests.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/trilinoscouplings/examples/ml/NonlinML/TrilinosCouplings_ml_nox_1Delasticity_example.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Poisson_NoFE.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Poisson.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Poisson_BlockMaterials.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Poisson_BlockMaterials.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Poisson2D.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Poisson2D_p2.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Maxwell.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Maxwell.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Maxwell.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Maxwell.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_GradDiv.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_CVFEM.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Poisson2D_pn.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Poisson2D_pn.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Poisson2D_pn.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Darcy.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_DivLSFEM.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_CurlLSFEM.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_StabilizatedADR.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/trilinoscouplings/examples/fenl/TrilinosCouplings_fenl_ensemble.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/packages/trilinoscouplings/examples/fenl/TrilinosCouplings_fenl_pce.exe
CMake Error at /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype/simple_testing.cmake:213 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0
Single configure/build/test failed. The error code was: 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

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

Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/rol/example/PDE-OPT/0ld/poisson/ROL_example_PDE-OPT_0ld_poisson_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/rol/example/PDE-OPT/0ld/stefan-boltzmann/ROL_example_PDE-OPT_0ld_stefan-boltzmann_example_03.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/rol/example/PDE-OPT/0ld/adv-diff-react/ROL_example_PDE-OPT_0ld_adv-diff-react_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/rol/example/PDE-OPT/0ld/adv-diff-react/ROL_example_PDE-OPT_0ld_adv-diff-react_example_02.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/rol/example/PDE-OPT/0ld/stoch-adv-diff/ROL_example_PDE-OPT_0ld_stoch-adv-diff_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/rol/example/PDE-OPT/poisson/ROL_example_PDE-OPT_poisson_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/rol/example/PDE-OPT/poisson-boltzmann/ROL_example_PDE-OPT_poisson-boltzmann_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/rol/example/PDE-OPT/adv-diff-react/ROL_example_PDE-OPT_adv-diff-react_example_02.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/rol/example/PDE-OPT/navier-stokes/ROL_example_PDE-OPT_navier-stokes_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/rol/example/PDE-OPT/navier-stokes/ROL_example_PDE-OPT_navier-stokes_example_02.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/rol/example/PDE-OPT/obstacle/ROL_example_PDE-OPT_obstacle_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/rol/example/PDE-OPT/helmholtz/ROL_example_PDE-OPT_helmholtz_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/rol/example/PDE-OPT/ginzburg-landau/ROL_example_PDE-OPT_ginzburg-landau_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/rol/example/PDE-OPT/ginzburg-landau/ROL_example_PDE-OPT_ginzburg-landau_example_02.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/rol/example/PDE-OPT/nonlinear-elliptic/ROL_example_PDE-OPT_nonlinear-elliptic_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/rol/example/PDE-OPT/nonlinear-elliptic/ROL_example_PDE-OPT_nonlinear-elliptic_example_02.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/rol/example/PDE-OPT/topo-opt/poisson/ROL_example_PDE-OPT_topo-opt_poisson_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/piro/test/Piro_Epetra_MatrixFreeOperator_UnitTests.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/piro/test/Piro_MatrixFreeDecorator_UnitTests.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/piro/test/Piro_EvalModel.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/piro/test/Piro_ThyraSolver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/piro/test/Piro_AnalysisDriver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/piro/test/Piro_AnalysisDriverTpetra.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/piro/test/Piro_NOXSolver_UnitTests.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/piro/test/Piro_LOCASolver_UnitTests.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/piro/test/Piro_RythmosSolver_UnitTests.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/piro/test/Piro_Epetra_RythmosSolver_UnitTests.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/piro/test/Piro_TempusSolver_UnitTests.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/test/stk_interface_test/PanzerAdaptersSTK_tSingleBlockCubeHexMeshFactory.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/test/stk_interface_test/PanzerAdaptersSTK_tGhosting.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/test/stk_connmngr/PanzerAdaptersSTK_tDOFManager2_SimpleTests.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/test/assembly_engine/PanzerAdaptersSTK_assembly_engine.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/test/model_evaluator/PanzerAdaptersSTK_model_evaluator.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/test/model_evaluator/PanzerAdaptersSTK_thyra_model_evaluator.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/test/model_evaluator/PanzerAdaptersSTK_explicit_model_evaluator.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/test/solver/PanzerAdaptersSTK_solver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/test/periodic_bcs/PanzerAdaptersSTK_periodic_bcs.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/square_mesh/PanzerAdaptersSTK_square_mesh.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/square_mesh/PanzerAdaptersSTK_square_mesh_bc.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/MixedPoissonExample/PanzerAdaptersSTK_MixedPoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/MixedPoissonExample/PanzerAdaptersSTK_MixedPoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/MixedPoissonExample/PanzerAdaptersSTK_MixedPoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/MixedPoissonExample/PanzerAdaptersSTK_MixedPoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/MixedPoissonExample/PanzerAdaptersSTK_MixedPoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceExample/PanzerAdaptersSTK_PoissonInterfaceExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceExample/PanzerAdaptersSTK_PoissonInterfaceExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceExample/PanzerAdaptersSTK_PoissonInterfaceExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceExample/PanzerAdaptersSTK_PoissonInterfaceExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/assembly_engine/PanzerAdaptersSTK_assembly_example.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/adapters-stk/example/ModelEvaluator/PanzerAdaptersSTK_me_main_driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/mini-em/example/BlockPrec/PanzerMiniEM_BlockPrec.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/mini-em/example/BlockPrec/PanzerMiniEM_BlockPrec.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/mini-em/example/BlockPrec/PanzerMiniEM_BlockPrec.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/mini-em/example/BlockPrec/PanzerMiniEM_BlockPrec.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/mini-em/example/BlockPrec/PanzerMiniEM_BlockPrec.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/panzer/mini-em/example/BlockPrec/PanzerMiniEM_BlockPrec.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/trilinoscouplings/examples/ml/NonlinML/TrilinosCouplings_ml_nox_1Delasticity_example.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Maxwell.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Maxwell.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/trilinoscouplings/examples/fenl/TrilinosCouplings_fenl_ensemble.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/trilinoscouplings/examples/fenl/TrilinosCouplings_fenl_pce.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/stokhos/test/UnitTest/Stokhos_KokkosViewFadMPVectorUnitTest_Serial.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/stokhos/test/UnitTest/Stokhos_TpetraMatVec.exe
CMake Error at /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype/simple_testing.cmake:213 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0
Single configure/build/test failed. The error code was: 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

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

    ..................................................  Size: 27000K
    ..................................................  Size: 27050K
    ..................................................  Size: 27099K
    ..................................................  Size: 27149K
    ..................................................  Size: 27199K
    ..................................................  Size: 27249K
    ..................................................  Size: 27299K
    ..................................................  Size: 27349K
    ..................................................  Size: 27399K
    ..................................................  Size: 27449K
    ..................................................  Size: 27499K
    ..................................................  Size: 27549K
    ..................................................  Size: 27599K
    ..................................................  Size: 27649K
    ..................................................  Size: 27700K
    ..................................................  Size: 27750K
    ..................................................  Size: 27800K
    ..................................................  Size: 27850K
    ..................................................  Size: 27900K
    ..................................................  Size: 27950K
    ..................................................  Size: 28000K
    ..................................................  Size: 28050K
    ..................................................  Size: 28100K
    ..................................................  Size: 28150K
    ..................................................  Size: 28200K
    ..................................................  Size: 28250K
    ..................................................  Size: 28300K
    ..................................................  Size: 28350K
    ..................................................  Size: 28400K
    ..................................................  Size: 28450K
    ..................................................  Size: 28500K
    ..................................................  Size: 28550K
    ..................................................  Size: 28600K
    ..................................................  Size: 28650K
    ..................................................  Size: 28700K
    ..................................................  Size: 28750K
    ..................................................  Size: 28800K
    ..................................................  Size: 28850K
    ..................................................  Size: 28899K
    ..................................................  Size: 28949K
    ..................................................  Size: 28999K
    ..................................................  Size: 29049K
    ..................................................  Size: 29099K
    ..................................................  Size: 29149K
    ..................................................  Size: 29199K
    ..................................................  Size: 29249K
    ..................................................  Size: 29299K
    ..................................................  Size: 29350K
    ..................................................  Size: 29399K
    ..................................................  Size: 29449K
    ..................................................  Size: 29499K
    ..................................................  Size: 29549K
    ..................................................  Size: 29599K
    ..................................................  Size: 29649K
    ..................................................  Size: 29699K
    ..................................................  Size: 29749K
    ..................................................  Size: 29799K
    ..................................................  Size: 29849K
    ..................................................  Size: 29899K
    ..................................................  Size: 29949K
    ..................................................  Size: 29999K
    ..................................................  Size: 30049K
    ..................................................  Size: 30099K
    ..................................................  Size: 30149K
    ..................................................  Size: 30199K
    ..................................................  Size: 30249K
    ..................................................  Size: 30299K
    ..................................................  Size: 30349K
    ..................................................  Size: 30399K
    ..................................................  Size: 30449K
    ..................................................  Size: 30499K
    ..................................................  Size: 30549K
    ..................................................  Size: 30599K
    ..................................................  Size: 30649K
    ..................................................  Size: 30699K
    ..................................................  Size: 30749K
    ..................................................  Size: 30799K
    ..................................................  Size: 30849K
    ..................................................  Size: 30900K
    ..................................................  Size: 30949K
    ..................................................  Size: 31000K
    ..................................................  Size: 31049K
    ..................................................  Size: 31099K
    ..................................................  Size: 31149K
    ..................................................  Size: 31199K
    ..................................................  Size: 31249K
    ..................................................  Size: 31299K
    ..................................................  Size: 31349K
    ..................................................  Size: 31399K
    ..................................................  Size: 31450K
    ..................................................  Size: 31499K
    .......................... Size of output: 31526K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
Archiving artifacts
Finished: SUCCESS


CDash Test Results for PR# 4782.


Wiki: How to Reproduce PR Testing Builds and Errors.

@cgcgcg cgcgcg added the AT: WIP Causes the PR autotester to not test the PR. (Remove to allow testing to occur.) label Apr 2, 2019
@cgcgcg cgcgcg force-pushed the tpetraPersistentPR branch from e62faf1 to d1dcc48 Compare April 2, 2019 16:55
@cgcgcg cgcgcg added AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration and removed AT: WIP Causes the PR autotester to not test the PR. (Remove to allow testing to occur.) labels Apr 2, 2019
@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 'Pre-Test Inspection' - Auto Inspected - Inspection Is Not Necessary for this Pull Request.

@trilinos-autotester
Copy link
Contributor

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_4.8.4

  • Build Num: 3096
  • 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 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA d1dcc48
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 08dcb75

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 2926
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA d1dcc48
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 08dcb75

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 1375
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA d1dcc48
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 08dcb75

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 1063
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA d1dcc48
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 08dcb75

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 792
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
JENKINS_JOB_TYPE Experimental
PULLREQUESTNUM 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA d1dcc48
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 08dcb75

Using Repos:

Repo: TRILINOS (cgcgcg/Trilinos)
  • Branch: tpetraPersistentPR
  • SHA: d1dcc48
  • Mode: TEST_REPO

Pull Request Author: cgcgcg

/// does nothing and returns null) or an RCP of a valid CommRequest
/// instance representing an communication request.
virtual void
free (const Ptr<RCP<CommRequest<Ordinal> > >& request) const = 0;
Copy link
Contributor

Choose a reason for hiding this comment

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

Do you actually need an explicit free method? CommRequest objects know how to free themselves already.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

The MpiCommRequestBase has a destructor that calls MPI_Cancel, not MPI_Request_free. I think that is is reasonable in the case of persistent requests to ask the user to explicitly free them..

Copy link
Contributor

Choose a reason for hiding this comment

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

@cgcgcg Then we should fix the destructor :-)

@kddevin
Copy link
Contributor

kddevin commented Apr 2, 2019

@trilinos/tpetra @cgcgcg
We would like to know how this performs before it is merged to develop. Is that feasible?

@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: 3096
  • 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 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA d1dcc48
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 08dcb75

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 2926
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA d1dcc48
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 08dcb75

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 1375
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA d1dcc48
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 08dcb75

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 1063
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA d1dcc48
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 08dcb75

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 792
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
JENKINS_JOB_TYPE Experimental
PULLREQUESTNUM 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA d1dcc48
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 08dcb75
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 3096 (click to expand)

    ..................................................  Size: 6749K
    ..................................................  Size: 6799K
    ..................................................  Size: 6849K
    ..................................................  Size: 6900K
    ..................................................  Size: 6950K
    ..................................................  Size: 6999K
    ..................................................  Size: 7049K
    ..................................................  Size: 7100K
    ..................................................  Size: 7150K
    ..................................................  Size: 7200K
    ..................................................  Size: 7249K
    ..................................................  Size: 7299K
    ..................................................  Size: 7350K
    ..................................................  Size: 7399K
    ..................................................  Size: 7450K
    ..................................................  Size: 7499K
    ..................................................  Size: 7549K
    ..................................................  Size: 7599K
    ..................................................  Size: 7649K
    ..................................................  Size: 7700K
    ..................................................  Size: 7750K
    ..................................................  Size: 7799K
    ..................................................  Size: 7849K
    ..................................................  Size: 7900K
    ..................................................  Size: 7949K
    ..................................................  Size: 8000K
    ..................................................  Size: 8049K
    ..................................................  Size: 8099K
    ..................................................  Size: 8150K
    ..................................................  Size: 8199K
    ..................................................  Size: 8249K
    ..................................................  Size: 8300K
    ..................................................  Size: 8350K
    ..................................................  Size: 8399K
    ..................................................  Size: 8450K
    ..................................................  Size: 8499K
    ..................................................  Size: 8549K
    ..................................................  Size: 8599K
    ..................................................  Size: 8650K
    ..................................................  Size: 8699K
    ..................................................  Size: 8749K
    ..................................................  Size: 8799K
    ..................................................  Size: 8850K
    ..................................................  Size: 8900K
    ..................................................  Size: 8949K
    ..................................................  Size: 8999K
    ..................................................  Size: 9050K
    ..................................................  Size: 9099K
    ..................................................  Size: 9150K
    ..................................................  Size: 9200K
    ..................................................  Size: 9249K
    ..................................................  Size: 9299K
    ..................................................  Size: 9350K
    ..................................................  Size: 9400K
    ..................................................  Size: 9449K
    ..................................................  Size: 9499K
    ..................................................  Size: 9549K
    ..................................................  Size: 9600K
    ..................................................  Size: 9649K
    ..................................................  Size: 9699K
    ..................................................  Size: 9750K
    ..................................................  Size: 9800K
    ..................................................  Size: 9850K
    ..................................................  Size: 9899K
    ..................................................  Size: 9950K
    ..................................................  Size: 9999K
    ..................................................  Size: 10050K
    ..................................................  Size: 10100K
    ..................................................  Size: 10150K
    ..................................................  Size: 10200K
    ..................................................  Size: 10250K
    ..................................................  Size: 10300K
    ..................................................  Size: 10349K
    ..................................................  Size: 10399K
    ..................................................  Size: 10449K
    ..................................................  Size: 10500K
    ..................................................  Size: 10549K
    ..................................................  Size: 10600K
    ..................................................  Size: 10649K
    ..................................................  Size: 10700K
    ..................................................  Size: 10749K
    ..................................................  Size: 10799K
    ..................................................  Size: 10849K
    ..................................................  Size: 10899K
    ..................................................  Size: 10949K
    ..................................................  Size: 10999K
    ..................................................  Size: 11050K
    ..................................................  Size: 11099K
    ..................................................  Size: 11149K
    ..................................................  Size: 11199K
    ..................................................  Size: 11249K
    ... Size of output: 11253K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
Archiving artifacts
Finished: SUCCESS

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

    ..................................................  Size: 19250K
    ..................................................  Size: 19299K
    ..................................................  Size: 19349K
    ..................................................  Size: 19399K
    ..................................................  Size: 19449K
    ..................................................  Size: 19500K
    ..................................................  Size: 19550K
    ..................................................  Size: 19600K
    ..................................................  Size: 19650K
    ..................................................  Size: 19699K
    ..................................................  Size: 19749K
    ..................................................  Size: 19799K
    ..................................................  Size: 19849K
    ..................................................  Size: 19899K
    ..................................................  Size: 19949K
    ..................................................  Size: 19999K
    ..................................................  Size: 20049K
    ..................................................  Size: 20099K
    ..................................................  Size: 20149K
    ..................................................  Size: 20200K
    ..................................................  Size: 20250K
    ..................................................  Size: 20300K
    ..................................................  Size: 20350K
    ..................................................  Size: 20400K
    ..................................................  Size: 20450K
    ..................................................  Size: 20500K
    ..................................................  Size: 20549K
    ..................................................  Size: 20599K
    ..................................................  Size: 20649K
    ..................................................  Size: 20699K
    ..................................................  Size: 20749K
    ..................................................  Size: 20799K
    ..................................................  Size: 20849K
    ..................................................  Size: 20899K
    ..................................................  Size: 20949K
    ..................................................  Size: 20999K
    ..................................................  Size: 21049K
    ..................................................  Size: 21099K
    ..................................................  Size: 21149K
    ..................................................  Size: 21200K
    ..................................................  Size: 21249K
    ..................................................  Size: 21300K
    ..................................................  Size: 21349K
    ..................................................  Size: 21400K
    ..................................................  Size: 21450K
    ..................................................  Size: 21500K
    ..................................................  Size: 21549K
    ..................................................  Size: 21599K
    ..................................................  Size: 21649K
    ..................................................  Size: 21699K
    ..................................................  Size: 21750K
    ..................................................  Size: 21800K
    ..................................................  Size: 21850K
    ..................................................  Size: 21900K
    ..................................................  Size: 21950K
    ..................................................  Size: 22000K
    ..................................................  Size: 22050K
    ..................................................  Size: 22100K
    ..................................................  Size: 22150K
    ..................................................  Size: 22199K
    ..................................................  Size: 22249K
    ..................................................  Size: 22299K
    ..................................................  Size: 22349K
    ..................................................  Size: 22399K
    ..................................................  Size: 22449K
    ..................................................  Size: 22499K
    ..................................................  Size: 22549K
    ..................................................  Size: 22599K
    ..................................................  Size: 22649K
    ..................................................  Size: 22699K
    ..................................................  Size: 22749K
    ..................................................  Size: 22799K
    ..................................................  Size: 22850K
    ..................................................  Size: 22900K
    ..................................................  Size: 22950K
    ..................................................  Size: 23000K
    ..................................................  Size: 23049K
    ..................................................  Size: 23099K
    ..................................................  Size: 23149K
    ..................................................  Size: 23199K
    ..................................................  Size: 23249K
    ..................................................  Size: 23300K
    ..................................................  Size: 23349K
    ..................................................  Size: 23400K
    ..................................................  Size: 23450K
    ..................................................  Size: 23499K
    ..................................................  Size: 23549K
    ..................................................  Size: 23600K
    ..................................................  Size: 23649K
    ..................................................  Size: 23699K
    ..................................................  Size: 23750K
    ................................. Size of output: 23783K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
Archiving artifacts
Finished: SUCCESS

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

    ..................................................  Size: 3699K
    ..................................................  Size: 3750K
    ..................................................  Size: 3800K
    ..................................................  Size: 3850K
    ..................................................  Size: 3899K
    ..................................................  Size: 3949K
    ..................................................  Size: 4000K
    ..................................................  Size: 4049K
    ..................................................  Size: 4100K
    ..................................................  Size: 4150K
    ..................................................  Size: 4199K
    ..................................................  Size: 4249K
    ..................................................  Size: 4299K
    ..................................................  Size: 4349K
    ..................................................  Size: 4400K
    ..................................................  Size: 4449K
    ..................................................  Size: 4500K
    ..................................................  Size: 4549K
    ..................................................  Size: 4599K
    ..................................................  Size: 4650K
    ..................................................  Size: 4700K
    ..................................................  Size: 4750K
    ..................................................  Size: 4799K
    ..................................................  Size: 4850K
    ..................................................  Size: 4899K
    ..................................................  Size: 4949K
    ..................................................  Size: 5000K
    ..................................................  Size: 5049K
    ..................................................  Size: 5099K
    ..................................................  Size: 5149K
    ..................................................  Size: 5199K
    ..................................................  Size: 5250K
    ..................................................  Size: 5299K
    ..................................................  Size: 5349K
    ..................................................  Size: 5400K
    ..................................................  Size: 5449K
    ..................................................  Size: 5499K
    ..................................................  Size: 5550K
    ..................................................  Size: 5600K
    ..................................................  Size: 5649K
    ..................................................  Size: 5700K
    ..................................................  Size: 5749K
    ..................................................  Size: 5800K
    ..................................................  Size: 5849K
    ..................................................  Size: 5899K
    ..................................................  Size: 5950K
    ..................................................  Size: 5999K
    ..................................................  Size: 6050K
    ..................................................  Size: 6100K
    ..................................................  Size: 6149K
    ..................................................  Size: 6200K
    ..................................................  Size: 6250K
    ..................................................  Size: 6299K
    ..................................................  Size: 6350K
    ..................................................  Size: 6400K
    ..................................................  Size: 6449K
    ..................................................  Size: 6499K
    ..................................................  Size: 6550K
    ..................................................  Size: 6600K
    ..................................................  Size: 6649K
    ..................................................  Size: 6700K
    ..................................................  Size: 6750K
    ..................................................  Size: 6800K
    ..................................................  Size: 6849K
    ..................................................  Size: 6899K
    ..................................................  Size: 6949K
    ..................................................  Size: 6999K
    ..................................................  Size: 7049K
    ..................................................  Size: 7100K
    ..................................................  Size: 7150K
    ..................................................  Size: 7200K
    ..................................................  Size: 7249K
    ..................................................  Size: 7299K
    ..................................................  Size: 7350K
    ..................................................  Size: 7400K
    ..................................................  Size: 7450K
    ..................................................  Size: 7499K
    ..................................................  Size: 7550K
    ..................................................  Size: 7599K
    ..................................................  Size: 7649K
    ....................................... Size of output: 7689K
Build succeeded.
   Error when uploading file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/Testing/20190402-1719/Build.xml
   Error message was: The requested URL returned error: 503 Service Unavailable
   Problems when submitting via HTTP
build submit error = -1
Starting testing step.
Tests succeeded.
   Error when uploading file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/Testing/20190402-1719/Test.xml
   Error message was: The requested URL returned error: 503 Service Unavailable
   Problems when submitting via HTTP
test submit error = -1
   Error when uploading file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/Testing/20190402-1719/Upload.xml
   Error message was: The requested URL returned error: 503 Service Unavailable
   Problems when submitting via HTTP
File upload submit error = -1
Single configure/build/test failed. The error code was: 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

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

Cur dir                  = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos
Binary dir               = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test
Parallel level           = 29
skip_by_parts_submit     = OFF
skip_single_submit       = ON
skip_update_step         = ON
skip_upload_config_files = OFF
skip_clean_build_dir     = OFF
Subproject count         = 53
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake 
  -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0TestingSettings.cmake"
  -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -G "Ninja"
  /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing-vm.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-4782-test-Trilinos_pullrequest_gcc_7.2.0-1063&field3=buildstamp&compare3=61&value3=20190402-1719-Pull Request
CDash URL2 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-4782-test-Trilinos_pullrequest_gcc_7.2.0-1063&field2=buildstamp&compare2=61&value2=20190402-1719-Pull Request
CDash URL3 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-4782-test-Trilinos_pullrequest_gcc_7.2.0-1063&field2=buildstamp&compare2=61&value2=20190402-1719-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: 396K
   Error when uploading file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/Testing/20190402-1719/Configure.xml
   Error message was: The requested URL returned error: 503 Service Unavailable
   Problems when submitting via HTTP
configure submit error = -1
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    ..................................................  Size: 49K
    ..................................................  Size: 100K
    ..................................................  Size: 149K
    ..................................................  Size: 199K
    ..................................................  Size: 249K
    ..................................................  Size: 299K
    ..................................................  Size: 349K
    ..................................................  Size: 399K
    ..................................................  Size: 449K
    ..................................................  Size: 499K
    ..................................................  Size: 549K
    ..................................................  Size: 599K
    ..................................................  Size: 649K
    ..................................................  Size: 699K
    ..................................................  Size: 750K
    ..................................................  Size: 799K
    ..................................................  Size: 849K
    ..................................................  Size: 899K
    ..................................................  Size: 949K
    ..................................................  Size: 999K
    ..................................................  Size: 1050K
    ..................................................  Size: 1100K
    ..................................................  Size: 1149K
    ..................................................  Size: 1200K
    ..................................................  Size: 1249K
    ..................................................  Size: 1299K
    ..................................................  Size: 1349K
    ..................................................  Size: 1399K
    ..................................................  Size: 1449K
    ..................................................  Size: 1499K
    ..................................................  Size: 1549K
    ..................................................  Size: 1599K
    ..................................................  Size: 1649K
    ..................................................  Size: 1699K
    ..................................................  Size: 1749K
    ..................................................  Size: 1799K
    ..................................................  Size: 1849K
    ..................................................  Size: 1899K
    ..................................................  Size: 1949K
    ..................................................  Size: 1999K
    ........................................ Size of output: 2040K
Build succeeded.
   Error when uploading file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/Testing/20190402-1719/Build.xml
   Error message was: The requested URL returned error: 503 Service Unavailable
   Problems when submitting via HTTP
build submit error = -1
Starting testing step.
Tests succeeded.
   Error when uploading file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/Testing/20190402-1719/Test.xml
   Error message was: The requested URL returned error: 503 Service Unavailable
   Problems when submitting via HTTP
test submit error = -1
   Error when uploading file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/Testing/20190402-1719/Upload.xml
   Error message was: The requested URL returned error: 503 Service Unavailable
   Problems when submitting via HTTP
File upload submit error = -1
Single configure/build/test failed. The error code was: 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

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

    ..................................................  Size: 26899K
    ..................................................  Size: 26949K
    ..................................................  Size: 26999K
    ..................................................  Size: 27049K
    ..................................................  Size: 27100K
    ..................................................  Size: 27150K
    ..................................................  Size: 27199K
    ..................................................  Size: 27249K
    ..................................................  Size: 27300K
    ..................................................  Size: 27350K
    ..................................................  Size: 27400K
    ..................................................  Size: 27449K
    ..................................................  Size: 27499K
    ..................................................  Size: 27549K
    ..................................................  Size: 27599K
    ..................................................  Size: 27649K
    ..................................................  Size: 27699K
    ..................................................  Size: 27749K
    ..................................................  Size: 27799K
    ..................................................  Size: 27849K
    ..................................................  Size: 27899K
    ..................................................  Size: 27949K
    ..................................................  Size: 27999K
    ..................................................  Size: 28049K
    ..................................................  Size: 28099K
    ..................................................  Size: 28150K
    ..................................................  Size: 28200K
    ..................................................  Size: 28250K
    ..................................................  Size: 28300K
    ..................................................  Size: 28349K
    ..................................................  Size: 28399K
    ..................................................  Size: 28449K
    ..................................................  Size: 28499K
    ..................................................  Size: 28550K
    ..................................................  Size: 28600K
    ..................................................  Size: 28650K
    ..................................................  Size: 28700K
    ..................................................  Size: 28750K
    ..................................................  Size: 28800K
    ..................................................  Size: 28850K
    ..................................................  Size: 28900K
    ..................................................  Size: 28950K
    ..................................................  Size: 29000K
    ..................................................  Size: 29050K
    ..................................................  Size: 29100K
    ..................................................  Size: 29150K
    ..................................................  Size: 29200K
    ..................................................  Size: 29250K
    ..................................................  Size: 29300K
    ..................................................  Size: 29350K
    ..................................................  Size: 29400K
    ..................................................  Size: 29450K
    ..................................................  Size: 29499K
    ..................................................  Size: 29550K
    ..................................................  Size: 29600K
    ..................................................  Size: 29650K
    ..................................................  Size: 29700K
    ..................................................  Size: 29750K
    ..................................................  Size: 29800K
    ..................................................  Size: 29850K
    ..................................................  Size: 29900K
    ..................................................  Size: 29950K
    ..................................................  Size: 30000K
    ..................................................  Size: 30050K
    ..................................................  Size: 30100K
    ..................................................  Size: 30150K
    ..................................................  Size: 30200K
    ..................................................  Size: 30250K
    ..................................................  Size: 30300K
    ..................................................  Size: 30350K
    ..................................................  Size: 30400K
    ..................................................  Size: 30450K
    ..................................................  Size: 30500K
    ..................................................  Size: 30550K
    ..................................................  Size: 30600K
    ..................................................  Size: 30650K
    ..................................................  Size: 30699K
    ..................................................  Size: 30749K
    ..................................................  Size: 30799K
    ..................................................  Size: 30849K
    ..................................................  Size: 30900K
    ..................................................  Size: 30949K
    ..................................................  Size: 31000K
    ..................................................  Size: 31050K
    ..................................................  Size: 31100K
    ..................................................  Size: 31150K
    ..................................................  Size: 31200K
    ..................................................  Size: 31250K
    ..................................................  Size: 31300K
    ..................................................  Size: 31349K
    ..................................................  Size: 31399K
    .................................... Size of output: 31435K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
Archiving artifacts
Finished: SUCCESS


CDash Test Results for PR# 4782.


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 Apr 2, 2019
@cgcgcg
Copy link
Contributor Author

cgcgcg commented Apr 2, 2019

@kddevin I am running MiniEM on Cori, but I am getting a lot of noise. Some runs look very good, other runs show no improvement over standard Send-Ireceive. I'll keep investigating. We should definitely not make this the default before it has been thoroughly tested!

@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: 3100
  • 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 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA d1dcc48
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 08dcb75

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 2930
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA d1dcc48
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 08dcb75

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 1379
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA d1dcc48
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 08dcb75

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 1067
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA d1dcc48
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 08dcb75

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 796
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
JENKINS_JOB_TYPE Experimental
PULLREQUESTNUM 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA d1dcc48
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 08dcb75

Using Repos:

Repo: TRILINOS (cgcgcg/Trilinos)
  • Branch: tpetraPersistentPR
  • SHA: d1dcc48
  • Mode: TEST_REPO

Pull Request Author: cgcgcg

@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: 3100
  • 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 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA d1dcc48
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 08dcb75

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 2930
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA d1dcc48
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 08dcb75

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 1379
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA d1dcc48
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 08dcb75

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 1067
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA d1dcc48
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 08dcb75

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 796
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
JENKINS_JOB_TYPE Experimental
PULLREQUESTNUM 4782
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetraPersistentPR
TRILINOS_SOURCE_REPO https://github.com/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA d1dcc48
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 08dcb75


CDash Test Results for PR# 4782.

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pre-Merge Inspection' - - This Pull Request Requires Inspection... The code must be inspected by a member of the Team before Testing/Merging
THE LAST COMMIT TO THIS PULL REQUEST HAS BEEN REVIEWED, BUT NOT ACCEPTED OR REQUIRES CHANGES

@trilinos-autotester
Copy link
Contributor

All Jobs Finished; status = PASSED, However Inspection must be performed before merge can occur...

1 similar comment
@trilinos-autotester
Copy link
Contributor

All Jobs Finished; status = PASSED, However Inspection must be performed before merge can occur...

@mhoemmen
Copy link
Contributor

mhoemmen commented Apr 4, 2019

@cgcgcg This actually passed -- how do you feel about this? Do you want to keep working on it?

@cgcgcg
Copy link
Contributor Author

cgcgcg commented Apr 4, 2019

@mhoemmen I'm not surprised, we did not change the default behavior, so it should pass. I want to get some timings before pushing it in..

@trilinos-autotester
Copy link
Contributor

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

17 similar comments
@trilinos-autotester
Copy link
Contributor

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@trilinos-autotester
Copy link
Contributor

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@trilinos-autotester
Copy link
Contributor

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@trilinos-autotester
Copy link
Contributor

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@trilinos-autotester
Copy link
Contributor

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@trilinos-autotester
Copy link
Contributor

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@trilinos-autotester
Copy link
Contributor

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@trilinos-autotester
Copy link
Contributor

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@trilinos-autotester
Copy link
Contributor

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@trilinos-autotester
Copy link
Contributor

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@trilinos-autotester
Copy link
Contributor

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@trilinos-autotester
Copy link
Contributor

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@trilinos-autotester
Copy link
Contributor

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@trilinos-autotester
Copy link
Contributor

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@trilinos-autotester
Copy link
Contributor

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@trilinos-autotester
Copy link
Contributor

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@trilinos-autotester
Copy link
Contributor

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@jhux2 jhux2 added the AT: WIP Causes the PR autotester to not test the PR. (Remove to allow testing to occur.) label Jul 24, 2021
@github-actions
Copy link

This Pull Request has been marked for closure due to inactivity.
Because of the changing nature of the Trilinos source due to active development, a pull request with no activity for 365 days is considered to be abandoned and will be automatically closed after 30 additional days of inactivity from when it was marked inactive.
If this should be kept open, please post a comment and/or remove the label MARKED_FOR_CLOSURE to reset the inactivity timer.
If it is ok for this pull request to be closed, feel free to go ahead and close it. Please do not add any comments or change any labels or otherwise touch this issue unless your intention is to reset the inactivity counter for an additional year.

@github-actions github-actions bot added the MARKED_FOR_CLOSURE Issue or PR is marked for auto-closure by the GitHub Actions bot. label Jul 24, 2022
@mhoemmen
Copy link
Contributor

All of the four issues mentioned above were "closed to due lack of activity." None of them were actually implemented.

@github-actions github-actions bot removed the MARKED_FOR_CLOSURE Issue or PR is marked for auto-closure by the GitHub Actions bot. label Jul 27, 2022
@github-actions
Copy link

This Pull Request has been marked for closure due to inactivity.
Because of the changing nature of the Trilinos source due to active development, a pull request with no activity for 365 days is considered to be abandoned and will be automatically closed after 30 additional days of inactivity from when it was marked inactive.
If this should be kept open, please post a comment and/or remove the label MARKED_FOR_CLOSURE to reset the inactivity timer.
If it is ok for this pull request to be closed, feel free to go ahead and close it. Please do not add any comments or change any labels or otherwise touch this issue unless your intention is to reset the inactivity counter for an additional year.

@github-actions github-actions bot added the MARKED_FOR_CLOSURE Issue or PR is marked for auto-closure by the GitHub Actions bot. label Jul 29, 2023
@github-actions
Copy link

This Pull Request has been automatically closed due to 395 days of inactivity.

@github-actions github-actions bot added the CLOSED_DUE_TO_INACTIVITY Issue or PR has been closed by the GitHub Actions bot due to inactivity. label Aug 30, 2023
@github-actions github-actions bot closed this Aug 30, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
AT: STALE Added by the PR autotester if too much time has elapsed since the last successful PR test iteration AT: WIP Causes the PR autotester to not test the PR. (Remove to allow testing to occur.) CLOSED_DUE_TO_INACTIVITY Issue or PR has been closed by the GitHub Actions bot due to inactivity. MARKED_FOR_CLOSURE Issue or PR is marked for auto-closure by the GitHub Actions bot. pkg: Teuchos Issues primarily dealing with the Teuchos Package pkg: Tpetra
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants