Skip to content

Commit 8da42b5

Browse files
committed
merge
2 parents 2914175 + e9be01f commit 8da42b5

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

Project.toml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "DiskArrayEngine"
22
uuid = "2d4b2e14-ccd6-4284-b8b0-2378ace7c126"
33
authors = ["Fabian Gans <[email protected]> and contributors"]
4-
version = "0.2.3"
4+
version = "0.2.5"
55

66
[deps]
77
Dagger = "d58978e5-989f-55fb-8d15-ea34adc7bf54"
@@ -14,7 +14,6 @@ Ipopt = "b6b21f68-93f8-5de0-b562-5493be1d77c9"
1414
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
1515
OnlineStats = "a15396b6-48d5-5d58-9928-6d29437db91e"
1616
Optimization = "7f7a1694-90dd-40f0-9382-eb1efda571ba"
17-
OptimizationMOI = "fd9f6733-72f4-499f-8506-86b2bdd0dea1"
1817
OptimizationOptimJL = "36348300-93cb-4f02-beb5-3c3902f8871e"
1918
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
2019
Primes = "27ebfcd6-29c5-5fa9-bf4b-fb8fc14df3ae"
@@ -24,15 +23,14 @@ StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
2423
Zarr = "0a941bbe-ad1d-11e8-39d9-ab76183a1d99"
2524

2625
[compat]
27-
Dagger = "0.18"
28-
Graphs = "1"
29-
Interpolations = "0.14, 0.15"
26+
Dagger = "0.18, 0.19"
3027
DiskArrays = "0.3, 0.4.10"
28+
Graphs = "1"
29+
Interpolations = "0.14, 0.15, 0.16"
3130
Ipopt = "1"
3231
OffsetArrays = "1"
3332
OnlineStats = "1"
3433
Optimization = "3, 4"
35-
OptimizationMOI = "0.1, 0.2, 0.3, 0.4, 0.5"
3634
OptimizationOptimJL = "0.1, 0.2, 0.3, 0.4"
3735
OrderedCollections = "1"
3836
Primes = "0.5"

src/enginearrays.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,6 @@ function mapslices_engine(f,A...;dims,outchunks=nothing)
133133
nd = maximum(bcd)
134134
ia = map(A) do ar
135135
lw = map(bcdims(ar),size(ar)) do idim, sa
136-
@show idim, sa, s
137136
sloop = s[idim]
138137
if idim in dims
139138
[1:sa]
@@ -206,4 +205,4 @@ function Base.copyto!(dest::AbstractArray, bc::Base.Broadcast.Broadcasted{Engine
206205
r = mapslices_engine(bcf.f,bcf.args...,dims=(),outchunks=DiskArrays.approx_chunksize(DiskArrays.eachchunk(dest)))
207206
compute!(dest,r)
208207
dest
209-
end
208+
end

src/executionplan.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using Ipopt, Optimization
2-
import OptimizationMOI, OptimizationOptimJL
2+
import OptimizationOptimJL
33
using DiskArrays: DiskArrays, eachchunk, arraysize_from_chunksize
44
using Statistics: mean
55
using StatsBase: mode

0 commit comments

Comments
 (0)