Skip to content

Commit

Permalink
Merge pull request JuliaLang#10321 from amitmurthy/amitm/ptest_lower
Browse files Browse the repository at this point in the history
reduce memory footprint of large array parallel send test
  • Loading branch information
amitmurthy committed Feb 25, 2015
2 parents 5593a5d + 5af366c commit 897395b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel.jl
Original file line number Diff line number Diff line change
Expand Up @@ -217,9 +217,9 @@ num_small_requests = 10000
# test parallel sends of large arrays from multiple tasks to the same remote worker
ntasks = 10
rr_list = [RemoteRef() for x in 1:ntasks]
a=ones(2*10^5);
for rr in rr_list
@async let rr=rr
a=ones(10^6);
try
for i in 1:10
@test a == remotecall_fetch(id_other, (x)->x, a)
Expand Down

0 comments on commit 897395b

Please sign in to comment.