Skip to content

Commit

Permalink
[distributed] do not test distributed with 32-bit machines
Browse files Browse the repository at this point in the history
  • Loading branch information
pmartorell committed Apr 24, 2024
1 parent 396df80 commit d3e6079
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 1 addition & 5 deletions src/Distributed/DistributedAgFEM.jl
Original file line number Diff line number Diff line change
Expand Up @@ -404,11 +404,7 @@ function add_remote_ids(gids::PRange,remote_gids,remote_parts)
p = map(lid_to_gid,lid_to_part,partition(gids)) do l_to_g,l_to_p,p
l_to_g = collect(Int,l_to_g)
l_to_p = collect(Int32,l_to_p)
ids = LocalIndices(length(gids),part_id(p),l_to_g,l_to_p)
@show typeof(l_to_g)
@show typeof(local_to_global(ids))
@show typeof(ghost_to_global(ids))
ids
LocalIndices(length(gids),part_id(p),l_to_g,l_to_p)
end
PRange(p)
end
Expand Down
5 changes: 4 additions & 1 deletion test/DistributedTests/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
module DistributedTests

include("sequential/runtests.jl")
if Int === Int64
include("sequential/runtests.jl")
include("mpi/runtests.jl")
end

end # module

0 comments on commit d3e6079

Please sign in to comment.