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

particleGridMigrate -> particleMigrate (Update to latest Cabana) #59

Merged
merged 1 commit into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,19 +45,20 @@ jobs:
uses: actions/[email protected]
with:
repository: kokkos/kokkos
ref: 3.7.02
ref: 4.1.00
path: kokkos
- name: Build kokkos
working-directory: kokkos
run: |
cmake -B build -DCMAKE_INSTALL_PREFIX=$HOME/kokkos -DKokkos_CXX_STANDARD=14 -DKokkos_ENABLE_${{ matrix.backend }}=ON
cmake -B build -DCMAKE_INSTALL_PREFIX=$HOME/kokkos -DKokkos_ENABLE_${{ matrix.backend }}=ON
cmake --build build --parallel 2
cmake --install build
- name: Checkout Cabana
uses: actions/[email protected]
with:
repository: ECP-copa/Cabana
ref: 0.6.1
# Post 0.7.0
ref: facdb9097b68b733626911d1935a946f467cf143
path: Cabana
- name: Build Cabana
working-directory: Cabana
Expand Down
4 changes: 2 additions & 2 deletions src/ExaMPM_ProblemManager.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -272,8 +272,8 @@ class ProblemManager
void communicateParticles( const int minimum_halo_width )
{
auto positions = get( Location::Particle(), Field::Position() );
Cabana::Grid::particleGridMigrate( *( _mesh->localGrid() ), positions,
_particles, minimum_halo_width );
Cabana::Grid::particleMigrate( *( _mesh->localGrid() ), positions,
_particles, minimum_halo_width );
}

private:
Expand Down
Loading