Skip to content

Commit 26c8d85

Browse files
Sacha0tkelman
authored andcommitted
Deprecate two-argument map! and asyncmap!. (#19721)
In anticipation of changing map! and asyncmap!'s semantics such that they are consistent with map! and asyncmap! methods accepting more than two arguments, deprecate two-argument map! and asyncmap!.
1 parent 02e9376 commit 26c8d85

12 files changed

+28
-38
lines changed

base/abstractarray.jl

-6
Original file line numberDiff line numberDiff line change
@@ -1798,12 +1798,6 @@ promote_eltype_op(op, A, B, C, D...) = (@_inline_meta; promote_eltype_op(op, elt
17981798

17991799
## 1 argument
18001800

1801-
"""
1802-
map!(function, collection)
1803-
1804-
In-place version of [`map`](@ref).
1805-
"""
1806-
map!{F}(f::F, A::AbstractArray) = map!(f, A, A)
18071801
function map!{F}(f::F, dest::AbstractArray, A::AbstractArray)
18081802
for (i,j) in zip(eachindex(dest),eachindex(A))
18091803
dest[i] = f(A[j])

base/asyncmap.jl

-10
Original file line numberDiff line numberDiff line change
@@ -412,16 +412,6 @@ iteratorsize(itr::AsyncGenerator) = iteratorsize(itr.collector.enumerator)
412412
size(itr::AsyncGenerator) = size(itr.collector.enumerator)
413413
length(itr::AsyncGenerator) = length(itr.collector.enumerator)
414414

415-
"""
416-
asyncmap!(f, c; ntasks=0, batch_size=nothing)
417-
418-
In-place version of [`asyncmap()`](@ref).
419-
"""
420-
function asyncmap!(f, c; ntasks=0, batch_size=nothing)
421-
foreach(identity, AsyncCollector(f, c, c; ntasks=ntasks, batch_size=batch_size))
422-
c
423-
end
424-
425415
"""
426416
asyncmap!(f, results, c...; ntasks=0, batch_size=nothing)
427417

base/bitarray.jl

-2
Original file line numberDiff line numberDiff line change
@@ -1895,8 +1895,6 @@ map(::typeof(zero), A::BitArray) = fill!(similar(A), false)
18951895
map(::typeof(one), A::BitArray) = fill!(similar(A), true)
18961896
map(::typeof(identity), A::BitArray) = copy(A)
18971897

1898-
map!(f, A::BitArray) = map!(f, A, A)
1899-
map!(::typeof(identity), A::BitArray) = A
19001898
map!(::Union{typeof(~), typeof(!)}, dest::BitArray, A::BitArray) = bit_map!(~, dest, A)
19011899
map!(::typeof(zero), dest::BitArray, A::BitArray) = fill!(dest, false)
19021900
map!(::typeof(one), dest::BitArray, A::BitArray) = fill!(dest, true)

base/client.jl

+2-1
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,8 @@ end
317317
function load_machine_file(path::AbstractString)
318318
machines = []
319319
for line in split(readstring(path),'\n'; keep=false)
320-
s = map!(strip, split(line,'*'; keep=false))
320+
s = split(line, '*'; keep = false)
321+
map!(strip, s, s)
321322
if length(s) > 1
322323
cnt = isnumber(s[1]) ? parse(Int,s[1]) : Symbol(s[1])
323324
push!(machines,(s[2], cnt))

base/deprecated.jl

+4
Original file line numberDiff line numberDiff line change
@@ -1346,4 +1346,8 @@ function quadgk(args...; kwargs...)
13461346
end
13471347
export quadgk
13481348

1349+
# Deprecate two-argument map! (map!(f, A)) for a cycle in anticipation of semantic change
1350+
@deprecate map!{F}(f::F, A::AbstractArray) map!(f, A, A)
1351+
@deprecate asyncmap!(f, c; ntasks=0, batch_size=nothing) asyncmap!(f, c, c; ntasks=ntasks, batch_size=batch_size)
1352+
13491353
# End deprecations scheduled for 0.6

base/markdown/GitHub/table.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function parserow(stream::IO)
1111
row = split(line, r"(?<!\\)\|")
1212
length(row) == 1 && return
1313
row[1] == "" && shift!(row)
14-
map!(x -> strip(replace(x, "\\|", "|")), row)
14+
map!(x -> strip(replace(x, "\\|", "|")), row, row)
1515
row[end] == "" && pop!(row)
1616
return row
1717
end

base/sharedarray.jl

+10-7
Original file line numberDiff line numberDiff line change
@@ -451,15 +451,15 @@ function fill!(S::SharedArray, v)
451451
end
452452

453453
function rand!{T}(S::SharedArray{T})
454-
f = S->map!(x->rand(T), S.loc_subarr_1d)
454+
f = S->map!(x -> rand(T), S.loc_subarr_1d, S.loc_subarr_1d)
455455
@sync for p in procs(S)
456456
@async remotecall_wait(f, p, S)
457457
end
458458
return S
459459
end
460460

461461
function randn!(S::SharedArray)
462-
f = S->map!(x->randn(), S.loc_subarr_1d)
462+
f = S->map!(x -> randn(), S.loc_subarr_1d, S.loc_subarr_1d)
463463
@sync for p in procs(S)
464464
@async remotecall_wait(f, p, S)
465465
end
@@ -475,9 +475,9 @@ shmem_fill(v, I::Int...; kwargs...) = shmem_fill(v, I; kwargs...)
475475
# rand variant with range
476476
function shmem_rand(TR::Union{DataType, UnitRange}, dims; kwargs...)
477477
if isa(TR, UnitRange)
478-
SharedArray(Int, dims; init = S -> map!((x)->rand(TR), S.loc_subarr_1d), kwargs...)
478+
SharedArray(Int, dims; init = S -> map!(x -> rand(TR), S.loc_subarr_1d, S.loc_subarr_1d), kwargs...)
479479
else
480-
SharedArray(TR, dims; init = S -> map!((x)->rand(TR), S.loc_subarr_1d), kwargs...)
480+
SharedArray(TR, dims; init = S -> map!(x -> rand(TR), S.loc_subarr_1d, S.loc_subarr_1d), kwargs...)
481481
end
482482
end
483483
shmem_rand(TR::Union{DataType, UnitRange}, i::Int; kwargs...) = shmem_rand(TR, (i,); kwargs...)
@@ -487,7 +487,7 @@ shmem_rand(dims; kwargs...) = shmem_rand(Float64, dims; kwargs...)
487487
shmem_rand(I::Int...; kwargs...) = shmem_rand(I; kwargs...)
488488

489489
function shmem_randn(dims; kwargs...)
490-
SharedArray(Float64, dims; init = S-> map!((x)->randn(), S.loc_subarr_1d), kwargs...)
490+
SharedArray(Float64, dims; init = S-> map!(x -> randn(), S.loc_subarr_1d, S.loc_subarr_1d), kwargs...)
491491
end
492492
shmem_randn(I::Int...; kwargs...) = shmem_randn(I; kwargs...)
493493

@@ -501,11 +501,14 @@ reduce(f, S::SharedArray) =
501501
Any[ @spawnat p reduce(f, S.loc_subarr_1d) for p in procs(S) ])
502502

503503

504-
function map!(f, S::SharedArray)
504+
function map!(f, S::SharedArray, Q::SharedArray)
505+
if !(S === Q) && (procs(S) != procs(Q) || localindexes(S) != localindexes(Q))
506+
throw(ArgumentError("incompatible source and destination arguments"))
507+
end
505508
@sync for p in procs(S)
506509
@spawnat p begin
507510
for idx in localindexes(S)
508-
S.s[idx] = f(S.s[idx])
511+
S.s[idx] = f(Q.s[idx])
509512
end
510513
end
511514
end

test/abstractarray.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -646,10 +646,10 @@ function test_map(::Type{TestAbstractArray})
646646

647647
# In-place map
648648
A = Float64[1:10...]
649-
map!(x->x*x, A)
650-
@test A == map(x->x*x, Float64[1:10...])
649+
map!(x -> x*x, A, A)
650+
@test A == map(x -> x*x, Float64[1:10...])
651651
B = Float64[1:10...]
652-
Base.asyncmap!(x->x*x, B)
652+
Base.asyncmap!(x->x*x, B, B)
653653
@test A == B
654654

655655
# Map to destination collection

test/functional.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
@test isequal(map((x)->"$x"[end:end], 9:11), ["9", "0", "1"])
77
# TODO: @test map!() much more thoroughly
88
let a = [1.0, 2.0]
9-
map!(sin, a)
9+
map!(sin, a, a)
1010
@test isequal(a, sin.([1.0, 2.0]))
1111
end
1212
# map -- ranges.jl

test/parallel_exec.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ d2 = map(x->1, d)
443443
@test reduce(+, d2) == 100
444444

445445
@test reduce(+, d) == ((50*id_me) + (50*id_other))
446-
map!(x->1, d)
446+
map!(x->1, d, d)
447447
@test reduce(+, d) == 100
448448

449449
@test fill!(d, 1) == ones(10, 10)

test/sparse/sparse.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -1247,9 +1247,9 @@ end
12471247
Aposzeros = setindex!(copy(A), 2, poszerosinds)
12481248
Anegzeros = setindex!(copy(A), -2, negzerosinds)
12491249
Abothsigns = setindex!(copy(Aposzeros), -2, negzerosinds)
1250-
map!(x -> x == 2 ? 0.0 : x, Aposzeros.nzval)
1251-
map!(x -> x == -2 ? -0.0 : x, Anegzeros.nzval)
1252-
map!(x -> x == 2 ? 0.0 : x == -2 ? -0.0 : x, Abothsigns.nzval)
1250+
map!(x -> x == 2 ? 0.0 : x, Aposzeros.nzval, Aposzeros.nzval)
1251+
map!(x -> x == -2 ? -0.0 : x, Anegzeros.nzval, Anegzeros.nzval)
1252+
map!(x -> x == 2 ? 0.0 : x == -2 ? -0.0 : x, Abothsigns.nzval, Abothsigns.nzval)
12531253
for Awithzeros in (Aposzeros, Anegzeros, Abothsigns)
12541254
# Basic functionality / dropzeros!
12551255
@test dropzeros!(copy(Awithzeros)) == A

test/sparse/sparsevector.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -1015,9 +1015,9 @@ let testdims = (10, 20, 30), nzprob = 0.4, targetnumposzeros = 5, targetnumnegze
10151015
vposzeros = setindex!(copy(v), 2, poszerosinds)
10161016
vnegzeros = setindex!(copy(v), -2, negzerosinds)
10171017
vbothsigns = setindex!(copy(vposzeros), -2, negzerosinds)
1018-
map!(x -> x == 2 ? 0.0 : x, vposzeros.nzval)
1019-
map!(x -> x == -2 ? -0.0 : x, vnegzeros.nzval)
1020-
map!(x -> x == 2 ? 0.0 : x == -2 ? -0.0 : x, vbothsigns.nzval)
1018+
map!(x -> x == 2 ? 0.0 : x, vposzeros.nzval, vposzeros.nzval)
1019+
map!(x -> x == -2 ? -0.0 : x, vnegzeros.nzval, vnegzeros.nzval)
1020+
map!(x -> x == 2 ? 0.0 : x == -2 ? -0.0 : x, vbothsigns.nzval, vbothsigns.nzval)
10211021
for vwithzeros in (vposzeros, vnegzeros, vbothsigns)
10221022
# Basic functionality / dropzeros!
10231023
@test dropzeros!(copy(vwithzeros)) == v

0 commit comments

Comments
 (0)