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

Zoltan2: Add quotient algorithm and communication graph model #8576

Merged
merged 2 commits into from
Jan 19, 2021

Conversation

seheracer
Copy link
Contributor

@seheracer seheracer commented Jan 14, 2021

@trilinos/zoltan2

Motivation

This PR adds two major contributions in the following files:

  1. model/Zoltan2_CommGraphModel.hpp
    CommGraphModel (communication graph model) creates a graph representing the communication topology of the MPI ranks for a given XpetraCrsGraphAdapter object. If there are n MPI ranks in the given communicator, then this model contains n vertices so that each vertex represents an MPI rank. If rank i sends a message to rank j (during the mat-vec on the matrix corresponding to the given adapter), then there is a directed edge from vertex i to vertex j in the graph. The weight of the edge is the number of nonzeros that cause that message. The weight of vertex i is the number of nonzeros
    currently residing at rank i. Since the communication graph is too small, we migrate it into a subset of ranks, which we call activeRanks. nActiveRanks_ denotes the number of active ranks and is computed as n/threshold_. For now, this migration is mandatory but we can make it optional (by setting a parameter and migrated_ flag). The threshold_ value can also
    be parameterized.

  2. algorithm/partition/Zoltan2_AlgQuotient.hpp:
    This algorithm partitions the CommGraphModel and transfers the solution (which is only stored on active ranks of CommGraphModel) to all MPI ranks. For now, it uses ParMETIS to partition the graph. Support for other partitioners can be added if needed.

Stakeholder Feedback

Testing

All tests are passing on CUDA builds on Summit (with and without ParMETIS enabled).

@seheracer seheracer requested a review from a team as a code owner January 14, 2021 07:08
@seheracer seheracer added the AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration label Jan 14, 2021
@seheracer seheracer self-assigned this Jan 14, 2021
@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' - Failure: Timed out waiting for job Trilinos_pullrequest_intel_17.0.1 to start: Total Wait = 603

@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 Jan 14, 2021
@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_8.3.0

  • Build Num: 3249
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 8098d56
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 876
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 8098d56
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1370
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 8098d56
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 8723
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 8098d56
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 199
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 8098d56
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 1565
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 8098d56
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4293
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 8098d56
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Using Repos:

Repo: TRILINOS (seheracer/Trilinos)
  • Branch: quotient
  • SHA: 8098d56
  • Mode: TEST_REPO

Pull Request Author: seheracer

@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_8.3.0

  • Build Num: 3249
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 8098d56
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 876
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 8098d56
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1370
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 8098d56
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 8723
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 8098d56
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 199
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 8098d56
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 1565
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 8098d56
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4293
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 8098d56
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 3249 (click to expand)

Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/test/model_evaluator/PanzerAdaptersSTK_thyra_model_evaluator.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/test/model_evaluator/PanzerAdaptersSTK_explicit_model_evaluator.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/test/solver/PanzerAdaptersSTK_solver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/test/periodic_bcs/PanzerAdaptersSTK_periodic_bcs.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/square_mesh/PanzerAdaptersSTK_square_mesh.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/square_mesh/PanzerAdaptersSTK_square_mesh_bc.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/MixedPoissonExample/PanzerAdaptersSTK_MixedPoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/MixedPoissonExample/PanzerAdaptersSTK_MixedPoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/MixedPoissonExample/PanzerAdaptersSTK_MixedPoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/MixedPoissonExample/PanzerAdaptersSTK_MixedPoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/MixedPoissonExample/PanzerAdaptersSTK_MixedPoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceExample/PanzerAdaptersSTK_PoissonInterfaceExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceExample/PanzerAdaptersSTK_PoissonInterfaceExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceExample/PanzerAdaptersSTK_PoissonInterfaceExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceExample/PanzerAdaptersSTK_PoissonInterfaceExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceTpetra/PanzerAdaptersSTK_PoissonInterfaceTpetra.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceTpetra/PanzerAdaptersSTK_PoissonInterfaceTpetra.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceTpetra/PanzerAdaptersSTK_PoissonInterfaceTpetra.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceTpetra/PanzerAdaptersSTK_PoissonInterfaceTpetra.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/assembly_engine/PanzerAdaptersSTK_assembly_example.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/ModelEvaluator/PanzerAdaptersSTK_me_main_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/mini-em/example/BlockPrec/PanzerMiniEM_BlockPrec.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/mini-em/example/BlockPrec/PanzerMiniEM_BlockPrec.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/trilinoscouplings/examples/ml/NonlinML/TrilinosCouplings_ml_nox_1Delasticity_example.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/trilinoscouplings/examples/fenl/TrilinosCouplings_fenl_ensemble.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/trilinoscouplings/examples/fenl/TrilinosCouplings_fenl_pce.exe
CMake Error at /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_MueLu = ON
-- Setting Trilinos_ENABLE_Zoltan2Core = ON
-- Setting Trilinos_ENABLE_Zoltan2 = ON

+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake C O M P L E T E D
+--------------------------------------------------------------------+

+==============================================================================+
| E X E C U T E S T A N D A R D P U L L R E Q E S T T E S T
+==============================================================================+

--- Change directory to /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-8576-test-Trilinos_pullrequest_gcc_8.3.0-3249
-Dskip_by_parts_submit=OFF
-Dskip_update_step=ON
-Ddashboard_model=Experimental
-Ddashboard_track=Pull Request
-DPARALLEL_LEVEL=20
-DTEST_PARALLEL_LEVEL=4
-Dbuild_dir=/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos/cmake/std/PullRequestLinuxGCC8.3.0TestingSettings.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

--- ctest command failed!
Done.
Build step 'Execute shell' marked build as failure
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

  -C "/scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic144&field2=buildname&compare2=61&value2=PR-8576-test-Trilinos_pullrequest_gcc_7.2.0_serial-876&field3=buildstamp&compare3=61&value3=20210114-1236-Pull Request-Experimental
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-8576-test-Trilinos_pullrequest_gcc_7.2.0_serial-876&field2=buildstamp&compare2=61&value2=20210114-1236-Pull Request-Experimental
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-8576-test-Trilinos_pullrequest_gcc_7.2.0_serial-876&field2=buildstamp&compare2=61&value2=20210114-1236-Pull Request-Experimental
Starting configure step.
   Each . represents 1024 bytes of output
    ..................................................  Size: 50K
    ..................................................  Size: 100K
    ..................................................  Size: 150K
    ....... Size of output: 156K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    ..................................................  Size: 49K
    ..................................................  Size: 99K
    ..................................................  Size: 149K
    ..................................................  Size: 199K
    ..................................................  Size: 249K
    ..................................................  Size: 299K
    ..................................................  Size: 349K
    ..................................................  Size: 400K
    ..................................................  Size: 449K
    ..................................................  Size: 499K
    ..................................................  Size: 549K
    ..................................................  Size: 600K
    ..................................................  Size: 650K
    ..................................................  Size: 699K
    ..................................................  Size: 750K
    ..................................................  Size: 799K
    ..................................................  Size: 849K
    ..................................................  Size: 899K
    ..................................................  Size: 949K
    .................. Size of output: 968K
Error(s) when building project
CMake Warning at /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/TFW_testing_single_configure_prototype/simple_testing.cmake:202 (message):
  Build failed with error 1

build submit error = 0
Starting testing step.
Unable to find required file: /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/pull_request_test/packages/zoltan2/test/core/driver/Zoltan2_test_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/pull_request_test/packages/zoltan2/test/core/driver/Zoltan2_test_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/pull_request_test/packages/zoltan2/test/core/driver/Zoltan2_test_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/pull_request_test/packages/zoltan2/test/core/driver/Zoltan2_test_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/pull_request_test/packages/zoltan2/test/core/driver/Zoltan2_test_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/pull_request_test/packages/zoltan2/test/core/driver/Zoltan2_test_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/pull_request_test/packages/zoltan2/test/core/driver/Zoltan2_test_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/pull_request_test/packages/zoltan2/test/core/driver/driverinputs/coffey/../../Zoltan2_test_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/pull_request_test/packages/zoltan2/test/core/driver/driverinputs/kuberry/../../Zoltan2_test_driver.exe
CMake Error at /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
Test failed with error -1

test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_MueLu = ON
-- Setting Trilinos_ENABLE_Zoltan2Core = ON
-- Setting Trilinos_ENABLE_Zoltan2 = ON

+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake C O M P L E T E D
+--------------------------------------------------------------------+

+==============================================================================+
| E X E C U T E S T A N D A R D P U L L R E Q E S T T E S T
+==============================================================================+

--- Change directory to /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-8576-test-Trilinos_pullrequest_gcc_7.2.0_serial-876
-Dskip_by_parts_submit=OFF
-Dskip_update_step=ON
-Ddashboard_model=Experimental
-Ddashboard_track=Pull Request
-DPARALLEL_LEVEL=20
-DTEST_PARALLEL_LEVEL=4
-Dbuild_dir=/scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0SerialTestingSettings.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

--- ctest command failed!
Done.
Build step 'Execute shell' marked build as failure
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

skip_update_step         = ON
skip_upload_config_files = OFF
skip_clean_build_dir     = ON
Subproject count         = 61
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake 
  -C "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0DebugTestingSettings.cmake"
  -C "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic158&field2=buildname&compare2=61&value2=PR-8576-test-Trilinos_pullrequest_gcc_7.2.0_debug-1370&field3=buildstamp&compare3=61&value3=20210114-1236-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-8576-test-Trilinos_pullrequest_gcc_7.2.0_debug-1370&field2=buildstamp&compare2=61&value2=20210114-1236-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-8576-test-Trilinos_pullrequest_gcc_7.2.0_debug-1370&field2=buildstamp&compare2=61&value2=20210114-1236-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ..................................................  Size: 50K
    ..................................................  Size: 100K
    ..................................................  Size: 150K
    ..................................................  Size: 200K
    .................. Size of output: 217K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    ..................................................  Size: 50K
    ..................................................  Size: 100K
    ..................................................  Size: 150K
    ..................................................  Size: 200K
    ..................................................  Size: 249K
    ..................................................  Size: 299K
    ..................................................  Size: 350K
    ..................................................  Size: 399K
    ..................................................  Size: 450K
    ..................................................  Size: 500K
    ..................................................  Size: 549K
    ..................................................  Size: 599K
    ..................................................  Size: 650K
    ..................................................  Size: 699K
    ..................................................  Size: 750K
    ..................................................  Size: 800K
    ..................................................  Size: 849K
    ..................................................  Size: 899K
    ......................................... Size of output: 940K
Error(s) when building project
CMake Warning at /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/TFW_testing_single_configure_prototype/simple_testing.cmake:202 (message):
  Build failed with error 1

build submit error = 0
Starting testing step.
CMake Error at /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
Test failed with error -1

test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_MueLu = ON
-- Setting Trilinos_ENABLE_Zoltan2Core = ON
-- Setting Trilinos_ENABLE_Zoltan2 = ON

+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake C O M P L E T E D
+--------------------------------------------------------------------+

+==============================================================================+
| E X E C U T E S T A N D A R D P U L L R E Q E S T T E S T
+==============================================================================+

--- Change directory to /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-8576-test-Trilinos_pullrequest_gcc_7.2.0_debug-1370
-Dskip_by_parts_submit=OFF
-Dskip_update_step=ON
-Ddashboard_model=Experimental
-Ddashboard_track=Pull Request
-DPARALLEL_LEVEL=29
-DTEST_PARALLEL_LEVEL=4
-Dbuild_dir=/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0DebugTestingSettings.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

--- ctest command failed!
Done.
Build step 'Execute shell' marked build as failure
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

    ..................................................  Size: 300K
    ..................................................  Size: 349K
    ..................................................  Size: 400K
    ..................................................  Size: 449K
    ..................................................  Size: 499K
    ..................................................  Size: 550K
    ..................................................  Size: 600K
    ..................................................  Size: 650K
    ..................................................  Size: 699K
    ..................................................  Size: 749K
    ..................................................  Size: 800K
    ..................................................  Size: 849K
    ..................................................  Size: 899K
    ..................................................  Size: 949K
    ..................................................  Size: 1000K
    ..................................................  Size: 1049K
    ..................................................  Size: 1100K
    ..................................................  Size: 1149K
    ..................................................  Size: 1199K
    ..................................................  Size: 1250K
    ..................................................  Size: 1300K
    ..................................................  Size: 1349K
    ..................................................  Size: 1399K
    ..................................................  Size: 1450K
    ..................................................  Size: 1500K
    ..................................................  Size: 1550K
    ..................................................  Size: 1599K
    ..................................................  Size: 1650K
    ..................................................  Size: 1700K
    ..................................................  Size: 1749K
    ..................................................  Size: 1799K
    ..................................................  Size: 1850K
    ..................................................  Size: 1899K
    ..................................................  Size: 1950K
    ..................................................  Size: 2000K
    ..................................................  Size: 2050K
    ..................................................  Size: 2100K
    ..................................................  Size: 2149K
    ..................................................  Size: 2199K
    ..................................................  Size: 2249K
    ..................................................  Size: 2300K
    ..................................................  Size: 2350K
    ..................................................  Size: 2399K
    ..................................................  Size: 2450K
    ..................................................  Size: 2500K
    ..................................................  Size: 2550K
    ..................................................  Size: 2599K
    ..................................................  Size: 2649K
    ..................................................  Size: 2699K
    ..................................................  Size: 2749K
    ..... Size of output: 2755K
Error(s) when building project
CMake Warning at /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype/simple_testing.cmake:202 (message):
  Build failed with error 1

build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_MueLu = ON
-- Setting Trilinos_ENABLE_Zoltan2Core = ON
-- Setting Trilinos_ENABLE_Zoltan2 = ON

+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake C O M P L E T E D
+--------------------------------------------------------------------+

+==============================================================================+
| E X E C U T E S T A N D A R D P U L L R E Q E S T T E S T
+==============================================================================+

--- Change directory to /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-8576-test-Trilinos_pullrequest_intel_17.0.1-8723
-Dskip_by_parts_submit=OFF
-Dskip_update_step=ON
-Ddashboard_model=Experimental
-Ddashboard_track=Pull Request
-DPARALLEL_LEVEL=29
-DTEST_PARALLEL_LEVEL=4
-Dbuild_dir=/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxIntel17.0.1TestingSettings.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

--- ctest command failed!
Done.
Build step 'Execute shell' marked build as failure
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_cuda_10.1.105 # 199 (click to expand)

    ..................................................  Size: 100K
    ..................................................  Size: 150K
    ..................................................  Size: 200K
    .............. Size of output: 213K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    ..................................................  Size: 49K
    ..................................................  Size: 100K
    ..................................................  Size: 149K
    ..................................................  Size: 200K
    ..................................................  Size: 249K
    ..................................................  Size: 300K
    ..................................................  Size: 350K
    ..................................................  Size: 399K
    ..................................................  Size: 449K
    ..................................................  Size: 499K
    ..................................................  Size: 550K
    ..................................................  Size: 599K
    ..................................................  Size: 650K
    ..................................................  Size: 700K
    ..................................................  Size: 750K
    ..................................................  Size: 800K
    ..................................................  Size: 849K
    ..................................................  Size: 900K
    ..................................................  Size: 949K
    ..................................................  Size: 999K
    ..................................................  Size: 1050K
    ..................................................  Size: 1100K
    ..................................................  Size: 1150K
    ..................................................  Size: 1200K
    ..................................................  Size: 1250K
    ..................................................  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: 2000K
    ..................................................  Size: 2050K
    ..................................................  Size: 2100K
    ..................................................  Size: 2150K
    ..................................................  Size: 2200K
    ..................................................  Size: 2250K
    ..................................................  Size: 2300K
    ..................................................  Size: 2349K
    ................................... Size of output: 2385K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_MueLu = ON
-- Setting Trilinos_ENABLE_Zoltan2Core = ON
-- Setting Trilinos_ENABLE_Zoltan2 = ON

+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake C O M P L E T E D
+--------------------------------------------------------------------+

+==============================================================================+
| E X E C U T E S T A N D A R D P U L L R E Q E S T T E S T
+==============================================================================+

--- Change directory to /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105@2/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-8576-test-Trilinos_pullrequest_cuda_10.1.105-199
-Dskip_by_parts_submit=OFF
-Dskip_update_step=ON
-Ddashboard_model=Experimental
-Ddashboard_track=Experimental
-DPARALLEL_LEVEL=29
-DTEST_PARALLEL_LEVEL=4
-Dbuild_dir=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105@2/pull_request_test
-Dconfigure_script=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105@2/Trilinos/cmake/std/PullRequestLinuxCuda10.1.105TestingSettings.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

Done.
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_clang_10.0.0 # 1565 (click to expand)

CHANGED_PACKAGES_FULL_LIST='MueLu,Zoltan2Core,Zoltan2'

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

CHANGED_PACKAGES_ST_LIST='MueLu,Zoltan2Core,Zoltan2'

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-8576-test-Trilinos_pullrequest_clang_10.0.0-1565
Cur dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test
Parallel level = 29
Testing Parallel level = 4
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 61
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos/cmake/std/PullRequestLinuxClang10.0.0TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic166&field2=buildname&compare2=61&value2=PR-8576-test-Trilinos_pullrequest_clang_10.0.0-1565&field3=buildstamp&compare3=61&value3=20210114-1237-Pull Request-Experimental
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-8576-test-Trilinos_pullrequest_clang_10.0.0-1565&field2=buildstamp&compare2=61&value2=20210114-1237-Pull Request-Experimental
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-8576-test-Trilinos_pullrequest_clang_10.0.0-1565&field2=buildstamp&compare2=61&value2=20210114-1237-Pull Request-Experimental
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.................................................. Size: 100K
.................................................. Size: 150K
.................................................. Size: 200K
..................... Size of output: 220K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.................................................. Size: 49K
.................................................. Size: 99K
.................................................. Size: 149K
.................................................. Size: 199K
.................................................. Size: 249K
........................ Size of output: 273K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_MueLu = ON
-- Setting Trilinos_ENABLE_Zoltan2Core = ON
-- Setting Trilinos_ENABLE_Zoltan2 = ON

+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake C O M P L E T E D
+--------------------------------------------------------------------+

+==============================================================================+
| E X E C U T E S T A N D A R D P U L L R E Q E S T T E S T
+==============================================================================+

--- Change directory to /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-8576-test-Trilinos_pullrequest_clang_10.0.0-1565
-Dskip_by_parts_submit=OFF
-Dskip_update_step=ON
-Ddashboard_model=Experimental
-Ddashboard_track=Pull Request
-DPARALLEL_LEVEL=29
-DTEST_PARALLEL_LEVEL=4
-Dbuild_dir=/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos/cmake/std/PullRequestLinuxClang10.0.0TestingSettings.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

Done.
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: SUCCESS

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

--- WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3@tmp
--- JOB_OWNER = prwolfe
--- EXECUTOR_NUMBER
--- JOB_COOWNERS = prwolfe,trilinos
--- NODE_LABELS
--- GIT_URL
--- LOGNAME
--- CVS_RSH
--- QTLIB
--- HUDSON_HOME
--- SSH_CONNECTION
--- NODE_NAME
--- MODULESHOME
--- SEMS_MODULEFILES_ROOT = /projects/sems/modulefiles
--- LESSOPEN
--- JOB_DISPLAY_URL = https://ascic-jenkins.sandia.gov/job/trilinos-folder/job/Trilinos_pullrequest_python_3/display/redirect
--- BUILD_NUMBER = 4293
--- TRILINOS_SOURCE_BRANCH = quotient
--- JOB_COOWNERS_EMAILS = [email protected],[email protected]
--- HUDSON_COOKIE
--- ROOT_BUILD_CAUSE_MANUALTRIGGER = true
--- XDG_RUNTIME_DIR
--- NODE_COOWNERS_EMAILS
--- FORCE_CLEAN = false
--- BASH_FUNC_module()
--- _
--- LOADEDMODULES
--- _LMFILES_
--- CC
--- CXX
--- F77
--- F90
--- FC
--- LD_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/lib:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/lib:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/lib:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/lib64:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/lib
--- SEMS_COMPILER_NAME = gcc
--- SEMS_COMPILER_ROOT = /projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base
--- SEMS_COMPILER_VERSION = 7.2.0
--- SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
--- SEMS_GCC_LOCAL_PYTHON_VERSION = 2.7.5
--- SEMS_GCC_ROOT = /projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base
--- SERIAL_CC
--- SERIAL_CXX
--- SERIAL_F77
--- SERIAL_F90
--- SERIAL_FC
--- SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
--- SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
--- SEMS_NINJA_FORTRAN_ROOT = /projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2
--- SEMS_NINJA_FORTRAN_VERSION = 1.7.2
--- SEMS_GIT_LOCAL_COMPILER_VERSION = 4.8.5
--- SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
--- SEMS_GIT_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1
--- SEMS_GIT_VERSION = 2.10.1
--- SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
--- SEMS_CMAKE_LOCAL_PYTHON_VERSION = 2.7.5
--- SEMS_CMAKE_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3
--- SEMS_CMAKE_VERSION = 3.10.3

+--------------------------------------------------------------------+
| E N V I R O N M E N T S E T U P C O M P L E T E
+--------------------------------------------------------------------+
+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake S T A R T I N G
+--------------------------------------------------------------------+

Enabled Packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake C O M P L E T E D
+--------------------------------------------------------------------+

+==============================================================================+
| E X E C U T E S T A N D A R D P U L L R E Q E S T T E S T
+==============================================================================+

--- Change directory to /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-8576-test-Trilinos_pullrequest_python_3-4293
-Dskip_by_parts_submit=OFF
-Dskip_update_step=ON
-Ddashboard_model=Experimental
-Ddashboard_track=Pull Request
-DPARALLEL_LEVEL=20
-DTEST_PARALLEL_LEVEL=4
-Dbuild_dir=/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxPython3.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

Done.
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: SUCCESS


CDash Test Results for PR# 8576.


Wiki: How to Reproduce PR Testing Builds and Errors.

@seheracer seheracer added the AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration label Jan 14, 2021
@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' - User Requested Retest - Label AT: RETEST will be reset after testing.

@trilinos-autotester
Copy link
Contributor

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 3274
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 0f1d02f
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 900
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 0f1d02f
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1394
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 0f1d02f
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 8747
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 0f1d02f
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 223
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 0f1d02f
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 1589
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 0f1d02f
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4309
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 0f1d02f
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Using Repos:

Repo: TRILINOS (seheracer/Trilinos)
  • Branch: quotient
  • SHA: 0f1d02f
  • Mode: TEST_REPO

Pull Request Author: seheracer

@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_8.3.0

  • Build Num: 3274
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 0f1d02f
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 900
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 0f1d02f
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1394
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 0f1d02f
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 8747
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 0f1d02f
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 223
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 0f1d02f
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 1589
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 0f1d02f
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4309
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;pkg: Zoltan2
PULLREQUESTNUM 8576
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH quotient
TRILINOS_SOURCE_REPO https://github.com/seheracer/Trilinos
TRILINOS_SOURCE_SHA 0f1d02f
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA eec316f


CDash Test Results for PR# 8576.

@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 Jan 18, 2021
@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
NO REVIEWS HAVE BEEN PERFORMED ON THIS PULL REQUEST!

@trilinos-autotester
Copy link
Contributor

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

Copy link
Contributor

@cgcgcg cgcgcg left a comment

Choose a reason for hiding this comment

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

MueLu changes look good to me

Copy link
Contributor

@egboman egboman left a comment

Choose a reason for hiding this comment

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

The Zoltan2 code looks fine. (I did not check MueLu.)
As Seher mentioned, any graph partitioner can be used to partition the quotient graph. There is really no need to require ParMetis. A future extension is to allow PHG.

@seheracer seheracer added the AT: AUTOMERGE Causes the PR autotester to automatically merge the PR branch once approvals are completed label Jan 18, 2021
@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester trilinos-autotester merged commit 2c68e54 into trilinos:develop Jan 19, 2021
@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester trilinos-autotester removed the AT: AUTOMERGE Causes the PR autotester to automatically merge the PR branch once approvals are completed label Jan 19, 2021
Copy link
Contributor

@kddevin kddevin left a comment

Choose a reason for hiding this comment

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

Interface changes requested:

  • Return partListView of quotient algorithm does not match that of other
    algorithms.

  • Currently returning:

    quotient: one part assignment per MPI rank
    on each processor, Teuchos::ArrayView(1) with part(0) =
    single value in [0,nparts)

    everything else: one part assignment per matrix row
    Teuchos::ArrayView(nrows) with part(i) = some value in [0,nparts)

  • We should return:

    quotient: one part assignment per matrix row; all rows assigned to same
    part (until we implement chunking version)
    on each processor, Teuchos::ArrayView(nrows) with part(i) =
    const A in [0,nparts) for every row i (same A for every row)

    everything else: one part assignment per matrix row
    Teuchos::ArrayView(nrows) with part(i) = some value in [0,nparts)

  • For quotient method, modifying partListView to return part assignment per
    matrix row allows
    common user interface for all methods;
    matrix redistribution in the partitioning1.cpp test will work for
    better testing; and
    with quotient, can also check that part(i) = A for all i

Algorithm changes requested:

  • To accomplish change above, might need to
    have quotient algorithm take Adapter as input (as in AlgPuLP),
    construct its CommGraphModel itself from adapter,
    and then use GIDs from adapter to setParts with result.

  • Make threshold_ a parameter so that for testing, we can set it 2 for some of
    the PR tests (runs on 4, but migrates to 2)

  • Remove untested option to not migrate.
    User can run on 4 and migrate to 4 if he doesn't want to migrate
    Test this case

  • Remove code that disables distributeInput for quotient method.

Tests:

  • test both distributeInput=false, true
    (--no-distribute, --distribute (default))

  • set threshold to run on 4, migrate to 2

  • set threshold to run on 4, migrate to 4

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

Successfully merging this pull request may close these issues.

5 participants