JuliaParallel / DistributedArrays.jl

Distributed Arrays in Julia
Other
197 stars 35 forks source link

Include SparseArrays as a dep in Project.toml #201

Closed samtkaplan closed 5 years ago

samtkaplan commented 5 years ago

Without this change, I was seeing the following warning:

┌ Warning: Package DistributedArrays does not have SparseArrays in its dependencies:
│ - If you have DistributedArrays checked out for development and have
│   added SparseArrays as a dependency but haven't updated your primary
│   environment's manifest file, try `Pkg.resolve()`.
│ - Otherwise you may need to report an issue with DistributedArrays
└ Loading SparseArrays into DistributedArrays from project dependency, future warnings for DistributedArrays are suppressed.

I guess this is because src/mapreduce.jl does 'import SparseArrays: nnz'?