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

3D MPI example & docs #102

Merged
merged 8 commits into from
May 9, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
remove dimensional constraint
  • Loading branch information
albert-de-montserrat committed May 9, 2024
commit c8e54938f060333c468b9c462a67eac48809eed9
4 changes: 2 additions & 2 deletions src/CellArrays/ImplicitGlobalGrid.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ function update_cell_halo!(x::Vararg{CellArray,N}) where {N}
end

@parallel_indices (I...) function copy_field!(
A::CellArray, B::AbstractArray{T,2}, ip
) where {T}
A::CellArray, B::AbstractArray, ip
)
@cell A[ip, I...] = B[I...]
return nothing
end