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

Kokkos + KokkosKernels Promotion To Version 2.5.00 #2078

Merged
merged 27 commits into from
Dec 15, 2017
Merged

Conversation

crtrott
Copy link
Member

@crtrott crtrott commented Dec 15, 2017

@trilinos/kokkos
@trilinos/kokkos-kernels

Description

This merges Kokkos and KokkosKernels versions 2.5.00 into Trilinos. As a consequence a significant change to the build-system is made, where Kokkos will run its make system to generate cxx-flags as well as the config file.

Kokkos Changelog

2.5.00 (2017-12-15)

Full Changelog

Part of the Kokkos C++ Performance Portability Programming EcoSystem 2.5

Implemented enhancements:

  • Provide Makefile.kokkos logic for CMake and TriBITS #878
  • Add Scatter View #825
  • Drop gcc 4.7 and intel 14 from supported compiler list #603
  • Enable construction of unmanaged view using common_view_alloc_prop #1170
  • Unused Function Warning with XL #1267
  • Add memory pool parameter check #1218
  • CUDA9: Fix warning for unsupported long double #1189
  • CUDA9: fix warning on defaulted function marking #1188
  • CUDA9: fix warnings for deprecated warp level functions #1187
  • Add CUDA 9.0 nightly testing #1174
  • {OMPI,MPICH}_CXX hack breaks nvcc_wrapper use case #1166
  • KOKKOS_HAVE_CUDA_LAMBDA became KOKKOS_CUDA_USE_LAMBDA #1274

Fixed bugs:

  • MinMax Reducer with tagged operator doesn't compile #1251
  • Reducers for Tagged operators give wrong answer #1250
  • Kokkos not Compatible with Big Endian Machines? #1235
  • Parallel Scan hangs forever on BG/Q #1234
  • Threads backend doesn't compile with Clang on OS X #1232
  • $(shell date) needs quote #1264
  • Unqualified parallel_for call conflicts with user-defined parallel_for #1219
  • KokkosAlgorithms: CMake issue in unit tests #1212
  • Intel 18 Error: "simd pragma has been deprecated" #1210
  • Memory leak in Kokkos::initialize #1194
  • CUDA9: compiler error with static assert template arguments #1190
  • Kokkos::Serial::is_initialized returns always true #1184
  • Triple nested parallelism still fails on bowman #1093
  • OpenMP openmp.range on Develop Runs Forever on POWER7+ with RHEL7 and GCC4.8.5 #995
  • Rendezvous performance at global scope #985

##KokkosKernels ChangeLog

2.5.00 (2017-12-15)

Full Changelog

Implemented enhancements:

  • KokkosBlas: Add GEMM interface #105
  • KokkosBlas: Add GEMM default Kernel #125
  • KokkosBlas: Add GEMV that wraps BLAS (and cuBLAS) #16
  • KokkosSparse: Make SPMV test not print GBs of output if something goes wrong. #111
  • KokkosSparse: ETI SpGEMM and Gauss Seidel and take it out of Experimental namespace #74
  • BuildSystem: Fix Makesystem to correctly build library after aborted install #104
  • BuildSystem: Add option ot generate_makefile.bash to define memoryspaces for instantiation #89
  • BuildSystem: generate makefile tpl option #66
  • BuildSystem: Add a simpler compilation script, README update etc #96

Fixed bugs:

  • Internal Compiler Error GCC in GEMM #129
  • Batched Team LU: bug for small team_size #110
  • Compiler BUG in IBM XL pragma unrolling #92
  • Fix Blas TPL enables build #77
  • Batched Gemm Failure #73
  • CUDA 7.5 (GCC 4.8.4) build errors #72
  • Cuda BLAS tests fail with UVM if CUDA_LAUNCH_BLOCKING=1 is not defined on Kepler #51
  • CrsMatrix: sumIntoValues and replaceValues incorrectly count the number of valid column indices. #11
  • findRelOffset test assumes UVM #32

Related Issues

How Has This Been Tested?

This set of changes has been tested on Shepard and White with Intel 17, GCC 5.3, NVCC 8.
Configurations according to kokkos-kernels/scripts/trilinos-integration test scripts.
A detailed list of test failures is provided below. No additional test failures compared to the current
trilinos/develop branch were observed. Both individual packages are passing their comprehensive
nightly test suites. This includes testing of more than 200 configuration spanning 25+ compiler versions and 9 hardware platforms ( Intel Skylake, Intel SandyBridge, Intel Haswell, Intel Haswell + NVIDIA K40, Intel KNL, ARM, Power8, Power8 + K80, Power8 + P100).

Checklist

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

kruger and others added 27 commits October 18, 2017 10:29
cmake/ProjectCompilerPostConfig.cmake now invokes the kokkos
build system to get additional compiler information that is useful for
advanced architectures.  This enables the useful information that Kokkos
calculates can be more widely available.
Origin repo remote tracking branch: 'github/master'
Origin repo remote repo URL: 'github = [email protected]:TriBITSPub/TriBITS.git'

At commit:

commit 6fa3d698d55fbb26ffc687aef2779c90b977b5f6
Author:  Scott Kruger <[email protected]>
Date:    Fri Jul 14 13:00:29 2017 -0600
Summary: Enable post-processing of config of compilers (#207, #1400)
#1400)

This required a small change to TriBITS to allow the OpenMP flags to be simply
skipped.

I also adde an if statement to avoid adding any of the Kokkos flags or
changing any of this logic when KOKKOS_ARCH is equal to "None".  This is
likely important to maintain backward compatiblity.
Origin repo remote tracking branch: 'github/master'
Origin repo remote repo URL: 'github = [email protected]:TriBITSPub/TriBITS.git'

At commit:

commit b9d3531a128d7b8118c7eb4e5b5b890049fbe00a
Author:  Roscoe A. Bartlett <[email protected]>
Date:    Fri Dec 1 16:30:15 2017 -0700
Summary: Allow overridding OpenMP flags to empty (#1400)
This should be the last changes needed for TriBITS to enable the Kokkos
configuration of Trilinos.
The simplified table format should be easier to maintain.

I also added some more detail to describe the behavior of the system and when
it gets turned on and when it does not.
I saw this while working on #1400.  Some of the documentation was wrong or
just badly formatted.
…kos-promotion (#1400, #2051)

Merging the kokkos-promotion branch into the develop branch will close the PR
Basker.
This will catch the current problem of using a var that is no longer defined
which is part of #1400.
A very old version of a macro name was still used in a few places.
From repository at [email protected]:kokkos/kokkos

At commit:
commit 62e760fa7d3b9e65ac170c8ca1ef5c1b39c8e818
Merge: dfe685f ec7ad6d
Author: crtrott <[email protected]>
Date:   Fri Dec 15 10:59:13 2017 -0700

    Merge branch 'develop' for 2.5.00

    Part of Kokkos C++ Performance Portability Programming EcoSystem 2.5
…cc273d04af

From repository at [email protected]:kokkos/kokkos-kernels

At commit:
commit 00b16484786e45bb4cf5ce3ab659b2cc273d04af
Merge: e4c645e 04d5876
Author: crtrott <[email protected]>
Date:   Fri Dec 15 10:38:16 2017 -0700

    Merge remote-tracking branch 'origin/develop' release 2.5.00
@crtrott crtrott added the stage: in progress Work on the issue has started label Dec 15, 2017
@crtrott
Copy link
Member Author

crtrott commented Dec 15, 2017

TestingResults White CUDA

Errors and test failures are a strict subset of the ones encountered on the develop branch with the same configuration.

Build Errors:

None

General Test Results:

96% tests passed, 71 tests failed out of 1793

Label Time Summary:
Amesos2          =  12.98 sec (8 tests)
Anasazi          = 293.24 sec (71 tests)
Belos            =  91.21 sec (72 tests)
Ifpack           =  37.80 sec (41 tests)
Ifpack2          = 116.76 sec (35 tests)
Intrepid         = 355.38 sec (153 tests)
Intrepid2        = 181.42 sec (247 tests)
Isorropia        =   3.20 sec (4 tests)
Kokkos           = 213.22 sec (23 tests)
KokkosKernels    = 145.11 sec (8 tests)
ML               =  17.46 sec (16 tests)
MueLu            = 899.79 sec (88 tests)
NOX              = 535.62 sec (92 tests)
Panzer           = 541.77 sec (113 tests)
Phalanx          =  21.21 sec (22 tests)
ROL              = 394.68 sec (68 tests)
Sacado           = 101.79 sec (299 tests)
Stokhos          = 320.34 sec (82 tests)
Stratimikos      =  24.24 sec (24 tests)
Thyra            =  54.39 sec (81 tests)
Tpetra           = 325.76 sec (149 tests)
Xpetra           =  66.64 sec (18 tests)
Zoltan2          = 146.83 sec (88 tests)

Total Test time (real) = 4867.77 sec

Failed Tests

The following tests FAILED:
        732 - Belos_pseudo_gmres_hb_MPI_4 (Failed)
        733 - Belos_bl_pgmres_hb_0_MPI_4 (Failed)
        734 - Belos_bl_pgmres_hb_1_MPI_4 (Failed)
        735 - Belos_bl_pgmres_hb_2_MPI_4 (Failed)
        736 - Belos_pseudo_pgmres_hb_MPI_4 (Failed)
        737 - Belos_bl_fgmres_hb_MPI_4 (Failed)
        753 - Belos_gcrodr_hb_MPI_4 (Failed)
        755 - Belos_prec_gcrodr_hb_1_MPI_4 (Failed)
        803 - Anasazi_Epetra_ModalSolversTester_MPI_4 (Failed)
        805 - Anasazi_Epetra_OrthoManagerTester_0_MPI_4 (Failed)
        806 - Anasazi_Epetra_OrthoManagerTester_1_MPI_4 (Failed)
        807 - Anasazi_Epetra_OrthoManagerTester_2_MPI_4 (Failed)
        808 - Anasazi_Epetra_OrthoManagerTester_3_MPI_4 (Failed)
        809 - Anasazi_Epetra_OrthoManagerTester_4_MPI_4 (Failed)
        810 - Anasazi_Epetra_OrthoManagerTester_5_MPI_4 (Failed)
        811 - Anasazi_Epetra_OrthoManagerMatTester_0_MPI_4 (Failed)
        812 - Anasazi_Epetra_OrthoManagerMatTester_1_MPI_4 (Failed)
        813 - Anasazi_Epetra_OrthoManagerMatTester_2_MPI_4 (Failed)
        814 - Anasazi_Epetra_OrthoManagerMatTester_3_MPI_4 (Failed)
        815 - Anasazi_Epetra_OrthoManagerMatTester_4_MPI_4 (Failed)
        816 - Anasazi_Epetra_OrthoManagerMatTester_5_MPI_4 (Failed)
        817 - Anasazi_Epetra_OrthoManagerGenTester_0_MPI_4 (Failed)
        818 - Anasazi_Epetra_OrthoManagerGenTester_1_MPI_4 (Failed)
        819 - Anasazi_Epetra_BlockDavidson_solvertest_MPI_4 (Failed)
        820 - Anasazi_Epetra_BlockDavidson_test_0_MPI_4 (Failed)
        821 - Anasazi_Epetra_BlockDavidson_test_1_MPI_4 (Failed)
        822 - Anasazi_Epetra_BlockDavidson_test_2_MPI_4 (Failed)
        823 - Anasazi_Epetra_BlockDavidson_test_3_MPI_4 (Failed)
        824 - Anasazi_Epetra_BlockDavidson_test_4_MPI_4 (Failed)
        825 - Anasazi_Epetra_BlockDavidson_test_5_MPI_4 (Failed)
        826 - Anasazi_Epetra_BlockDavidson_test_6_MPI_4 (Failed)
        827 - Anasazi_Epetra_BlockDavidson_test_7_MPI_4 (Failed)
        828 - Anasazi_Epetra_BlockDavidson_test_8_MPI_4 (Failed)
        829 - Anasazi_Epetra_BlockDavidson_auxtest_MPI_4 (Failed)
        830 - Anasazi_Epetra_BKS_solvertest_MPI_4 (Failed)
        832 - Anasazi_Epetra_BKS_test_1_MPI_4 (Failed)
        836 - Anasazi_Epetra_BKS_nh_test_1_MPI_4 (Failed)
        837 - Anasazi_Epetra_GeneralizedDavidson_solvertest_MPI_4 (Failed)
        840 - Anasazi_Epetra_LOBPCG_solvertest_MPI_4 (Timeout)
        841 - Anasazi_Epetra_LOBPCG_simpletest_MPI_4 (Failed)
        842 - Anasazi_Epetra_LOBPCG_test_MPI_4 (Failed)
        843 - Anasazi_Epetra_LOBPCG_auxtest_MPI_4 (Failed)
        844 - Anasazi_Epetra_IRTR_test_0_MPI_4 (Failed)
        845 - Anasazi_Epetra_IRTR_test_1_MPI_4 (Failed)
        846 - Anasazi_Epetra_IRTR_test_2_MPI_4 (Failed)
        847 - Anasazi_Epetra_IRTR_test_3_MPI_4 (Failed)
        848 - Anasazi_Epetra_IRTR_auxtest_0_MPI_4 (Failed)
        849 - Anasazi_Epetra_IRTR_auxtest_1_MPI_4 (Failed)
        850 - Anasazi_Epetra_IRTR_auxtest_2_MPI_4 (Failed)
        851 - Anasazi_Epetra_IRTR_auxtest_3_MPI_4 (Failed)
        852 - Anasazi_Epetra_IRTR_auxtest_4_MPI_4 (Failed)
        859 - Anasazi_BlockDavidsonThyra_test_MPI_4 (Failed)
        862 - Anasazi_IRTRThyra_test_0_MPI_4 (Failed)
        863 - Anasazi_IRTRThyra_test_1_MPI_4 (Failed)
        864 - Anasazi_IRTRThyra_test_2_MPI_4 (Failed)
        865 - Anasazi_IRTRThyra_test_3_MPI_4 (Failed)
        866 - Anasazi_LOBPCGThyra_test_MPI_4 (Failed)
        873 - Anasazi_Tpetra_TraceMinDavidson_largest_standard_test_MPI_4 (Failed)
        915 - Stratimikos_Thyra_Belos_StatusTest_UnitTests_MPI_1 (Failed)
        923 - Stratimikos_Belos_GCRODR_strattest_MPI_4 (Failed)
        1331 - Intrepid2_unit-test_Orientation_Serial_Test_Orientation_TET_MPI_1 (Failed)
        1367 - NOX_LOCA_AnasaziJacobianInverse_MPI_1 (Timeout)
        1368 - NOX_LOCA_AnasaziNotConverged_MPI_1 (Timeout)
        1441 - NOX_LOCA_MultiPointTcubed_MPI_2 (Failed)
        1467 - MueLu_UnitTestsTpetra_MPI_4 (Timeout)
        1587 - Stokhos_TpetraCrsMatrixMPVectorUnitTest_Serial_MPI_4 (Failed)
        1624 - ROL_NonlinearProblemTest_MPI_4 (Timeout)
        1629 - ROL_test_elementwise_TpetraMultiVector_MPI_4 (Failed)
        1791 - PanzerAdaptersIOSS_tIOSSConnManager1_MPI_1 (Failed)
        1792 - PanzerAdaptersIOSS_tIOSSConnManager2_MPI_2 (Failed)
        1793 - PanzerAdaptersIOSS_tIOSSConnManager3_MPI_3 (Failed)

@crtrott
Copy link
Member Author

crtrott commented Dec 15, 2017

TestingResults White OpenMP

Errors and test failures are a strict subset of the ones encountered on the develop branch with the same configuration. A good comparison is not possible due to massive errors on the develop branch which we fixed on the promotion branch (508 tests not run or failed on develop vs 72 test failures on promotion).

Build Errors:

None

General Test Results:

96% tests passed, 72 tests failed out of 1782

Label Time Summary:
Amesos2          =   8.84 sec (9 tests)
Anasazi          = 140.06 sec (71 tests)
Belos            =  81.72 sec (72 tests)
Ifpack           =  36.85 sec (41 tests)
Ifpack2          =  41.29 sec (35 tests)
Intrepid         = 160.97 sec (153 tests)
Intrepid2        =  78.32 sec (240 tests)
Isorropia        =   3.22 sec (4 tests)
Kokkos           =  91.51 sec (23 tests)
KokkosKernels    = 170.64 sec (8 tests)
ML               =  36.19 sec (16 tests)
MueLu            = 292.54 sec (88 tests)
NOX              = 515.73 sec (92 tests)
Panzer           = 153.27 sec (113 tests)
Phalanx          =  13.42 sec (22 tests)
ROL              = 188.02 sec (68 tests)
Sacado           =  88.51 sec (296 tests)
ShyLU_Node       =   0.89 sec (4 tests)
Stokhos          = 106.00 sec (78 tests)
Stratimikos      = 223.05 sec (24 tests)
Thyra            =  51.40 sec (81 tests)
Tpetra           = 106.69 sec (147 tests)
Xpetra           =  18.20 sec (18 tests)
Zoltan2          =  80.54 sec (88 tests)

Total Test time (real) = 2684.36 sec

Failed Tests

The following tests FAILED:
        727 - Belos_pseudo_gmres_hb_MPI_4 (Failed)
        728 - Belos_bl_pgmres_hb_0_MPI_4 (Failed)
        729 - Belos_bl_pgmres_hb_1_MPI_4 (Failed)
        730 - Belos_bl_pgmres_hb_2_MPI_4 (Failed)
        731 - Belos_pseudo_pgmres_hb_MPI_4 (Failed)
        732 - Belos_bl_fgmres_hb_MPI_4 (Failed)
        748 - Belos_gcrodr_hb_MPI_4 (Failed)
        750 - Belos_prec_gcrodr_hb_1_MPI_4 (Failed)
        803 - Anasazi_Epetra_ModalSolversTester_MPI_4 (Failed)
        805 - Anasazi_Epetra_OrthoManagerTester_0_MPI_4 (Failed)
        806 - Anasazi_Epetra_OrthoManagerTester_1_MPI_4 (Failed)
        807 - Anasazi_Epetra_OrthoManagerTester_2_MPI_4 (Failed)
        808 - Anasazi_Epetra_OrthoManagerTester_3_MPI_4 (Failed)
        809 - Anasazi_Epetra_OrthoManagerTester_4_MPI_4 (Failed)
        810 - Anasazi_Epetra_OrthoManagerTester_5_MPI_4 (Failed)
        811 - Anasazi_Epetra_OrthoManagerMatTester_0_MPI_4 (Failed)
        812 - Anasazi_Epetra_OrthoManagerMatTester_1_MPI_4 (Failed)
        813 - Anasazi_Epetra_OrthoManagerMatTester_2_MPI_4 (Failed)
        814 - Anasazi_Epetra_OrthoManagerMatTester_3_MPI_4 (Failed)
        815 - Anasazi_Epetra_OrthoManagerMatTester_4_MPI_4 (Failed)
        816 - Anasazi_Epetra_OrthoManagerMatTester_5_MPI_4 (Failed)
        817 - Anasazi_Epetra_OrthoManagerGenTester_0_MPI_4 (Failed)
        818 - Anasazi_Epetra_OrthoManagerGenTester_1_MPI_4 (Failed)
        819 - Anasazi_Epetra_BlockDavidson_solvertest_MPI_4 (Failed)
        820 - Anasazi_Epetra_BlockDavidson_test_0_MPI_4 (Failed)
        821 - Anasazi_Epetra_BlockDavidson_test_1_MPI_4 (Failed)
        822 - Anasazi_Epetra_BlockDavidson_test_2_MPI_4 (Failed)
        823 - Anasazi_Epetra_BlockDavidson_test_3_MPI_4 (Failed)
        824 - Anasazi_Epetra_BlockDavidson_test_4_MPI_4 (Failed)
        825 - Anasazi_Epetra_BlockDavidson_test_5_MPI_4 (Failed)
        826 - Anasazi_Epetra_BlockDavidson_test_6_MPI_4 (Failed)
        827 - Anasazi_Epetra_BlockDavidson_test_7_MPI_4 (Failed)
        828 - Anasazi_Epetra_BlockDavidson_test_8_MPI_4 (Failed)
        829 - Anasazi_Epetra_BlockDavidson_auxtest_MPI_4 (Failed)
        830 - Anasazi_Epetra_BKS_solvertest_MPI_4 (Failed)
        832 - Anasazi_Epetra_BKS_test_1_MPI_4 (Failed)
        836 - Anasazi_Epetra_BKS_nh_test_1_MPI_4 (Failed)
        837 - Anasazi_Epetra_GeneralizedDavidson_solvertest_MPI_4 (Failed)
        840 - Anasazi_Epetra_LOBPCG_solvertest_MPI_4 (Failed)
        841 - Anasazi_Epetra_LOBPCG_simpletest_MPI_4 (Failed)
        842 - Anasazi_Epetra_LOBPCG_test_MPI_4 (Failed)
        843 - Anasazi_Epetra_LOBPCG_auxtest_MPI_4 (Failed)
        844 - Anasazi_Epetra_IRTR_test_0_MPI_4 (Failed)
        845 - Anasazi_Epetra_IRTR_test_1_MPI_4 (Failed)
        846 - Anasazi_Epetra_IRTR_test_2_MPI_4 (Failed)
        847 - Anasazi_Epetra_IRTR_test_3_MPI_4 (Failed)
        848 - Anasazi_Epetra_IRTR_auxtest_0_MPI_4 (Failed)
        849 - Anasazi_Epetra_IRTR_auxtest_1_MPI_4 (Failed)
        850 - Anasazi_Epetra_IRTR_auxtest_2_MPI_4 (Failed)
        851 - Anasazi_Epetra_IRTR_auxtest_3_MPI_4 (Failed)
        852 - Anasazi_Epetra_IRTR_auxtest_4_MPI_4 (Failed)
        859 - Anasazi_BlockDavidsonThyra_test_MPI_4 (Failed)
        862 - Anasazi_IRTRThyra_test_0_MPI_4 (Failed)
        863 - Anasazi_IRTRThyra_test_1_MPI_4 (Failed)
        864 - Anasazi_IRTRThyra_test_2_MPI_4 (Failed)
        865 - Anasazi_IRTRThyra_test_3_MPI_4 (Failed)
        866 - Anasazi_LOBPCGThyra_test_MPI_4 (Failed)
        873 - Anasazi_Tpetra_TraceMinDavidson_largest_standard_test_MPI_4 (Failed)
        880 - Ifpack2_Jacobi_hb_belos_MPI_1 (Failed)
        881 - Ifpack2_Jacobi_hb_belos_MPI_2 (Failed)
        889 - Ifpack2_GS_belos_MPI_1 (Failed)
        890 - Ifpack2_SGS_belos_MPI_1 (Failed)
        915 - Stratimikos_Thyra_Belos_StatusTest_UnitTests_MPI_1 (Failed)
        923 - Stratimikos_Belos_GCRODR_strattest_MPI_4 (Timeout)
        1324 - Intrepid2_unit-test_Orientation_Serial_Test_Orientation_TET_MPI_1 (Failed)
        1360 - NOX_LOCA_AnasaziJacobianInverse_MPI_1 (Timeout)
        1361 - NOX_LOCA_AnasaziNotConverged_MPI_1 (Timeout)
        1434 - NOX_LOCA_MultiPointTcubed_MPI_2 (Failed)
        1576 - Stokhos_TpetraCrsMatrixMPVectorUnitTest_OpenMP_MPI_4 (Failed)
        1780 - PanzerAdaptersIOSS_tIOSSConnManager1_MPI_1 (Failed)
        1781 - PanzerAdaptersIOSS_tIOSSConnManager2_MPI_2 (Failed)
        1782 - PanzerAdaptersIOSS_tIOSSConnManager3_MPI_3 (Failed)

@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_autotester_test

  • Build Num: 167
  • 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
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH kokkos-promotion
TRILINOS_SOURCE_REPO https:/trilinos/Trilinos
TRILINOS_SOURCE_SHA f303cb3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA 7d99c1a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3

  • Build Num: 84
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.9.3
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH kokkos-promotion
TRILINOS_SOURCE_REPO https:/trilinos/Trilinos
TRILINOS_SOURCE_SHA f303cb3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA 7d99c1a

Using Repos:

Repo: TRILINOS (trilinos/Trilinos)
  • Branch: kokkos-promotion
  • SHA: f303cb3
  • Mode: TEST_REPO

Pull Request Author: crtrott

@crtrott
Copy link
Member Author

crtrott commented Dec 15, 2017

TestingResults Shepard Pthread

Errors and test failures are a strict subset of the ones encountered on the develop branch with the same configuration.

Build Errors:

Massive amount of 'undefined reference' errors on both develop and kokkos-promotion.

General Test Results:

83% tests passed, 288 tests failed out of 1680

Label Time Summary:
Amesos2          =   7.96 sec (8 tests)
Anasazi          =  84.42 sec (71 tests)
Belos            =  88.84 sec (72 tests)
Ifpack           =  45.40 sec (41 tests)
Ifpack2          =  44.19 sec (35 tests)
Intrepid         = 176.01 sec (153 tests)
Intrepid2        =  93.31 sec (144 tests)
Isorropia        =   4.13 sec (4 tests)
Kokkos           =  71.44 sec (23 tests)
KokkosKernels    = 189.34 sec (8 tests)
ML               =  19.76 sec (16 tests)
MueLu            =   0.00 sec (88 tests)
NOX              = 118.14 sec (92 tests)
Panzer           =  51.64 sec (113 tests)
Phalanx          =  19.43 sec (22 tests)
ROL              =   0.00 sec (68 tests)
Sacado           = 166.29 sec (296 tests)
Stokhos          =   0.00 sec (78 tests)
Stratimikos      =  26.15 sec (24 tests)
Thyra            =  70.25 sec (81 tests)
Tpetra           = 139.67 sec (147 tests)
Xpetra           =  20.63 sec (17 tests)
Zoltan2          = 100.78 sec (88 tests)

Total Test time (real) = 1542.99 sec

Failed Tests

The following tests FAILED:
        709 - ML_MLP_Restart_MPI_4 (Failed)
        1301 - NOX_Thyra_Heq_MPI_1 (Failed)
        1338 - MueLu_FixedMatrixPattern-Tpetra_MPI_4 (Not Run)
        1339 - MueLu_StandardReuse-Tpetra_MPI_4 (Not Run)
        1340 - MueLu_ReuseSequenceTpetra_MPI_1 (Not Run)
        1341 - MueLu_FixedMatrixPattern-Epetra_MPI_4 (Not Run)
        1342 - MueLu_StandardReuse-Epetra_MPI_4 (Not Run)
        1343 - MueLu_ReuseSequenceEpetra_MPI_1 (Not Run)
        1344 - MueLu_MatrixDriver_MPI_4 (Not Run)
        1345 - MueLu_Epetra1DLaplace_MPI_4 (Not Run)
        1346 - MueLu_Tpetra1DLaplace_MPI_4 (Not Run)
        1347 - MueLu_Stratimikos_MPI_4 (Not Run)
        1348 - MueLu_Stratimikos2_MPI_4 (Not Run)
        1349 - MueLu_LevelWrap-Tpetra_MPI_4 (Not Run)
        1350 - MueLu_LevelWrap-Epetra_MPI_4 (Not Run)
        1351 - MueLu_BlockCrs-Tpetra_MPI_4 (Not Run)
        1352 - MueLu_Simple_MPI_4 (Not Run)
        1353 - MueLu_MLParameterList-Epetra_MPI_4 (Not Run)
        1354 - MueLu_MLParameterList_Repartition-Epetra_MPI_4 (Not Run)
        1355 - MueLu_UnitTestsEpetra_MPI_1 (Not Run)
        1356 - MueLu_UnitTestsEpetra_MPI_4 (Not Run)
        1357 - MueLu_UnitTestsTpetra_MPI_1 (Not Run)
        1358 - MueLu_UnitTestsTpetra_MPI_4 (Not Run)
        1359 - MueLu_UnitTestsEpetra_kokkos_MPI_1 (Not Run)
        1360 - MueLu_UnitTestsEpetra_kokkos_MPI_4 (Not Run)
        1361 - MueLu_UnitTestsTpetra_kokkos_MPI_1 (Not Run)
        1362 - MueLu_UnitTestsTpetra_kokkos_MPI_4 (Not Run)
        1363 - MueLu_Redirection_MPI_4 (Not Run)
        1364 - MueLu_DriverTpetra_MPI_4 (Not Run)
        1365 - MueLu_DriverTpetraTripleMatrixProduct_MPI_4 (Not Run)
        1366 - MueLu_DriverTpetraILU_MPI_4 (Not Run)
        1367 - MueLu_DriverTpetra_WithGlobalConstants_MPI_4 (Not Run)
        1368 - MueLu_DriverTpetra_Milestone_MPI_4 (Not Run)
        1369 - MueLu_RAPScalingTestTpetra_MPI_4 (Not Run)
        1370 - MueLu_SmootherScalingTestTpetra_MPI_4 (Not Run)
        1371 - MueLu_ReadMatrixTpetra_MPI_4 (Not Run)
        1372 - MueLu_ParameterListInterpreterEpetra_MPI_1 (Not Run)
        1373 - MueLu_ParameterListInterpreterEpetra_MPI_4 (Not Run)
        1374 - MueLu_CreateOperatorEpetra_MPI_1 (Not Run)
        1375 - MueLu_CreateOperatorEpetra_MPI_4 (Not Run)
        1376 - MueLu_ParameterListInterpreterEpetraHeavy_MPI_1 (Not Run)
        1377 - MueLu_ParameterListInterpreterEpetraHeavy_MPI_4 (Not Run)
        1378 - MueLu_ParameterListInterpreterTpetra_MPI_1 (Not Run)
        1379 - MueLu_ParameterListInterpreterTpetra_MPI_4 (Not Run)
        1380 - MueLu_CreateOperatorTpetra_MPI_1 (Not Run)
        1381 - MueLu_CreateOperatorTpetra_MPI_4 (Not Run)
        1382 - MueLu_ParameterListInterpreterTpetraHeavy_MPI_1 (Not Run)
        1383 - MueLu_ParameterListInterpreterTpetraHeavy_MPI_4 (Not Run)
        1384 - MueLu_BlockedTransfer_Epetra_MPI_4 (Not Run)
        1385 - MueLu_BlockedTransfer_Tpetra_MPI_4 (Not Run)
        1386 - MueLu_simple-factory-request-mechanism_MPI_4 (Not Run)
        1387 - MueLu_Maxwell3D_MPI_4 (Not Run)
        1388 - MueLu_Navier2D_Epetra_MPI_4 (Not Run)
        1389 - MueLu_Navier2DBlocked_Epetra_MPI_4 (Not Run)
        1390 - MueLu_Navier2DBlocked_xml_format_MPI_4 (Not Run)
        1391 - MueLu_Navier2DBlocked_xml_format2_MPI_4 (Not Run)
        1392 - MueLu_Navier2DBlocked_xml_blockdirect_MPI_4 (Not Run)
        1393 - MueLu_Navier2DBlocked_xml_bgs1_MPI_4 (Not Run)
        1394 - MueLu_Navier2DBlocked_xml_bs1_MPI_4 (Not Run)
        1395 - MueLu_Navier2DBlocked_xml_bs2_MPI_4 (Not Run)
        1396 - MueLu_Navier2DBlocked_xml_sim1_MPI_4 (Not Run)
        1397 - MueLu_Navier2DBlocked_xml_sim2_MPI_4 (Not Run)
        1398 - MueLu_Navier2DBlocked_xml_uzawa1_MPI_4 (Not Run)
        1399 - MueLu_Navier2DBlocked_xml_indef1_MPI_4 (Not Run)
        1400 - MueLu_Navier2DBlocked_BraessSarazinSmoother_MPI_4 (Not Run)
        1401 - MueLu_Navier2DBlocked_SimpleSmoother_MPI_4 (Not Run)
        1402 - MueLu_Navier2DBlocked_BraessSarazin_MPI_4 (Not Run)
        1403 - MueLu_Navier2DBlockedReuseAggs_MPI_4 (Not Run)
        1404 - MueLu_Navier2DBlocked_Simple_MPI_4 (Not Run)
        1405 - MueLu_paramlist_MPI_4 (Not Run)
        1406 - MueLu_paramlistAdv_MPI_4 (Not Run)
        1407 - MueLu_Aggregation_MPI_4 (Not Run)
        1408 - MueLu_simple1D-UncoupledAggregation-Tpetra_MPI_4 (Not Run)
        1409 - MueLu_simple1D-UncoupledAggregation-Epetra_MPI_4 (Not Run)
        1410 - MueLu_Driver_TogglePFactory_tent_tent_Epetra_MPI_4 (Not Run)
        1411 - MueLu_Driver_TogglePFactory_sa_tent_Epetra_MPI_4 (Not Run)
        1412 - MueLu_Driver_TogglePFactory_semi_tent_Epetra_MPI_4 (Not Run)
        1413 - MueLu_Driver_TogglePFactory_tent_tent_Tpetra_MPI_4 (Not Run)
        1414 - MueLu_Driver_TogglePFactory_sa_tent_Tpetra_MPI_4 (Not Run)
        1415 - MueLu_Driver_TogglePFactory_semi_tent_Tpetra_MPI_4 (Not Run)
        1416 - MueLu_Driver_TogglePFactory_semi_tent_line_Tpetra_MPI_4 (Not Run)
        1417 - MueLu_Driver_TogglePFactory_semi_sa_line_easy_Tpetra_MPI_4 (Not Run)
        1418 - MueLu_ConvergenceEpetra_MPI_1 (Not Run)
        1419 - MueLu_ConvergenceEpetra_MPI_4 (Not Run)
        1420 - MueLu_ConvergenceTpetra_MPI_1 (Not Run)
        1421 - MueLu_ConvergenceTpetra_MPI_4 (Not Run)
        1422 - Stokhos_LegendreBasisUnitTest_MPI_1 (Not Run)
        1423 - Stokhos_NormalizedLegendreBasisUnitTest_MPI_1 (Not Run)
        1424 - Stokhos_HermiteBasisUnitTest_MPI_1 (Not Run)
        1425 - Stokhos_NormalizedHermiteBasisUnitTest_MPI_1 (Not Run)
        1426 - Stokhos_JacobiBasisUnitTest_MPI_1 (Not Run)
        1427 - Stokhos_QuadExpansionUnitTest_MPI_1 (Not Run)
        1428 - Stokhos_QuadraturePseudoSpectralExpansionUnitTest_MPI_1 (Not Run)
        1429 - Stokhos_TensorProductPseudoSpectralExpansionUnitTest_MPI_1 (Not Run)
        1430 - Stokhos_SmolyakPseudoSpectralExpansionUnitTest_MPI_1 (Not Run)
        1431 - Stokhos_AlgebraicExpansionUnitTest_MPI_1 (Not Run)
        1432 - Stokhos_ConstantExpansionUnitTest_MPI_1 (Not Run)
        1433 - Stokhos_DivisionOperatorUnitTest_MPI_1 (Not Run)
        1434 - Stokhos_StieltjesUnitTest_MPI_1 (Not Run)
        1435 - Stokhos_LanczosUnitTest_MPI_1 (Not Run)
        1436 - Stokhos_GramSchmidtUnitTest_MPI_1 (Not Run)
        1437 - Stokhos_Sparse3TensorUnitTest_MPI_1 (Not Run)
        1438 - Stokhos_ExponentialRandomFieldUnitTest_MPI_1 (Not Run)
        1439 - Stokhos_LogNormalUnitTest_MPI_1 (Not Run)
        1440 - Stokhos_SDMUtilsUnitTest_MPI_1 (Not Run)
        1441 - Stokhos_ProductBasisUtilsUnitTest_MPI_1 (Not Run)
        1442 - Stokhos_TensorProductBasisUnitTest_MPI_1 (Not Run)
        1443 - Stokhos_TotalOrderBasisUnitTest_MPI_1 (Not Run)
        1444 - Stokhos_SmolyakBasisUnitTest_MPI_1 (Not Run)
        1445 - Stokhos_TensorProductPseudoSpectralOperatorUnitTest_MPI_1 (Not Run)
        1446 - Stokhos_LexicographicTreeBasisUnitTest_MPI_1 (Not Run)
        1447 - Stokhos_SparseGridQuadratureUnitTest_MPI_1 (Not Run)
        1448 - Stokhos_MatrixFreeOperatorUnitTest_MPI_1 (Not Run)
        1449 - Stokhos_InterlacedOpUnitTest_MPI_2 (Not Run)
        1450 - Stokhos_BasisInteractionGraphUnitTest_MPI_1 (Not Run)
        1451 - Stokhos_AdaptivityToolsUnitTest_MPI_1 (Not Run)
        1452 - Stokhos_BuildColBasisUnitTest_MPI_2 (Not Run)
        1453 - Stokhos_InterlacedMapUnitTest_MPI_2 (Not Run)
        1454 - Stokhos_SacadoTraitsUnitTest_MPI_1 (Not Run)
        1455 - Stokhos_SacadoPromoteUnitTest_MPI_1 (Not Run)
        1456 - Stokhos_SacadoPCEUnitTest_MPI_1 (Not Run)
        1457 - Stokhos_SacadoETPCEUnitTest_MPI_1 (Not Run)
        1458 - Stokhos_SacadoPCESerializationTests_MPI_1 (Not Run)
        1459 - Stokhos_SacadoPCECommTests_MPI_1 (Not Run)
        1460 - Stokhos_SacadoUQPCEUnitTest_MPI_1 (Not Run)
        1461 - Stokhos_SacadoUQPCESerializationTests_MPI_1 (Not Run)
        1462 - Stokhos_SacadoUQPCECommTests_MPI_1 (Not Run)
        1463 - Stokhos_KokkosViewUQPCEUnitTest_Threads_MPI_1 (Not Run)
        1464 - Stokhos_KokkosViewUQPCEUnitTest_Serial_MPI_1 (Not Run)
        1465 - Stokhos_KokkosCrsMatrixUQPCEUnitTest_Threads_MPI_1 (Not Run)
        1466 - Stokhos_TpetraCrsMatrixUQPCEUnitTest_Threads_MPI_4 (Not Run)
        1467 - Stokhos_SacadoMPVectorUnitTest_MPI_1 (Not Run)
        1468 - Stokhos_SacadoMPVectorSerializationTests_MPI_1 (Not Run)
        1469 - Stokhos_SacadoMPVectorCommTests_MPI_1 (Not Run)
        1470 - Stokhos_KokkosViewMPVectorUnitTest_Threads_MPI_1 (Not Run)
        1471 - Stokhos_KokkosViewMPVectorUnitTest_Serial_MPI_1 (Not Run)
        1472 - Stokhos_KokkosCrsMatrixMPVectorUnitTest_Threads_MPI_1 (Not Run)
        1473 - Stokhos_KokkosViewFadMPVectorUnitTest_Threads_MPI_1 (Not Run)
        1474 - Stokhos_TpetraCrsMatrixMPVectorUnitTest_Threads_MPI_4 (Not Run)
        1475 - Stokhos_KokkosArrayKernelsUnitTest_Serial_MPI_1 (Not Run)
        1476 - Stokhos_KokkosArrayKernelsUnitTest_Threads_MPI_1 (Not Run)
        1477 - Stokhos_TpetraMatVec_MPI_4 (Not Run)
        1478 - Stokhos_hermite_example_MPI_1 (Not Run)
        1479 - Stokhos_Linear2D_Diffusion_PCE_Example_MPI_2 (Not Run)
        1480 - Stokhos_Linear2D_Diffusion_PCE_Interlaced_Example_MPI_2 (Not Run)
        1481 - Stokhos_nox_example_MPI_1 (Not Run)
        1482 - Stokhos_Linear2D_Diffusion_PCE_NOX_Example_MPI_2 (Not Run)
        1483 - Stokhos_Linear2D_Diffusion_GMRES_Mean_Based_MPI_2 (Not Run)
        1484 - Stokhos_Linear2D_Diffusion_GMRES_AGS_MPI_2 (Not Run)
        1485 - Stokhos_Linear2D_Diffusion_CG_AGS_MPI_2 (Not Run)
        1486 - Stokhos_Linear2D_Diffusion_GMRES_GS_MPI_2 (Not Run)
        1487 - Stokhos_Linear2D_Diffusion_GMRES_AJ_MPI_2 (Not Run)
        1488 - Stokhos_Linear2D_Diffusion_GMRES_KP_MPI_2 (Not Run)
        1489 - Stokhos_Linear2D_Diffusion_GS_MPI_2 (Not Run)
        1490 - Stokhos_Linear2D_Diffusion_JA_MPI_2 (Not Run)
        1491 - Stokhos_Linear2D_Diffusion_LN_MPI_2 (Not Run)
        1492 - Stokhos_Linear2D_Diffusion_GSLN_MPI_2 (Not Run)
        1493 - Stokhos_Linear2D_Diffusion_GMRES_FA_MPI_2 (Not Run)
        1494 - Stokhos_Linear2D_Diffusion_GMRES_KL_MPI_2 (Not Run)
        1495 - Stokhos_Linear2D_Diffusion_GMRES_KLR_MPI_2 (Not Run)
        1496 - Stokhos_uq_handbook_nonlinear_sg_example_MPI_1 (Not Run)
        1497 - Stokhos_sacado_example_MPI_1 (Not Run)
        1498 - Stokhos_division_example_MPI_1 (Not Run)
        1499 - Stokhos_sacado_ensemble_example_MPI_1 (Not Run)
        1500 - ROL_TeuchosVectorInterface_MPI_4 (Not Run)
        1501 - ROL_adapters_epetra_test_vector_EpetraMultiVectorInterface_MPI_4 (Not Run)
        1502 - ROL_adapters_epetra_test_sol_EpetraSROMSampleGenerator_MPI_4 (Not Run)
        1503 - ROL_adapters_tpetra_test_vector_TpetraMultiVectorInterface_MPI_4 (Not Run)
        1504 - ROL_adapters_tpetra_test_vector_SimulatedVectorTpetraBatchManagerInterface_MPI_4 (Not Run)
        1505 - ROL_adapters_tpetra_test_vector_ScaledTpetraMultiVector_MPI_4 (Not Run)
        1506 - ROL_adapters_tpetra_test_function_TpetraBoundConstraintInterface_MPI_4 (Not Run)
        1507 - ROL_adapters_tpetra_test_sol_TpetraSimulatedConstraintInterface_MPI_4 (Not Run)
        1508 - ROL_adapters_tpetra_test_sol_TpetraSimulatedConstraintInterfaceCVaR_MPI_4 (Not Run)
        1509 - ROL_adapters_tpetra_test_sol_TpetraSimulatedConstraintInterfaceDual_MPI_4 (Not Run)
        1510 - ROL_adapters_belos_test_vector_BelosInterface_MPI_4 (Not Run)
        1511 - ROL_NonlinearProblemTest_MPI_4 (Not Run)
        1512 - ROL_adapters_thyra_test_vector_ThyraInterface_MPI_4 (Not Run)
        1513 - ROL_adapters_thyra_test_vector_ScaledThyraVector_MPI_4 (Not Run)
        1514 - ROL_test_algorithm_OptimizationSolverStatusTestInput_MPI_1 (Not Run)
        1515 - ROL_test_elementwise_StdVector_MPI_1 (Not Run)
        1516 - ROL_test_elementwise_TpetraMultiVector_MPI_4 (Not Run)
        1517 - ROL_test_elementwise_BoundConstraint_MPI_1 (Not Run)
        1518 - ROL_test_function_DerivativeCheck_MPI_1 (Not Run)
        1519 - ROL_test_function_BarrierFunctionCheck_MPI_1 (Not Run)
        1520 - ROL_test_function_BlockOperatorCheck_MPI_1 (Not Run)
        1521 - ROL_test_function_SimOptSolveCheck_MPI_1 (Not Run)
        1522 - ROL_test_function_NonlinearLeastSquaresCheck_MPI_1 (Not Run)
        1523 - ROL_test_function_StdObjectiveCheck_MPI_1 (Not Run)
        1524 - ROL_test_function_CompositeObjectiveCheck_MPI_1 (Not Run)
        1525 - ROL_test_function_CompositeObjectiveSimOptCheck_MPI_1 (Not Run)
        1526 - ROL_test_function_ConstraintPartionedCheck_MPI_1 (Not Run)
        1527 - ROL_test_function_CompositeConstraintCheck_MPI_1 (Not Run)
        1528 - ROL_test_function_HouseholderReflectorCheck_MPI_1 (Not Run)
        1529 - ROL_test_function_BinaryConstraintCheck_MPI_4 (Not Run)
        1530 - ROL_test_function_operator_StdLinearOperator_MPI_1 (Not Run)
        1531 - ROL_test_function_operator_StdTridiagonalOperator_MPI_1 (Not Run)
        1532 - ROL_test_function_constraint_ObjectiveConstraintConversion_MPI_1 (Not Run)
        1533 - ROL_test_function_constraint_ScalarLinearConstraint_MPI_1 (Not Run)
        1534 - ROL_test_sol_solInterface_MPI_1 (Not Run)
        1535 - ROL_test_sol_solDistributions_MPI_1 (Not Run)
        1536 - ROL_test_sol_solTeuchosBatchManager_MPI_4 (Not Run)
        1537 - ROL_test_sol_solSROMGenerator_MPI_1 (Not Run)
        1538 - ROL_test_sol_checkParametrizedSimOptSolve_MPI_1 (Not Run)
        1539 - ROL_test_sol_checkSROMVector_MPI_1 (Not Run)
        1540 - ROL_test_sol_checkHMCR_MPI_1 (Not Run)
        1541 - ROL_test_sol_checkSuperQuantileQuadrangle_MPI_1 (Not Run)
        1542 - ROL_test_sol_checkSpectralRisk_MPI_1 (Not Run)
        1543 - ROL_test_sol_checkAlmostSureConstraint_MPI_1 (Not Run)
        1544 - ROL_test_sol_checkMeanValueConstraint_MPI_1 (Not Run)
        1545 - ROL_test_sol_checkRiskNeutralConstraint_MPI_1 (Not Run)
        1546 - ROL_test_step_LineSearch_MPI_1 (Not Run)
        1547 - ROL_test_step_TrustRegion_MPI_1 (Not Run)
        1548 - ROL_test_step_BoxConstrained_LineSearch_MPI_1 (Not Run)
        1549 - ROL_test_step_BoxConstrained_TrustRegion_MPI_1 (Not Run)
        1550 - ROL_test_step_BoxConstrained_PrimalDualActiveSet_MPI_1 (Not Run)
        1551 - ROL_test_step_LineSearchTypes_MPI_1 (Not Run)
        1552 - ROL_test_step_StepNotImplemented_MPI_1 (Not Run)
        1553 - ROL_test_step_InteriorPointStep_MPI_1 (Not Run)
        1554 - ROL_test_step_MoreauYosidaPenaltyStep_MPI_1 (Not Run)
        1555 - ROL_test_step_interiorpoint_BarrierObjective_MPI_1 (Not Run)
        1556 - ROL_test_step_interiorpoint_PrimalDualResidual_MPI_1 (Not Run)
        1557 - ROL_test_step_interiorpoint_PrimalDualNewtonKrylov_MPI_1 (Not Run)
        1558 - ROL_test_step_krylov_GMRES_MPI_1 (Not Run)
        1559 - ROL_test_utils_ScalarMinimizationTest01_MPI_1 (Not Run)
        1560 - ROL_test_utils_ScalarMinimizationTest02_MPI_1 (Not Run)
        1561 - ROL_test_vector_StdVectorInterface_MPI_1 (Not Run)
        1562 - ROL_test_vector_CArrayVectorInterface_MPI_1 (Not Run)
        1563 - ROL_test_vector_MultiVectorInterface_MPI_1 (Not Run)
        1564 - ROL_test_vector_PartitionedVectorInterface_MPI_1 (Not Run)
        1565 - ROL_test_vector_ScaledStdVectorInterface_MPI_1 (Not Run)
        1566 - ROL_test_vector_ProfiledVectorInterface_MPI_1 (Not Run)
        1567 - ROL_test_vector_RieszVectorInterface_MPI_1 (Not Run)
        1625 - PanzerAdaptersSTK_tSTKInterface_MPI_1 (Not Run)
        1626 - PanzerAdaptersSTK_tLineMeshFactory_MPI_2 (Not Run)
        1627 - PanzerAdaptersSTK_tSquareQuadMeshFactory_MPI_2 (Not Run)
        1628 - PanzerAdaptersSTK_tSquareTriMeshFactory_MPI_2 (Not Run)
        1629 - PanzerAdaptersSTK_tCubeHexMeshFactory_MPI_2 (Not Run)
        1630 - PanzerAdaptersSTK_tCubeTetMeshFactory_MPI_2 (Not Run)
        1631 - PanzerAdaptersSTK_tSingleBlockCubeHexMeshFactory_MPI_4 (Not Run)
        1632 - PanzerAdaptersSTK_tSTK_IO_MPI_1 (Not Run)
        1633 - PanzerAdaptersSTK_tExodusReaderFactory_MPI_2 (Not Run)
        1634 - PanzerAdaptersSTK_tGhosting_MPI_4 (Not Run)
        1635 - PanzerAdaptersSTK_tSTKConnManager_MPI_2 (Not Run)
        1636 - PanzerAdaptersSTK_tSquareQuadMeshDOFManager_MPI_2 (Not Run)
        1637 - PanzerAdaptersSTK_tDOFManager2_Orientation_MPI_2 (Not Run)
        1638 - PanzerAdaptersSTK_tSquareTriMeshDOFManager_MPI_2 (Not Run)
        1639 - PanzerAdaptersSTK_tEpetraLinObjFactory_MPI_2 (Not Run)
        1640 - PanzerAdaptersSTK_tCubeHexMeshDOFManager_MPI_2 (Not Run)
        1641 - PanzerAdaptersSTK_tSquareQuadMeshDOFManager_edgetests_MPI_1 (Not Run)
        1642 - PanzerAdaptersSTK_tBlockedDOFManagerFactory_MPI_2 (Not Run)
        1643 - PanzerAdaptersSTK_tDOFManager2_SimpleTests_MPI_4 (Not Run)
        1644 - PanzerAdaptersSTK_workset_builder_MPI_1 (Not Run)
        1645 - PanzerAdaptersSTK_d_workset_builder_MPI_2 (Not Run)
        1646 - PanzerAdaptersSTK_d_workset_builder_3d_MPI_1 (Not Run)
        1647 - PanzerAdaptersSTK_cascade_MPI_2 (Not Run)
        1648 - PanzerAdaptersSTK_hdiv_basis_MPI_1 (Not Run)
        1649 - PanzerAdaptersSTK_workset_container_MPI_2 (Not Run)
        1650 - PanzerAdaptersSTK_field_manager_builder_MPI_1 (Not Run)
        1651 - PanzerAdaptersSTK_initial_condition_builder_MPI_1 (Not Run)
        1652 - PanzerAdaptersSTK_initial_condition_builder2_MPI_2 (Not Run)
        1653 - PanzerAdaptersSTK_initial_condition_control_MPI_2 (Not Run)
        1654 - PanzerAdaptersSTK_assembly_engine_MPI_4 (Not Run)
        1655 - PanzerAdaptersSTK_simple_bc_MPI_2 (Not Run)
        1656 - PanzerAdaptersSTK_model_evaluator_MPI_4 (Not Run)
        1657 - PanzerAdaptersSTK_model_evaluator_mass_check_MPI_1 (Not Run)
        1658 - PanzerAdaptersSTK_thyra_model_evaluator_MPI_4 (Not Run)
        1659 - PanzerAdaptersSTK_explicit_model_evaluator_MPI_4 (Not Run)
        1660 - PanzerAdaptersSTK_response_residual_MPI_2 (Not Run)
        1661 - PanzerAdaptersSTK_solver_MPI_4 (Not Run)
        1662 - PanzerAdaptersSTK_gs_evaluators_MPI_1 (Not Run)
        1663 - PanzerAdaptersSTK_scatter_field_evaluator_MPI_1 (Not Run)
        1664 - PanzerAdaptersSTK_periodic_bcs_MPI_4 (Not Run)
        1665 - PanzerAdaptersSTK_periodic_mesh_MPI_2 (Not Run)
        1666 - PanzerAdaptersSTK_bcstrategy_MPI_1 (Not Run)
        1667 - PanzerAdaptersSTK_bcstrategy_composite_factory_MPI_1 (Not Run)
        1668 - PanzerAdaptersSTK_STK_ResponseLibraryTest2_MPI_2 (Not Run)
        1669 - PanzerAdaptersSTK_STK_VolumeSideResponse_MPI_2 (Not Run)
        1670 - PanzerAdaptersSTK_ip_coordinates_MPI_2 (Not Run)
        1671 - PanzerAdaptersSTK_tGatherSolution_MPI_2 (Not Run)
        1672 - PanzerAdaptersSTK_tScatterResidual_MPI_2 (Not Run)
        1673 - PanzerAdaptersSTK_tScatterDirichletResidual_MPI_2 (Not Run)
        1674 - PanzerAdaptersSTK_tBasisTimesVector_MPI_1 (Not Run)
        1675 - PanzerAdaptersSTK_tPointBasisValuesEvaluator_MPI_1 (Not Run)
        1676 - PanzerAdaptersSTK_node_normals_MPI_2 (Not Run)
        1677 - PanzerAdaptersSTK_tFaceToElem_MPI_2 (Not Run)
        1678 - PanzerAdaptersIOSS_tIOSSConnManager1_MPI_1 (Not Run)
        1679 - PanzerAdaptersIOSS_tIOSSConnManager2_MPI_2 (Not Run)
        1680 - PanzerAdaptersIOSS_tIOSSConnManager3_MPI_3 (Not Run)

@crtrott
Copy link
Member Author

crtrott commented Dec 15, 2017

TestingResults Shepard Serial

Errors and test failures are a strict subset of the ones encountered on the develop branch with the same configuration.

Build Errors:

None

General Test Results:

99% tests passed, 5 tests failed out of 1721

Label Time Summary:
Amesos2          =   5.83 sec (9 tests)
Anasazi          =  85.02 sec (100 tests)
Belos            =  78.07 sec (87 tests)
Ifpack           =  31.51 sec (41 tests)
Ifpack2          =  35.92 sec (35 tests)
Intrepid         = 131.09 sec (153 tests)
Intrepid2        =  49.17 sec (144 tests)
Isorropia        =   2.79 sec (4 tests)
Kokkos           =  41.68 sec (21 tests)
KokkosKernels    =  94.77 sec (4 tests)
ML               =  17.06 sec (16 tests)
MueLu            = 268.97 sec (93 tests)
NOX              =  93.20 sec (92 tests)
Panzer           = 116.27 sec (113 tests)
Phalanx          =  12.89 sec (22 tests)
ROL              = 121.26 sec (68 tests)
Sacado           =  72.18 sec (292 tests)
ShyLU_Node       =   0.66 sec (3 tests)
Stokhos          =  78.82 sec (75 tests)
Stratimikos      =  18.52 sec (24 tests)
Thyra            =  45.68 sec (81 tests)
Tpetra           =  94.24 sec (147 tests)
Xpetra           =  17.70 sec (18 tests)
Zoltan2          =  75.00 sec (88 tests)

Total Test time (real) = 1589.78 sec

Failed Tests

The following tests FAILED:
        700 - ML_MLP_Restart_MPI_4 (Failed)
        1340 - NOX_Thyra_Heq_MPI_1 (Failed)
        1719 - PanzerAdaptersIOSS_tIOSSConnManager1_MPI_1 (Failed)
        1720 - PanzerAdaptersIOSS_tIOSSConnManager2_MPI_2 (Failed)
        1721 - PanzerAdaptersIOSS_tIOSSConnManager3_MPI_3 (Failed)

Intermittent Test Failures

1549 - ROL_adapters_tpetra_test_sol_TpetraSimulatedConstraintInterfaceCVaR_MPI_4

TestingResults Shepard Serial

Errors and test failures are a strict subset of the ones encountered on the develop branch with the same configuration.

Build Errors:

None

General Test Results:

99% tests passed, 5 tests failed out of 1721

Label Time Summary:
Amesos2          =   5.83 sec (9 tests)
Anasazi          =  85.02 sec (100 tests)
Belos            =  78.07 sec (87 tests)
Ifpack           =  31.51 sec (41 tests)
Ifpack2          =  35.92 sec (35 tests)
Intrepid         = 131.09 sec (153 tests)
Intrepid2        =  49.17 sec (144 tests)
Isorropia        =   2.79 sec (4 tests)
Kokkos           =  41.68 sec (21 tests)
KokkosKernels    =  94.77 sec (4 tests)
ML               =  17.06 sec (16 tests)
MueLu            = 268.97 sec (93 tests)
NOX              =  93.20 sec (92 tests)
Panzer           = 116.27 sec (113 tests)
Phalanx          =  12.89 sec (22 tests)
ROL              = 121.26 sec (68 tests)
Sacado           =  72.18 sec (292 tests)
ShyLU_Node       =   0.66 sec (3 tests)
Stokhos          =  78.82 sec (75 tests)
Stratimikos      =  18.52 sec (24 tests)
Thyra            =  45.68 sec (81 tests)
Tpetra           =  94.24 sec (147 tests)
Xpetra           =  17.70 sec (18 tests)
Zoltan2          =  75.00 sec (88 tests)

Total Test time (real) = 1589.78 sec

Failed Tests

The following tests FAILED:
        700 - ML_MLP_Restart_MPI_4 (Failed)
        1340 - NOX_Thyra_Heq_MPI_1 (Failed)
        1719 - PanzerAdaptersIOSS_tIOSSConnManager1_MPI_1 (Failed)
        1720 - PanzerAdaptersIOSS_tIOSSConnManager2_MPI_2 (Failed)
        1721 - PanzerAdaptersIOSS_tIOSSConnManager3_MPI_3 (Failed)

Intermittent Test Failures

The following test fails on develop and kokkos-promotion occasionally:

1549 - ROL_adapters_tpetra_test_sol_TpetraSimulatedConstraintInterfaceCVaR_MPI_4

@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_autotester_test

  • Build Num: 167
  • 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
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH kokkos-promotion
TRILINOS_SOURCE_REPO https:/trilinos/Trilinos
TRILINOS_SOURCE_SHA f303cb3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA 7d99c1a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3

  • Build Num: 84
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.9.3
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH kokkos-promotion
TRILINOS_SOURCE_REPO https:/trilinos/Trilinos
TRILINOS_SOURCE_SHA f303cb3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA 7d99c1a

@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
WARNING: NO REVIEWERS HAVE BEEN REQUESTED FOR THIS PULL REQUEST!

@trilinos-autotester
Copy link
Contributor

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants