Skip to content

Commit

Permalink
Deprecate getindex(::Factorization, ::Symbol) in favor of dot overloa…
Browse files Browse the repository at this point in the history
…ding (#25184)
  • Loading branch information
andreasnoack authored and StefanKarpinski committed Dec 22, 2017
1 parent a9af178 commit f508386
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/distributed_exec.jl
Original file line number Diff line number Diff line change
Expand Up @@ -554,9 +554,9 @@ bs = deepcopy(as)
cs = collect(Distributed.pgenerate(x->(sleep(rand()*0.1); svdfact(x)), bs))
svdas = map(svdfact, as)
for i in 1:n
@test cs[i][:U] svdas[i][:U]
@test cs[i][:S] svdas[i][:S]
@test cs[i][:V] svdas[i][:V]
@test cs[i].U svdas[i].U
@test cs[i].S svdas[i].S
@test cs[i].V svdas[i].V
end

# Test that the default worker pool cycles through all workers
Expand Down

0 comments on commit f508386

Please sign in to comment.