Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2af1343

Browse files
committedMay 8, 2021
Add zero
1 parent dcae31f commit 2af1343

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed
 

‎Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
1212
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1313

1414
[compat]
15-
julia = "1"
1615
Primes = "0.4"
16+
julia = "1"
1717

1818
[extras]
1919
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"

‎src/darray.jl

+1
Original file line numberDiff line numberDiff line change
@@ -485,6 +485,7 @@ dzeros(::Type{T}, d1::Integer, drest::Integer...) where {T} = dzeros(T, convert(
485485
dzeros(d1::Integer, drest::Integer...) = dzeros(Float64, convert(Dims, tuple(d1, drest...)))
486486
dzeros(d::Dims) = dzeros(Float64, d)
487487

488+
Base.zero(d::DArray) = dzeros(eltype(d), size(d), procs(d))
488489

489490
"""
490491
dones(dims, ...)

‎test/darray.jl

+6
Original file line numberDiff line numberDiff line change
@@ -562,6 +562,12 @@ check_leaks()
562562
@test size(A) == (10,10)
563563
close(A)
564564
end
565+
566+
@testset "zero" begin
567+
A = dzeros(Int, 10, 10)
568+
B = zero(A)
569+
@test A == B
570+
end
565571
end
566572

567573
check_leaks()

0 commit comments

Comments
 (0)
Please sign in to comment.