Skip to content

Commit

Permalink
[distributed] Int bug in x86 test
Browse files Browse the repository at this point in the history
  • Loading branch information
pmartorell committed Apr 16, 2024
1 parent 03931d9 commit d43b730
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Distributed/DistributedAgFEM.jl
Original file line number Diff line number Diff line change
Expand Up @@ -402,8 +402,8 @@ function add_remote_ids(gids::PRange,remote_gids,remote_parts)
lid_to_gid = map(vcat,local_to_global(gids),new_gids)
lid_to_part = map(vcat,local_to_owner(gids),new_parts)
p = map(lid_to_gid,lid_to_part,partition(gids)) do l_to_g,l_to_p,p
l_to_g = collect(Int64,l_to_g)
l_to_p = collect(Int64,l_to_p)
l_to_g = collect(Int,l_to_g)
l_to_p = collect(Int,l_to_p)
LocalIndices(length(gids),part_id(p),l_to_g,l_to_p)
end
PRange(p)
Expand Down

0 comments on commit d43b730

Please sign in to comment.