Skip to content

Commit f0a7ada

Browse files
authored
Remove ProxAL contructor (#46)
The constructor is implemented in ProxAL itself.
1 parent e17668d commit f0a7ada

File tree

2 files changed

+1
-24
lines changed

2 files changed

+1
-24
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ExaAdmm"
22
uuid = "4d6a948c-1075-4240-a564-361a5d4e22a2"
33
authors = ["Youngdae Kim <[email protected]>", "Kibaek Kim <[email protected]>", "Weiqi Zhang <[email protected]>", "Bowen Li <[email protected]>", "François Pacaud <[email protected]>", "Michel Schanen <[email protected]>"]
4-
version = "0.4.1"
4+
version = "0.4.2"
55

66
[deps]
77
AMDGPU = "21141c5a-9bdb-4563-92ae-f87d6854732e"

src/utils/environment.jl

-23
Original file line numberDiff line numberDiff line change
@@ -150,29 +150,6 @@ mutable struct AdmmEnv{T,TD,TI,TM} <: AbstractAdmmEnv{T,TD,TI,TM}
150150
end
151151
end
152152

153-
function ExaAdmm.AdmmEnv(opfdata, rho_va::Float64, rho_pq::Float64; use_gpu=false, ka_device=nothing, options...)
154-
if use_gpu
155-
if isa(ka_device, Nothing)
156-
T = Float64
157-
VT = CuVector{Float64}
158-
VI = CuVector{Int}
159-
MT = CuMatrix{Float64}
160-
else
161-
T = Float64
162-
VT = typeof(KAArray{Float64}(undef, 0))
163-
VI = typeof(KAArray{Int}(undef, 0))
164-
MT = typeof(KAArray{Float64}(undef, 0, 0))
165-
end
166-
else
167-
T = Float64
168-
VT = Vector{Float64}
169-
VI = Vector{Int}
170-
MT = Matrix{Float64}
171-
end
172-
env = ExaAdmm.AdmmEnv{T,VT,VI,MT}(opfdata, "proxal", rho_pq, rho_va; use_gpu=use_gpu, ka_device=ka_device, options...)
173-
return env
174-
end
175-
176153
function AdmmEnv{T,TD,TI,TM}(
177154
case::String, rho_pq::Float64, rho_va::Float64; case_format="matpower", verbose::Int=1, options...
178155
) where {T, TD<:AbstractArray{T}, TI<:AbstractArray{Int}, TM<:AbstractArray{T,2}}

0 commit comments

Comments
 (0)