Skip to content

Commit

Permalink
Merge pull request #27212 from Sacha0/breakless
Browse files Browse the repository at this point in the history
once more unto the decomposition breach, dear friends!
  • Loading branch information
StefanKarpinski authored May 24, 2018
2 parents 3b8b5eb + b437cc9 commit d2f19fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/distributed_exec.jl
Original file line number Diff line number Diff line change
Expand Up @@ -576,8 +576,8 @@ end
n = 10
as = [rand(4,4) for i in 1:n]
bs = deepcopy(as)
cs = collect(Distributed.pgenerate(x->(sleep(rand()*0.1); svdfact(x)), bs))
svdas = map(svdfact, as)
cs = collect(Distributed.pgenerate(x->(sleep(rand()*0.1); svd(x)), bs))
svdas = map(svd, as)
for i in 1:n
@test cs[i].U svdas[i].U
@test cs[i].S svdas[i].S
Expand Down

0 comments on commit d2f19fd

Please sign in to comment.