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: IdentifierAdapters test #173

Open
wants to merge 550 commits into
base: NGA-FY23-develop
Choose a base branch
from
Open
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Aug 2, 2023

  1. Some GPU fixes

    jgfouca committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    e1d4661 View commit details
    Browse the repository at this point in the history
  2. Cleaned up LowCommunicationMakeColMap code, deleting extra print stat…

    …ements / deep copies
    Kevin Xiaohan Ren committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    f259a86 View commit details
    Browse the repository at this point in the history
  3. Update deprecated-off configs

    Add a no-package-enables config without deprecated code for future PR
    build.
    
    User Support Ticket(s) or Story Referenced: TRILFRAME-578
    sebrowne committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    8223ba7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    fda2e87 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ded7e29 View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2023

  1. Merge pull request trilinos#12097 from brian-kelley/PatchKK1927

    KokkosKernels: patch in PR 1927
    brian-kelley authored Aug 3, 2023
    Configuration menu
    Copy the full SHA
    314c747 View commit details
    Browse the repository at this point in the history
  2. Merge Pull Request trilinos#12071 from gsjaardema/Trilinos/SEACAS-dec…

    …omp-with-no-zoltan
    
    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: SEACAS: decomp, nem_slice better handling of no-zoltan case
    PR Author: gsjaardema
    trilinos-autotester authored Aug 3, 2023
    Configuration menu
    Copy the full SHA
    6ca8572 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'develop' of github.com:trilinos/Trilinos into develop

    Caleb Leandre Jackson committed Aug 3, 2023
    Configuration menu
    Copy the full SHA
    fa053b1 View commit details
    Browse the repository at this point in the history
  4. GPU working

    jgfouca committed Aug 3, 2023
    Configuration menu
    Copy the full SHA
    5b19fc1 View commit details
    Browse the repository at this point in the history
  5. Disable flaky test: SEACASAprepro_lib_aprepro_lib_array_test

    Caleb Leandre Jackson committed Aug 3, 2023
    Configuration menu
    Copy the full SHA
    b74ad44 View commit details
    Browse the repository at this point in the history
  6. Minor cleanup

    jgfouca committed Aug 3, 2023
    Configuration menu
    Copy the full SHA
    7cb3aee View commit details
    Browse the repository at this point in the history
  7. Update version number

    Caleb Leandre Jackson committed Aug 3, 2023
    Configuration menu
    Copy the full SHA
    35f8064 View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2023

  1. Tpetra: Update Tpetra_Details_DeepCopyTeuchosTimerInjection.cpp

    Call out scalar fills
    csiefer2 authored Aug 4, 2023
    Configuration menu
    Copy the full SHA
    e79cb61 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    abf7aac View commit details
    Browse the repository at this point in the history
  3. Added some extra comments about deep copies

    Kevin Xiaohan Ren committed Aug 4, 2023
    Configuration menu
    Copy the full SHA
    388b37b View commit details
    Browse the repository at this point in the history
  4. Reverted unit tests back to original state

    Kevin Xiaohan Ren committed Aug 4, 2023
    Configuration menu
    Copy the full SHA
    a67a9de View commit details
    Browse the repository at this point in the history
  5. MueLu: remove deep_copy timers

    In response to review of PR trilinos#12036.
    jhux2 committed Aug 4, 2023
    Configuration menu
    Copy the full SHA
    04fb527 View commit details
    Browse the repository at this point in the history
  6. Tpetra: remove unnecessary exception test

    In response to review comment for PR trilinos#12036.
    jhux2 committed Aug 4, 2023
    Configuration menu
    Copy the full SHA
    cd02518 View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2023

  1. Merge Pull Request trilinos#12108 from trilinos/Trilinos/master_merge…

    …_20230804_175808
    
    Automatically Merged using Trilinos Master Merge AutoTester
    PR Title: Trilinos Master Merge PR Generator: Auto PR created to promote from master_merge_20230804_175808 branch to master
    PR Author: trilinos-autotester
    trilinos-autotester authored Aug 5, 2023
    Configuration menu
    Copy the full SHA
    9625731 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9dd1584 View commit details
    Browse the repository at this point in the history
  3. Merge pull request trilinos#12107 from trilinos/csiefer2-scalar-fill

    Tpetra: Update deep_copy diagnostics to distinguish scalar fill
    csiefer2 authored Aug 5, 2023
    Configuration menu
    Copy the full SHA
    db02675 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2023

  1. Converted Panzer to the new STK simple_fields workflow

    This essentially removes all usage of the template parameters beyond
    just the datatype in stk::mesh::Fields.  This makes setting the size
    of a Field a run-time configuration option through calls to
    stk::mesh::put_field_on_mesh() and keeps the datatype (double, int,
    etc.) a compile-time configuration option.  Functions like
    stk::mesh::MetaData::declare_field() and stk::mesh::MetaData::get_field()
    now just pass the datatype as a template parameter instead of the whole
    templated Field type itself.
    
    The stk::mesh::MetaData::use_simple_fields() method is called early
    in MetaData construction to force the new behavior, to prevent any
    accidental regressions and to ensure that any auto-registered Fields
    (like coordinates) will be sized consistently by things like
    stk::mesh::StkMeshIoBroker.  Any calls to the legacy functions will
    trigger a run-time error.
    
    There should be no user-visible behavior changes, and external
    applications that use Panzer should not need to make any changes as
    long as they consistently use Panzer's typedefs to refer to higher-
    dimensional Fields like panzer_stk::VectorFieldType.  If external apps
    grab a stk::mesh::MetaData and register or manipulate their own Fields,
    there is a chance that they will encounter a new error.  The error
    message should guide them to the correct solution.
    djglaze committed Aug 7, 2023
    Configuration menu
    Copy the full SHA
    c3d34d0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a6d9679 View commit details
    Browse the repository at this point in the history
  3. Merge Pull Request trilinos#12098 from sebrowne/Trilinos/trilframe578

    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: Framework: Add deprecated-off nopackages config
    PR Author: sebrowne
    trilinos-autotester authored Aug 7, 2023
    Configuration menu
    Copy the full SHA
    0f69add View commit details
    Browse the repository at this point in the history
  4. Added check for case where NumRemoteColGIDs=0

    Changed function names for lowCommMakeColMap (TEMPORARY)
    Kevin Xiaohan Ren committed Aug 7, 2023
    Configuration menu
    Copy the full SHA
    2eaa54e View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8d9dffc View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    564b4e9 View commit details
    Browse the repository at this point in the history
  7. Tpetra: Modifying test

    csiefer2 committed Aug 7, 2023
    Configuration menu
    Copy the full SHA
    abd0d6c View commit details
    Browse the repository at this point in the history
  8. Tpetra: Modifying test

    csiefer2 committed Aug 7, 2023
    Configuration menu
    Copy the full SHA
    6f1a5b7 View commit details
    Browse the repository at this point in the history
  9. Tpetra: GDSW test mods

    csiefer2 committed Aug 7, 2023
    Configuration menu
    Copy the full SHA
    5df5e5f View commit details
    Browse the repository at this point in the history
  10. Tpetra: GDSW Fixes

    csiefer2 committed Aug 7, 2023
    Configuration menu
    Copy the full SHA
    ce6a4e4 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    d3d663a View commit details
    Browse the repository at this point in the history
  12. Merge Pull Request trilinos#12109 from trilinos/Trilinos/djglaze/panz…

    …er-stk-simple-fields
    
    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: Converted Panzer to the new STK simple_fields workflow
    PR Author: djglaze
    trilinos-autotester authored Aug 7, 2023
    Configuration menu
    Copy the full SHA
    34f5a6e View commit details
    Browse the repository at this point in the history
  13. Merge pull request trilinos#12101 from cabejackson/fork_develop

    Framework: Post 14.4 release update
    cabejackson authored Aug 7, 2023
    Configuration menu
    Copy the full SHA
    77f98d0 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    e0adac3 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    ab9e25b View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    bc885f0 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    b810537 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    469fa75 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    0654fe4 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    e1170b9 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    bfd7257 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    53c0ad0 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    be4bc85 View commit details
    Browse the repository at this point in the history
  24. Tpetra: Adding unit labels

    csiefer2 committed Aug 7, 2023
    Configuration menu
    Copy the full SHA
    76208e7 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    252713f View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    4b59cb3 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    33f8e63 View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    b27327d View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    103c847 View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    78f7db5 View commit details
    Browse the repository at this point in the history
  31. Tpetra: Adding docs

    csiefer2 committed Aug 7, 2023
    Configuration menu
    Copy the full SHA
    5777259 View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    735f7bf View commit details
    Browse the repository at this point in the history
  33. Add/move testing files

    sebrowne committed Aug 7, 2023
    Configuration menu
    Copy the full SHA
    35defff View commit details
    Browse the repository at this point in the history
  34. Configuration menu
    Copy the full SHA
    1b91f0e View commit details
    Browse the repository at this point in the history
  35. Tpetra: Oops

    csiefer2 committed Aug 7, 2023
    Configuration menu
    Copy the full SHA
    dacdaf9 View commit details
    Browse the repository at this point in the history
  36. Configuration menu
    Copy the full SHA
    63a8091 View commit details
    Browse the repository at this point in the history
  37. Configuration menu
    Copy the full SHA
    d1b11f3 View commit details
    Browse the repository at this point in the history
  38. Configuration menu
    Copy the full SHA
    1805e90 View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2023

  1. Merge Pull Request trilinos#12114 from trilinos/Trilinos/csiefer-d1b11f3

    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: Tpetra: Adding verbose mode for Kokkos::deep_copy timer injection
    PR Author: csiefer2
    trilinos-autotester authored Aug 8, 2023
    Configuration menu
    Copy the full SHA
    b78aed9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    24627e4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    977172d View commit details
    Browse the repository at this point in the history
  4. Undo macos fixes

    jgfouca committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    4ce8b47 View commit details
    Browse the repository at this point in the history
  5. Update GDSW_Proxy_def.hpp

    csiefer2 authored Aug 8, 2023
    Configuration menu
    Copy the full SHA
    780c65b View commit details
    Browse the repository at this point in the history
  6. removed extra print statements and ColIndices_max loop

    Kevin Xiaohan Ren committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    61e5289 View commit details
    Browse the repository at this point in the history
  7. Zoltan2: Update GraphAdapters to use Kokkos data structures and impro…

    …ve API to return Host/Device Views
    JacobDomagala committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    6363fa9 View commit details
    Browse the repository at this point in the history
  8. Merge pull request trilinos#12096 from cwpearson/snapshot/kokkos-kern…

    …els-spmv
    
    kokkos-kernels: Add new BsrMatrix SpMV to Kokkos Kernels
    lucbv authored Aug 8, 2023
    Configuration menu
    Copy the full SHA
    7cf9459 View commit details
    Browse the repository at this point in the history
  9. Merge Pull Request trilinos#12115 from trilinos/Trilinos/revert-12036…

    …-unpack-and-combine
    
    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: Revert "Tpetra: move unpack and combine to device in TAFC"
    PR Author: jhux2
    trilinos-autotester authored Aug 8, 2023
    Configuration menu
    Copy the full SHA
    4550891 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2023

  1. removed unnecessary attomic add and parallel loop while creating Remo…

    …te GID List
    Kevin Xiaohan Ren committed Aug 9, 2023
    Configuration menu
    Copy the full SHA
    f8110ad View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7b9ba1a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b610e9c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    49c07e1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    afaced9 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    f994a84 View commit details
    Browse the repository at this point in the history
  7. Tempus: Split Up Newmark Tests

    Newmark tests in debug mode were occassionally running too
    long, when resources were loaded.  Splitting up its tests into
    individual tests based on the governing equations (ModelEvaluator).
    
    Moved the constructor tests to the unit tests.
    
    Also removed unneeded includes of Epetra.
    ccober6 committed Aug 9, 2023
    Configuration menu
    Copy the full SHA
    00d2efd View commit details
    Browse the repository at this point in the history
  8. Fixes for verification

    jgfouca committed Aug 9, 2023
    Configuration menu
    Copy the full SHA
    55115ed View commit details
    Browse the repository at this point in the history
  9. Merge pull request trilinos#12080 from iyamazaki/shylu-core-pt-testing

    ShyLU core : testing it as PT
    iyamazaki authored Aug 9, 2023
    Configuration menu
    Copy the full SHA
    d7fdf33 View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2023

  1. Merge Pull Request trilinos#12122 from trilinos/Trilinos/12120-Tempus…

    …-Split-Up-Newmark-Tests
    
    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: Tempus: Split Up Newmark Tests
    PR Author: ccober6
    trilinos-autotester authored Aug 10, 2023
    Configuration menu
    Copy the full SHA
    39ed03c View commit details
    Browse the repository at this point in the history
  2. Intrepid2: Symmetric quadrature rules and refactor of Projections (tr…

    …ilinos#12116)
    
    * Intrepid2: add symmetric cubature rules for triangles and tetrahedra
    
    These cubature rules are symmetric (invariant to orientation mappings) and have positive weights
    
    * Intrepid2: modify integration tests to exercise new symmetric quadrature ruels
    
    * Intrepid2: add capability to compute inverse of orientation maps
    
    Inverse of orientation maps can be used to simplify the implementation of Lagrangian Interpolation
    
    * Intrepid2: modify Largangian Interpolation implementation
    
    We use inverse of orientation maps to simplify the implementation of Lagrangian Interpolation.
    A major advantage is that now we provide an interpolation method that requires the
    evaluation of the function on the reference dof nodes, which are the same in each cell,
    instead of the "oriented" dof nodes that change from cell to cell.
    This has the advantage of evaluating the basis functions only on the reference cell instead of on every cell.
    
    * Intrepid2: Minor bug fixes and warnings removal
    
    * Intrepid2: refactor of projections using new symmetric cubature rules
    
    The use of symmetric cubature rules allow to require the evaluation of the
    target function at points in the reference cell, which are the same in each cell,
    instead of requesting the evaluation of the function at oriented quadrature points,
    which can be different in different cells.
    
    We refacor the projections so that the evaluation points are now stored in the ProjectionStruct
    and can be accessed using the functions getAllEvalPoints() and getAllDerivEvalPoints.
    And we change the implementation of the projection methods so that they use symmetric
    quadrature rule and functions evaluated at the reference (non-oriented) points.
    
    * Intrepid2: use new projection function in ProjectedGeometry
    
    * Intrepid2: modify unit tests to use new projection and interpolation methods
    
    Note: the results of some tests changed because we are using different quadrature rules.
    
    * Intrepid2: Added projection tests for Wedge
    
    * Panzer: modify implementation of MiniEM interpolation to use new Interpolation method
    
    * Panzer: modify Dof Manager assembly tests to use new projection and interpolation functions
    mperego authored Aug 10, 2023
    Configuration menu
    Copy the full SHA
    57a0cf4 View commit details
    Browse the repository at this point in the history
  3. Update probited-strings.yml

    sebrowne authored Aug 10, 2023
    Configuration menu
    Copy the full SHA
    4b7a23f View commit details
    Browse the repository at this point in the history
  4. Panzer :: Evaluator for intrepid2's local L2 projection (trilinos#11811)

    * Panzer: L2 projection :: An evaluator which wraps Intrepid2's new local all-in-one local L2 projection. Includes test.
    reuterb authored Aug 10, 2023
    Configuration menu
    Copy the full SHA
    8f46fe4 View commit details
    Browse the repository at this point in the history
  5. Merge Pull Request trilinos#12083 from NexGenAnalytics/Trilinos/nga-f…

    …y23-pr-candidate-2
    
    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: Zoltan2: Update GraphAdapters to use Kokkos data structures and impro
    PR Author: JacobDomagala
    trilinos-autotester authored Aug 10, 2023
    Configuration menu
    Copy the full SHA
    0234ff1 View commit details
    Browse the repository at this point in the history
  6. Fix up ctest details

    jgfouca committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    18eb1c6 View commit details
    Browse the repository at this point in the history
  7. More 6w test fixes

    jgfouca committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    dea5550 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    9ac06c2 View commit details
    Browse the repository at this point in the history
  9. Remove verification code

    jgfouca committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    94afbac View commit details
    Browse the repository at this point in the history
  10. Restore some stuff

    jgfouca committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    969a936 View commit details
    Browse the repository at this point in the history
  11. Merge remote-tracking branch 'origin/develop' into jgfouca/fastilu_bl…

    …ockcrs
    
    * origin/develop: (391 commits)
      Panzer :: Evaluator for intrepid2's local L2 projection (trilinos#11811)
      Intrepid2: Symmetric quadrature rules and refactor of Projections (trilinos#12116)
      Tempus: Split Up Newmark Tests
      Zoltan2: Update GraphAdapters to use Kokkos data structures and improve API to return Host/Device Views
      Revert "Tpetra: move unpack and combine to device in TAFC"
      Tpetra: Modifications for verbose deep_copy timer injection
      Converted Panzer to the new STK simple_fields workflow
      Tpetra: remove unnecessary exception test
      MueLu: remove deep_copy timers
      Update Tpetra_Details_DeepCopyTeuchosTimerInjection.cpp
      Tpetra: Update Tpetra_Details_DeepCopyTeuchosTimerInjection.cpp
      Update version number
      Disable flaky test: SEACASAprepro_lib_aprepro_lib_array_test
      Update deprecated-off configs
      APREPRO: Need to update this so test works
      KokkosKernels: patch in PR 1927
      Snapshot of kokkos-kernels.git from commit 18bcdaf3fba87b5e483bd6919cdd79be8eb054bf
      TRILFRAME-500-update FEI deprecated package
      MueLu: Cuda fix
      trilinos-develop-14.4-branch-update
      ...
    jgfouca committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    f96116e View commit details
    Browse the repository at this point in the history
  12. Remove more debugging stuff

    jgfouca committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    9b20780 View commit details
    Browse the repository at this point in the history
  13. Panzer MiniEM: Remove old code

    cgcgcg committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    fb6e40d View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2023

  1. Skip PR merge when using --kokkos-develop flag.

    Note that for the foreseable future, this mode and flag will only be
    used during nightly builds and not in PR.
    srbdev committed Aug 11, 2023
    Configuration menu
    Copy the full SHA
    da6bb4b View commit details
    Browse the repository at this point in the history
  2. Merge pull request trilinos#12125 from cgcgcg/miniEMfix

    Panzer MiniEM: Remove old code
    cgcgcg authored Aug 11, 2023
    Configuration menu
    Copy the full SHA
    81cd5c6 View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2023

  1. Merge pull request trilinos#12113 from trilinos/csiefer-5777259

    Tpetra: Adding initial memory HWM performance test
    csiefer2 authored Aug 14, 2023
    Configuration menu
    Copy the full SHA
    96c8eaf View commit details
    Browse the repository at this point in the history
  2. Panzer q2 mesh support (trilinos#11364)

    Panzer :: Some steps to enable Q2 mesh support. Can read in a Q2 mesh and run w/ second order nodal elements.
    reuterb authored Aug 14, 2023
    Configuration menu
    Copy the full SHA
    c93a317 View commit details
    Browse the repository at this point in the history
  3. changed execution space for Kokkos views, added selection for serial …

    …vs CUDA on lowCommMakeColMap
    Kevin Xiaohan Ren committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    49a293e View commit details
    Browse the repository at this point in the history
  4. removing extraneous files from lowCommunicationMakeColMap PR

    Kevin Xiaohan Ren committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    97d04a3 View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2023

  1. Configuration menu
    Copy the full SHA
    11f75b0 View commit details
    Browse the repository at this point in the history
  2. Merge pull request trilinos#12119 from masterleinad/fix_sycl_compilation

    Ifpack2, KokkosKernels: Fix compilation with SYCL
    lucbv authored Aug 15, 2023
    Configuration menu
    Copy the full SHA
    24896c7 View commit details
    Browse the repository at this point in the history
  3. Correct spec inheritance for CXX20 build

    User Support Ticket(s) or Story Referenced: N/A
    sebrowne committed Aug 15, 2023
    Configuration menu
    Copy the full SHA
    a91487c View commit details
    Browse the repository at this point in the history
  4. Reverted execution space changes on views

    Kevin Xiaohan Ren committed Aug 15, 2023
    Configuration menu
    Copy the full SHA
    4873c0a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fc2a10f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    5272592 View commit details
    Browse the repository at this point in the history
  7. Merge Pull Request trilinos#12129 from sebrowne/Trilinos/fix_cxx20_build

    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: Framework: Correct spec inheritance for CXX20 build
    PR Author: sebrowne
    trilinos-autotester authored Aug 15, 2023
    Configuration menu
    Copy the full SHA
    2eb2e77 View commit details
    Browse the repository at this point in the history
  8. added range policy to parallel loops

    Kevin Xiaohan Ren committed Aug 15, 2023
    Configuration menu
    Copy the full SHA
    f1e7afb View commit details
    Browse the repository at this point in the history
  9. Merge pull request trilinos#12112 from masterleinad/disable_onedpl_su…

    …pport
    
    Kokkos: Disable default oneDPL support
    ndellingwood authored Aug 15, 2023
    Configuration menu
    Copy the full SHA
    6a010be View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2023

  1. Merge Pull Request trilinos#12126 from srbdev/Trilinos/TRILFRAME-571-…

    …kokkos-develop
    
    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: Add option to test against develop for kokkos and kokkos-kernels packages
    PR Author: srbdev
    trilinos-autotester authored Aug 16, 2023
    Configuration menu
    Copy the full SHA
    f51a277 View commit details
    Browse the repository at this point in the history
  2. Merge pull request trilinos#12128 from masterleinad/tpetra_sycl_devic…

    …e_usm_space_wrapper_node
    
    Tpetra: Use Kokkos::Experimental::SYCLDeviceUSMSpace for KokkosSYCLWrapperNode
    lucbv authored Aug 16, 2023
    Configuration menu
    Copy the full SHA
    2f371c4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    156aa8e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c491d63 View commit details
    Browse the repository at this point in the history
  5. Merge pull request trilinos#12004 from brian-kelley/PatchKK1889

    KokkosKernels: Patch to fix 11926
    brian-kelley authored Aug 16, 2023
    Configuration menu
    Copy the full SHA
    d454829 View commit details
    Browse the repository at this point in the history
  6. Ifpack2: Make the tolerance a little looser

    Hopefully this should keep this test from randomly failing in PR testing
    csiefer2 authored Aug 16, 2023
    Configuration menu
    Copy the full SHA
    1eaf322 View commit details
    Browse the repository at this point in the history
  7. added some new comments about lowCommMakeColMap serial vs device

    Kevin Xiaohan Ren committed Aug 16, 2023
    Configuration menu
    Copy the full SHA
    eb9a54b View commit details
    Browse the repository at this point in the history
  8. Merge Pull Request trilinos#12131 from trilinos/Trilinos/csiefer-5272592

    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: Tpetra: Fixing deprecated header issue
    PR Author: csiefer2
    trilinos-autotester authored Aug 16, 2023
    Configuration menu
    Copy the full SHA
    7106fde View commit details
    Browse the repository at this point in the history
  9. Merge Pull Request trilinos#12134 from trilinos/Trilinos/csiefer2-sto…

    …p-random-failures
    
    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: Ifpack2: Make the tolerance a little looser
    PR Author: csiefer2
    trilinos-autotester authored Aug 16, 2023
    Configuration menu
    Copy the full SHA
    455b077 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    e807efc View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    890de6b View commit details
    Browse the repository at this point in the history
  12. Remove deprecated package: Domi

    Caleb Leandre Jackson committed Aug 16, 2023
    Configuration menu
    Copy the full SHA
    f9236ba View commit details
    Browse the repository at this point in the history
  13. Remove deprecated package: Moertel

    Caleb Leandre Jackson committed Aug 16, 2023
    Configuration menu
    Copy the full SHA
    5579e4b View commit details
    Browse the repository at this point in the history
  14. Remove deprecated package: Rythmos

    Caleb Leandre Jackson committed Aug 16, 2023
    Configuration menu
    Copy the full SHA
    65ea4e4 View commit details
    Browse the repository at this point in the history
  15. Remove deprecated package: Komplex

    Caleb Leandre Jackson committed Aug 16, 2023
    Configuration menu
    Copy the full SHA
    56151d3 View commit details
    Browse the repository at this point in the history
  16. Remove deprecated package: TriKota

    Caleb Leandre Jackson committed Aug 16, 2023
    Configuration menu
    Copy the full SHA
    cdc9bc5 View commit details
    Browse the repository at this point in the history
  17. Remove deprecated package: Pike

    Caleb Leandre Jackson committed Aug 16, 2023
    Configuration menu
    Copy the full SHA
    403e25e View commit details
    Browse the repository at this point in the history
  18. Remove deprecated package: FEI

    Caleb Leandre Jackson committed Aug 16, 2023
    Configuration menu
    Copy the full SHA
    fbef517 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2023

  1. Configuration menu
    Copy the full SHA
    1a125f3 View commit details
    Browse the repository at this point in the history
  2. Merge Pull Request trilinos#12133 from trilinos/Trilinos/csiefer-c491d63

    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: Tpetra: Fixing memory test so it actually runs
    PR Author: csiefer2
    trilinos-autotester authored Aug 17, 2023
    Configuration menu
    Copy the full SHA
    3139094 View commit details
    Browse the repository at this point in the history
  3. Merge Pull Request trilinos#12137 from trilinos/Trilinos/csiefer-890de6b

    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: MueLu/Tpetra: More deep copy counting cleanup
    PR Author: csiefer2
    trilinos-autotester authored Aug 17, 2023
    Configuration menu
    Copy the full SHA
    e9cbc3c View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2023

  1. Intrepid2: add H(vol) hierarchical pyramids (trilinos#12136)

    ## Motivation
    This PR adds an arbitrary-order, hierarchical basis for H(vol) on the pyramid.  This follows trilinos#12079, which added hierarchical bases for H(grad) on the pyramid.
    
    Additionally, this PR adds "sub-basis inclusion" tests for both H(vol) and H(grad) on the pyramid, and orientation tests against H(grad) on the pyramid.
    
    ## Testing
    This PR includes "sub-basis inclusion" tests for both H(vol) and H(grad) on the pyramid, and orientation tests against H(grad) on the pyramid.  It also adds a simple basis cardinality test for the new H(vol) basis.
    
    Additionally, I have done offline comparison with the ESEAS implementation of this basis, testing up to 10th order, with excellent agreement.  I hope to include these tests with Intrepid2 soon; this has been prevented previously by the license for ESEAS, but they are changing the license to one that will allow inclusion.
    CamelliaDPG authored Aug 18, 2023
    Configuration menu
    Copy the full SHA
    f367286 View commit details
    Browse the repository at this point in the history
  2. ifpack2: fix ambiguous MDF unit test (trilinos#12078)

    * ifpack2: fix ambigous MDF unit test
    
    * Kokkos-Kernels: cherry pick of fixes needed for Ifpack2 MDF
    tmranse authored Aug 18, 2023
    Configuration menu
    Copy the full SHA
    01e8b1b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    929ead4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c21a463 View commit details
    Browse the repository at this point in the history
  5. Merge pull request trilinos#12110 from kxren1/kokkos_colind_LID

    Tpetra: created Kokkos version for lowCommunicationMakeColMapAndReindex function
    brian-kelley authored Aug 18, 2023
    Configuration menu
    Copy the full SHA
    0d8705b View commit details
    Browse the repository at this point in the history
  6. MueLu: Types

    csiefer2 authored Aug 18, 2023
    Configuration menu
    Copy the full SHA
    12c6266 View commit details
    Browse the repository at this point in the history
  7. MueLu: Removing H2D/D2H transfers in CoordinatesTransferFactory (at l…

    …east for scalar pdes)
    csiefer2 committed Aug 18, 2023
    Configuration menu
    Copy the full SHA
    49dc4fd View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    9e5cfbd View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    cd2d3ed View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    fbcf174 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    975748c View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    f364b8d View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    0020715 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    103ff35 View commit details
    Browse the repository at this point in the history
  15. Merge pull request trilinos#12099 from mikethebos/feature/mpi-advance…

    …-gpu-tests
    
    Tpetra: Kokkos MPI Advance unit tests
    csiefer2 authored Aug 18, 2023
    Configuration menu
    Copy the full SHA
    5478887 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    8179fdb View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    14137e1 View commit details
    Browse the repository at this point in the history
  18. MueLu: Phase2b support

    csiefer2 committed Aug 18, 2023
    Configuration menu
    Copy the full SHA
    a9cf800 View commit details
    Browse the repository at this point in the history
  19. Merge Pull Request trilinos#12146 from trilinos/Trilinos/csiefer-49dc4fd

    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: MueLu: Removing H2D/D2H transfers in CoordinatesTransferFactory for Scalar PDEs
    PR Author: csiefer2
    trilinos-autotester authored Aug 18, 2023
    Configuration menu
    Copy the full SHA
    eece9b3 View commit details
    Browse the repository at this point in the history
  20. Merge Pull Request trilinos#12103 from cwpearson/Trilinos/feature/tpe…

    …tra-use-kokkos-kernels-bsr-spmv
    
    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: Tpetra: use kokkos kernels BsrMatrix spmv
    PR Author: cwpearson
    trilinos-autotester authored Aug 18, 2023
    Configuration menu
    Copy the full SHA
    6917da1 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2023

  1. Tpetra: fix trilinos#12148 - avoid CrsGraph rowptrs D->H

    - In packed storage case, just use the extent of indices for
      getLocalNumEntries()
    - In allocateIndices(), use the return value of computeOffsetsFromCounts
      functions instead
    
    Both of these are better alternatives to actually reading an entry from
    packed rowptrs on host.
    
    And fix some indentation.
    brian-kelley committed Aug 19, 2023
    Configuration menu
    Copy the full SHA
    874d889 View commit details
    Browse the repository at this point in the history
  2. Tpetra: fix bug in computeOffsetsFromConstantCounts

    Set 'total' as the final value of prefix sum, so that return value is
    correct
    brian-kelley committed Aug 19, 2023
    Configuration menu
    Copy the full SHA
    b3be8bf View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2023

  1. asdf

    brian-kelley committed Aug 21, 2023
    Configuration menu
    Copy the full SHA
    9de9caa View commit details
    Browse the repository at this point in the history
  2. asdf3

    brian-kelley committed Aug 21, 2023
    Configuration menu
    Copy the full SHA
    367efc5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1c8793e View commit details
    Browse the repository at this point in the history
  4. ditto

    brian-kelley committed Aug 21, 2023
    Configuration menu
    Copy the full SHA
    740ca83 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b4f3ecb View commit details
    Browse the repository at this point in the history
  6. Fix throw message

    brian-kelley committed Aug 21, 2023
    Configuration menu
    Copy the full SHA
    5aaf023 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    c5edaf2 View commit details
    Browse the repository at this point in the history
  8. Tpetra: avoid triggering lazy copy

    Implement getLocalAllocationSize() by checking the lengths of
    allocated indices views, not by reading from host rowptrs.
    brian-kelley committed Aug 21, 2023
    Configuration menu
    Copy the full SHA
    1810085 View commit details
    Browse the repository at this point in the history
  9. Tpetra: in CrsMatrix, don't read rowptrs directly

    In verbose and debug paths, don't read from graphs' host rowptrs
    directly - these are created lazily by
    getRowPtrsHost[Packed|Unpacked](),
    so they might not exist at first.
    brian-kelley committed Aug 21, 2023
    Configuration menu
    Copy the full SHA
    99bda64 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    f3041a3 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    4fa1f41 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    cce78c1 View commit details
    Browse the repository at this point in the history
  13. Fix failing TrilinosFrameworkTests

    Caleb Leandre Jackson committed Aug 21, 2023
    Configuration menu
    Copy the full SHA
    735a746 View commit details
    Browse the repository at this point in the history
  14. Merge Pull Request trilinos#12152 from srbdev/Trilinos/TRILFRAME-571-…

    …kokkos-develop
    
    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: TRILFRAME-571 hotfix
    PR Author: srbdev
    trilinos-autotester authored Aug 21, 2023
    Configuration menu
    Copy the full SHA
    acb537b View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2023

  1. Fix 6 failing TrilinosFrameworkTests

    Caleb Leandre Jackson committed Aug 22, 2023
    Configuration menu
    Copy the full SHA
    9d63898 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0e452c8 View commit details
    Browse the repository at this point in the history
  3. Merge Pull Request trilinos#12158 from uliegecsm/Trilinos/stokhos_inf…

    …_in_compare_vecs
    
    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: Stokhos: fixing issue trilinos#12157
    PR Author: maartenarnst
    trilinos-autotester authored Aug 22, 2023
    Configuration menu
    Copy the full SHA
    6104bc5 View commit details
    Browse the repository at this point in the history
  4. Merge pull request trilinos#12145 from NexGenAnalytics/zoltan2-fix-ma…

    …trix-adapter
    
    Zoltan2: Fix CUDA UVM=ON issues with Zoltan2_TpetraRowMatrixAdapter
    ndellingwood authored Aug 22, 2023
    Configuration menu
    Copy the full SHA
    67389e8 View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2023

  1. Merge pull request trilinos#12149 from NexGenAnalytics/github-action-…

    …for-mpi-comm-world-check
    
    Framework: Create GitHub action check for detecting addition of `MPI_COMM_WORLD`
    stmcgovern authored Aug 23, 2023
    Configuration menu
    Copy the full SHA
    5ff66c8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9b3c476 View commit details
    Browse the repository at this point in the history
  3. Merge Pull Request trilinos#12159 from srbdev/Trilinos/TRILFRAME-571-…

    …kokkos-develop
    
    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: Fix to call SetKokkosDevelop.sh correctly
    PR Author: srbdev
    trilinos-autotester authored Aug 23, 2023
    Configuration menu
    Copy the full SHA
    87baed7 View commit details
    Browse the repository at this point in the history
  4. Delete probited-strings.yml

    sebrowne authored Aug 23, 2023
    Configuration menu
    Copy the full SHA
    7d218f3 View commit details
    Browse the repository at this point in the history
  5. Delete mygoodfile

    sebrowne authored Aug 23, 2023
    Configuration menu
    Copy the full SHA
    9ffd64d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c7d6098 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    31fd025 View commit details
    Browse the repository at this point in the history
  8. Delete mybadfile.c

    sebrowne authored Aug 23, 2023
    Configuration menu
    Copy the full SHA
    c764db7 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    561cb2e View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    7422e23 View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2023

  1. Configuration menu
    Copy the full SHA
    63a954c View commit details
    Browse the repository at this point in the history
  2. Merge Pull Request trilinos#12156 from jgfouca/Trilinos/jgfouca/shylu…

    …_frosh_fix
    
    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: Fix warnings coming from this header.
    PR Author: jgfouca
    trilinos-autotester authored Aug 24, 2023
    Configuration menu
    Copy the full SHA
    b26ef88 View commit details
    Browse the repository at this point in the history
  3. Merge Pull Request trilinos#12162 from GrahamBenHarper/Trilinos/muelu…

    …_remove_warnings7
    
    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: MueLu: cleanup errors
    PR Author: GrahamBenHarper
    trilinos-autotester authored Aug 24, 2023
    Configuration menu
    Copy the full SHA
    db9c884 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    29b1c00 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8d7e5d7 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    cac1c54 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    3ca2cdd View commit details
    Browse the repository at this point in the history
  8. Add SimpleTesting directory

    Caleb Leandre Jackson authored and cabejackson committed Aug 24, 2023
    Configuration menu
    Copy the full SHA
    fc79eff View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    f808bbd View commit details
    Browse the repository at this point in the history
  10. Zoltan 2: Fix errors

    cwschilly committed Aug 24, 2023
    Configuration menu
    Copy the full SHA
    67e84e9 View commit details
    Browse the repository at this point in the history
  11. Zoltan 2: fix warnings

    cwschilly committed Aug 24, 2023
    Configuration menu
    Copy the full SHA
    29a929c View commit details
    Browse the repository at this point in the history
  12. Zoltan2: clean-up code

    cwschilly committed Aug 24, 2023
    Configuration menu
    Copy the full SHA
    88783be View commit details
    Browse the repository at this point in the history
  13. Zoltan2: add newlines

    cwschilly committed Aug 24, 2023
    Configuration menu
    Copy the full SHA
    4f2e548 View commit details
    Browse the repository at this point in the history
  14. Zoltan2: fix failing tests

    cwschilly committed Aug 24, 2023
    Configuration menu
    Copy the full SHA
    914eaa7 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    1d500a6 View commit details
    Browse the repository at this point in the history
  16. Merge Pull Request trilinos#12124 from jgfouca/Trilinos/jgfouca/fasti…

    …lu_blockcrs
    
    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: Shylu: allow fastilu to work with block CRS matrices
    PR Author: jgfouca
    trilinos-autotester authored Aug 24, 2023
    Configuration menu
    Copy the full SHA
    4a119a3 View commit details
    Browse the repository at this point in the history
  17. Intrepid2: Removing Experimental namespace used for projections (part…

    …1) (trilinos#12141)
    
    * Intepid2: Minor modifications to CellTools
    
    We now allow to map ref cells in a physical space that is higher dimensional
    (e.g. quadrilateral in a 3d physical space)
    We added a batched version of matToReferenceSubcell, where the subcell ordinal is a vector.
    This is useful when working on a batch of sides
    
    * Intrepid2: initial work to remove Experimental namespace used for projections
    
    We introduce the cmake option Intrepid2_KEEP_EXPERIMENTAL_NAMESPACE. When set,
    we use the legacy namespace, otherwise the Experimental namespace is removed. The option is ON by default.
    Some of the legacy functions are not compiled when the flag is turned off
    
    * Panzer: work to remove the Intrepid2::Experimental namespace used for projections
    
    Also some improvements to test_fe_assembly and test_fe_projection code
    mperego authored Aug 24, 2023
    Configuration menu
    Copy the full SHA
    e8c83d8 View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2023

  1. Configuration menu
    Copy the full SHA
    f8b1cd0 View commit details
    Browse the repository at this point in the history
  2. Merge pull request trilinos#12138 from trilinos/TRILFRAME-501-Remove-…

    …Deprecated-Packages
    
    Framework: Trilframe 501 remove deprecated packages
    cabejackson authored Aug 25, 2023
    Configuration menu
    Copy the full SHA
    76163c2 View commit details
    Browse the repository at this point in the history
  3. Merge Pull Request trilinos#12161 from japlews/Trilinos/japlews/intre…

    …pid2-unused-but-set-subcells
    
    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: Intrepid2: remove unused but set variables causing warnings in Sierra
    PR Author: japlews
    trilinos-autotester authored Aug 25, 2023
    Configuration menu
    Copy the full SHA
    17532be View commit details
    Browse the repository at this point in the history
  4. Merge Pull Request trilinos#12168 from NexGenAnalytics/Trilinos/nga-f…

    …y23-pr-candidate-10
    
    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: Adelus: Don't use hardcoded `MPI_COMM_WORLD`
    PR Author: JacobDomagala
    trilinos-autotester authored Aug 25, 2023
    Configuration menu
    Copy the full SHA
    9f2a806 View commit details
    Browse the repository at this point in the history
  5. Merge pull request trilinos#12166 from NexGenAnalytics/nga-fy23-pr-ca…

    …ndidate-8
    
    Anasazi: Add global MPI communicator that can be used instead of hardcoded `MPI_COMM_WORLD`
    hkthorn authored Aug 25, 2023
    Configuration menu
    Copy the full SHA
    8db46da View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    868dcf2 View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2023

  1. Configuration menu
    Copy the full SHA
    68e24a7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cbd3ad4 View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2023

  1. Add inline to timing functions

    vqd8a committed Aug 27, 2023
    Configuration menu
    Copy the full SHA
    0ea2fa2 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2023

  1. Configuration menu
    Copy the full SHA
    6cb1771 View commit details
    Browse the repository at this point in the history
  2. Append Adelus_global_comm.hpp

    vqd8a committed Aug 28, 2023
    Configuration menu
    Copy the full SHA
    23b4444 View commit details
    Browse the repository at this point in the history
  3. Merge Pull Request trilinos#12171 from trilinos/Trilinos/fix-rbgen-co…

    …mpile
    
    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: b'Fixing compiling of RBGen '
    PR Author: ikalash
    trilinos-autotester authored Aug 28, 2023
    Configuration menu
    Copy the full SHA
    e22b425 View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2023

  1. Configuration menu
    Copy the full SHA
    330cd6a View commit details
    Browse the repository at this point in the history
  2. Update comments

    cabejackson committed Aug 29, 2023
    Configuration menu
    Copy the full SHA
    48ccff2 View commit details
    Browse the repository at this point in the history
  3. Update path name

    cabejackson committed Aug 29, 2023
    Configuration menu
    Copy the full SHA
    9986f26 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a49c36e View commit details
    Browse the repository at this point in the history
  5. Merge Pull Request trilinos#12172 from vqd8a/Trilinos/adelus-add-inline

    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: b'Adelus: Add inline to get_seconds and showtime functions'
    PR Author: vqd8a
    trilinos-autotester authored Aug 29, 2023
    Configuration menu
    Copy the full SHA
    3ec7025 View commit details
    Browse the repository at this point in the history
  6. Merge Pull Request trilinos#12173 from vqd8a/Trilinos/adelus-include-…

    …Adelus_global_comm
    
    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: b'Adelus: Include Adelus_global_comm.hpp in Trilino build'
    PR Author: vqd8a
    trilinos-autotester authored Aug 29, 2023
    Configuration menu
    Copy the full SHA
    510f3a8 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2023

  1. Merge Pull Request trilinos#12147 from trilinos/Trilinos/csiefer-a9cf800

    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: b'MueLu: Adding ML compatibility support for Phase2b aggregation'
    PR Author: csiefer2
    trilinos-autotester authored Aug 30, 2023
    Configuration menu
    Copy the full SHA
    7a08323 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5465ab9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4691a6c View commit details
    Browse the repository at this point in the history
  4. Merge pull request trilinos#12177 from NexGenAnalytics/anasazi-fix-mi…

    …ssing-header
    
    Anasazi: Add AnasaziGlobalComm.hpp to CMake source files
    hkthorn authored Aug 30, 2023
    Configuration menu
    Copy the full SHA
    60451ce View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f583086 View commit details
    Browse the repository at this point in the history
  6. Merge pull request trilinos#12151 from brian-kelley/Fix12148

    Tpetra: fix trilinos#12148 - avoid CrsGraph rowptrs D->H
    brian-kelley authored Aug 30, 2023
    Configuration menu
    Copy the full SHA
    94110e5 View commit details
    Browse the repository at this point in the history
  7. Merge Pull Request trilinos#12144 from trilinos/Trilinos/csiefer-929ead4

    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: b'MueLu: Improved ML compatibility for Phase 2a aggregation'
    PR Author: csiefer2
    trilinos-autotester authored Aug 30, 2023
    Configuration menu
    Copy the full SHA
    d163e18 View commit details
    Browse the repository at this point in the history
  8. Ifpack2: Adds missing cmake logic to address test dependency on Xpetra

     The Ifpack2_UnitTestSingleProcessILUT.cpp test has a required dependency
     on Xpetra.  There is an optional dependency on Xpetra for the library,
     but if someone uses a configuration like this:
    
     cmake \
     -DCMAKE_C_COMPILER=mpicc \
     -DCMAKE_CXX_COMPILER=mpicxx \
     -DCMAKE_Fortran_COMPILER=mpif77 \
     -DCMAKE_CXX_FLAGS="-O3 -fPIC" \
     -DCMAKE_C_FLAGS="-O3 -fPIC" \
     -D Trilinos_ENABLE_Tpetra:BOOL=ON \
     -D Trilinos_ENABLE_Belos:BOOL=ON \
     -D Trilinos_ENABLE_Ifpack2:BOOL=ON \
     -D Trilinos_ENABLE_ALL_OPTIONAL_PACKAGES:BOOL=OFF \
     -D Teuchos_ENABLE_COMPLEX:BOOL=OFF \
     -D Trilinos_ENABLE_COMPLEX:BOOL=OFF \
     -D Trilinos_ENABLE_OpenMP:BOOL=OFF \
     -D CMAKE_VERBOSE_MAKEFILE:BOOL=ON \
     -D Trilinos_ENABLE_EXAMPLES:BOOL=ON \
     -D Trilinos_ENABLE_TESTS:BOOL=ON \
     -DTPL_ENABLE_MPI:BOOL=ON \
     -DTPL_ENABLE_BLAS=ON \
     -DTPL_ENABLE_LAPACK=ON \
     ../../
    
     Then Xpetra will not be enabled since optional dependencies are off,
     yet the test will fail to build due to the absence of Xpetra.  This
     commit adds logic to the CMakeLists file to conditionally build the
     Ifpack2_UnitTestSingleProcessILUT test if Xpetra and Galeri are enabled.
     Furthermore, it removes the inclusion of Xpetra and Galeri headers in
     the Ifpack2_UnitTestILUT.cpp file, as they are not used.
    hkthorn committed Aug 30, 2023
    Configuration menu
    Copy the full SHA
    f46467a View commit details
    Browse the repository at this point in the history
  9. Merge Pull Request trilinos#12091 from NexGenAnalytics/Trilinos/nga-f…

    …y23-pr-candidate-4
    
    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: b'Zoltan2: Refactor MatrixAdapter API to use Kokkos data types'
    PR Author: cwschilly
    trilinos-autotester authored Aug 30, 2023
    Configuration menu
    Copy the full SHA
    db2fcb1 View commit details
    Browse the repository at this point in the history
  10. Merge Pull Request trilinos#12165 from NexGenAnalytics/Trilinos/nga-f…

    …y23-pr-candidate-7
    
    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: b'ROL: SplitComm allow for user to pass custom communicator'
    PR Author: JacobDomagala
    trilinos-autotester authored Aug 30, 2023
    Configuration menu
    Copy the full SHA
    949b9f0 View commit details
    Browse the repository at this point in the history
  11. Merge Pull Request trilinos#12181 from rppawlo/Trilinos/panzer-scalin…

    …g-factors
    
    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: b'Panzer: add scaling factors to the stk io closure model factory'
    PR Author: rppawlo
    trilinos-autotester authored Aug 30, 2023
    Configuration menu
    Copy the full SHA
    1ef0bf8 View commit details
    Browse the repository at this point in the history
  12. Merge Pull Request trilinos#12180 from NexGenAnalytics/Trilinos/nga-f…

    …y23-pr-candidate-12
    
    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: b'NOX: Remove use of hardcoded MPI_COMM_WORLD from NOX package'
    PR Author: thearusable
    trilinos-autotester authored Aug 30, 2023
    Configuration menu
    Copy the full SHA
    090741e View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    72d082c View commit details
    Browse the repository at this point in the history
  14. Fix typo

    cabejackson committed Aug 30, 2023
    Configuration menu
    Copy the full SHA
    ad15a5c View commit details
    Browse the repository at this point in the history
  15. Merge Pull Request trilinos#12182 from hkthorn/Trilinos/develop

    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: b'Ifpack2:  Adds missing cmake logic to address test dependency on Xpetra'
    PR Author: hkthorn
    trilinos-autotester authored Aug 30, 2023
    Configuration menu
    Copy the full SHA
    e764653 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2023

  1. Update per PR review

    srbdev committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    0e4cfcb View commit details
    Browse the repository at this point in the history
  2. Revert "Update per PR review"

    This reverts commit 0e4cfcb.
    srbdev committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    1eb9d92 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ccf7b5d View commit details
    Browse the repository at this point in the history
  4. Merge Pull Request trilinos#12111 from trilinos/Trilinos/sebrowne-pat…

    …ch-3
    
    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: b'Framework: Prohibit MPI_COMM_WORLD usages'
    PR Author: sebrowne
    trilinos-autotester authored Aug 31, 2023
    Configuration menu
    Copy the full SHA
    67e9032 View commit details
    Browse the repository at this point in the history
  5. Merge Pull Request trilinos#12185 from trilinos/Trilinos/csiefer-ccf7b5d

    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: b'MueLu: Adding finer grained profiling regions for H2D/D2H diagnosis'
    PR Author: csiefer2
    trilinos-autotester authored Aug 31, 2023
    Configuration menu
    Copy the full SHA
    004eee5 View commit details
    Browse the repository at this point in the history
  6. Stokhos: update for new KokkosSparse::spmv overloads

    KokkosKernels 4.2 will add some new overloads for spmv that accept
    execution space instances. The Stokhos specializations for spmv,
    where Scalar is PCE or MPVector, won't have them yet.
    So make sure that the existing Stokhos specializations still work by
    calling a Stokhos implementation (and not a KokkosKernels implementation).
    brian-kelley committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    db1f57b View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2023

  1. Merge pull request trilinos#12190 from brian-kelley/FixKK1959

    Stokhos: update for new KokkosSparse::spmv overloads
    etphipp authored Sep 1, 2023
    Configuration menu
    Copy the full SHA
    73dcc21 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2023

  1. Configuration menu
    Copy the full SHA
    523a29e View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2023

  1. Merge Pull Request trilinos#12174 from srbdev/Trilinos/TRILFRAME-577-…

    …epetra-disabled-cuda-builds
    
    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: b'Disable Epetra stack in CUDA PR builds'
    PR Author: srbdev
    trilinos-autotester authored Sep 5, 2023
    Configuration menu
    Copy the full SHA
    32fbd30 View commit details
    Browse the repository at this point in the history
  2. Merge Pull Request trilinos#12202 from mayrmt/Trilinos/nox-sreen-output

    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: b'NOX: Fix font and formatting in screen output'
    PR Author: mayrmt
    trilinos-autotester authored Sep 5, 2023
    Configuration menu
    Copy the full SHA
    d3953b4 View commit details
    Browse the repository at this point in the history
  3. Merge pull request trilinos#12169 from trilinos/TRILFRAME-592-Add-Sim…

    …pleTesting
    
    Framework: Add SimpleTesting to Trilinos
    cabejackson authored Sep 5, 2023
    Configuration menu
    Copy the full SHA
    989a316 View commit details
    Browse the repository at this point in the history
  4. Stokhos: fix KokkosKernels trilinos#1959

    PR trilinos#12190 actually failed to fix KokkosSparse::spmv for Sacado scalar
    types, when building with Kokkos/KokkosKernels develop branch.
    
    This actually fixes that issue (tested with develop and master KokkosKernels)
    and is quite a bit cleaner (though it uses version macros that can be
    taken out for the 4.2 release).
    brian-kelley committed Sep 5, 2023
    Configuration menu
    Copy the full SHA
    eab6d5d View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2023

  1. Merge Pull Request trilinos#12207 from brian-kelley/Trilinos/FixKK1959

    Automatically Merged using Trilinos Pull Request AutoTester
    PR Title: b'Stokhos: fix KokkosKernels trilinos#1959'
    PR Author: brian-kelley
    trilinos-autotester authored Sep 6, 2023
    Configuration menu
    Copy the full SHA
    5382f31 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0593ea3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    bdbd75f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    009dce3 View commit details
    Browse the repository at this point in the history
  5. Zoltan2: Fix CUDA issues

    JacobDomagala authored and cwschilly committed Sep 6, 2023
    Configuration menu
    Copy the full SHA
    95fceac View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    80337ab View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2023

  1. * #128: set up GPU CI pipelines

    * #128: specify cuda dir
    
    * #128: temporarily run GPU on every push; stop MPI builds
    
    * #128: specify correct dockerfile
    
    * #128: provide correct build/source dirs
    
    * #128: rework MPI in build script
    
    * #128: rework MPI in other gpu build script
    
    * #128: CI build script try another configuration and fix invalid path
    
    * #128: fix missing letter in path for a gpu build
    
    * #128: add newlines to end of files
    
    * #128: add spack find -p to find cuda root
    
    * #128: only run one pipeline; add cuda paths
    
    * #128: add kokkos variables
    
    * #128: add Tpetra_INST_SERIAL:BOOL=ON
    
    * #128: add CUDA root flag
    
    * #128: use correct kokkos architecture
    
    * #128: enable cusolver and cusparse
    
    * #128: emulate local build
    
    * #128: try with different docker image
    
    * #128: update cuda path
    
    * Try adding debug flag for Buildx
    
    * Tpetra: Disable cudaMemcpyAsync for Intercept.cpp
    
    * #128: lower -j
    
    * #128: use defaul kokkos architecture
    
    * #128: use fewer processes for GPU testing
    
    * 128: re-enable Kokkos_ARCH_AMPERE86
    
    * #128: add cuda sample build to CI to validate CUDA
    
    * #128: run cuda test on NGA host
    
    * #128: update jobs dependency on CI for cuda
    
    * #128: add CUD sample run
    
    * #128: remove command not existing in CI
    
    * #128: change cuda path
    
    * #128: try to display information about driver
    
    * #128: change bad command in CI
    
    * #128: fix command
    
    * #128: try install nvidia util in Docker container
    
    * #128: remove commands
    
    * #128: fix cuda path
    
    * #128: fix dockerfile
    
    * #128: add different cuda test images
    
    * Run container in separate step
    
    * Remove not needed code
    
    * Apply changes to Epetra=OFF
    
    * Try to build and run docker within same step
    
    * #128: remove unused old CI files
    
    * #128: check both gpu pipelines
    
    * #128: Tpetra_INST_SERIAL=ON
    
    * #128: fix workflow name
    
    * #128: rework with cuda 11.4 dockerfile
    
    * #168: try to simplify CI sheel script
    
    * #128: try simplify shell script
    
    * #128: remove librairies path for blas and lapack to check if resolved
    
    * #128: try remove Lapack and blas lib paths from cmake call
    
    * #128: try again changing path dynamically
    
    * #128: fix another path
    
    * #128: fix blas path
    
    * #128: apply working conffiguration to other build scripts
    
    * #128: restore triggering workflows on PR
    
    * #128: disable GPU build job for PR having `EpetraMPI T1` label
    
    * #128: enable GPU build only with EpetraMPI T2 and EpetraMPI T3 labels
    
    * #128: upload test log
    
    * #128: fix typo
    
    * #128: fix artifacts
    
    * #128: add junit report for tests
    
    * #128: add junit reporting in CI and set
    
    * #128: fix artifact name
    
    * #128: fix artifacts missing
    
    * #128 fix extra slach char in path
    
    * #128: fix artifacts path
    
    * #128: fix path in gitbub action
    
    * #128: try mounting artifacts folder into the host runner
    
    * #128: use same logic for gpu or non-gpu pipelines
    
    * 128: Finalize pipelines (GPU on push, MPI cancellations)
    
    * 128: remove label requirements
    
    * Revert "Tpetra: Disable cudaMemcpyAsync for Intercept.cpp"
    
    This reverts commit 5db2d5d.
    
    * #128: test intercept reversion
    
    * Revert "Revert "Tpetra: Disable cudaMemcpyAsync for Intercept.cpp""
    
    This reverts commit de87a22.
    
    * #128: fix underscore
    
    * #128: run GPU pipeline on merge to fy23 develop
    
    ---------
    
    Co-authored-by: Thomas Dutheillet-Lamonthézie <[email protected]>
    Co-authored-by: Jacob Domagala <[email protected]>
    3 people committed Sep 8, 2023
    Configuration menu
    Copy the full SHA
    afd6f62 View commit details
    Browse the repository at this point in the history
  2. #165: Framework: Fix GPU Pipeline (#166)

    * #165: create default docker tag for pushes to nga-fy23-develop
    
    * #165: fix concurrency group for gpu build
    cwschilly committed Sep 8, 2023
    Configuration menu
    Copy the full SHA
    3539106 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    79333c8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f16d449 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    57a73a2 View commit details
    Browse the repository at this point in the history
  6. Zoltan2: trigger ci

    cwschilly committed Sep 8, 2023
    Configuration menu
    Copy the full SHA
    4aa2f64 View commit details
    Browse the repository at this point in the history