Skip to content

Commit d3e6079

Browse files
committed
[distributed] do not test distributed with 32-bit machines
1 parent 396df80 commit d3e6079

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

src/Distributed/DistributedAgFEM.jl

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -404,11 +404,7 @@ function add_remote_ids(gids::PRange,remote_gids,remote_parts)
404404
p = map(lid_to_gid,lid_to_part,partition(gids)) do l_to_g,l_to_p,p
405405
l_to_g = collect(Int,l_to_g)
406406
l_to_p = collect(Int32,l_to_p)
407-
ids = LocalIndices(length(gids),part_id(p),l_to_g,l_to_p)
408-
@show typeof(l_to_g)
409-
@show typeof(local_to_global(ids))
410-
@show typeof(ghost_to_global(ids))
411-
ids
407+
LocalIndices(length(gids),part_id(p),l_to_g,l_to_p)
412408
end
413409
PRange(p)
414410
end

test/DistributedTests/runtests.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
module DistributedTests
22

3-
include("sequential/runtests.jl")
3+
if Int === Int64
4+
include("sequential/runtests.jl")
5+
include("mpi/runtests.jl")
6+
end
47

58
end # module

0 commit comments

Comments
 (0)