Skip to content

Commit e2f2c8d

Browse files
committed
bump dep versions
1 parent 8bcd365 commit e2f2c8d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

REQUIRE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
julia 1.0
22
IndexedTables 0.10.0
33
TextParse 0.6.0
4-
MemPool 0.1.1
5-
Dagger 0.7.3
4+
MemPool 0.2.0
5+
Dagger 0.8.0
66
Glob 1.2.0
77
OnlineStats 0.17.0
88
OnlineStatsBase

src/io.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,13 +170,13 @@ Base.@deprecate ingest!(files, output; kwargs...) loadndsparse(files; output=out
170170
Load a saved `DNDSparse` from `dir` directory. Data can be saved
171171
using the `save` function.
172172
"""
173-
function load(f::AbstractString)
173+
function load(f::AbstractString; procs=workers())
174174
if isdir(f)
175175
x = open(joinpath(f, JULIADB_INDEXFILE)) do io
176176
deserialize(io)
177177
end
178178
_makerelative!(x, f)
179-
_evenlydistribute!(x, workers())
179+
_evenlydistribute!(x, procs)
180180
x
181181
elseif isfile(f)
182182
MemPool.unwrap_payload(open(deserialize, f))

0 commit comments

Comments
 (0)