Skip to content

Commit

Permalink
Merge pull request #110 from rafaqz/anondim
Browse files Browse the repository at this point in the history
AnonDim
  • Loading branch information
rafaqz authored Apr 2, 2020
2 parents d15635f + 7d2a5c9 commit fb7a9bd
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 19 deletions.
2 changes: 1 addition & 1 deletion docs/src/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Z
Ti
ParametricDimension
Dim
PlaceholderDim
AnonDim
@dim
```

Expand Down
2 changes: 1 addition & 1 deletion src/DimensionalData.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ using Base: tail, OneTo


export Dimension, IndependentDim, DependentDim, XDim, YDim, ZDim, TimeDim,
X, Y, Z, Ti, ParametricDimension, Dim, PlaceholderDim
X, Y, Z, Ti, ParametricDimension, Dim, AnonDim

export Selector, Between, At, Contains, Near

Expand Down
12 changes: 7 additions & 5 deletions src/array.jl
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,14 @@ struct DimensionalArray{T,N,D<:Tuple,R<:Tuple,A<:AbstractArray{T,N}} <: Abstract
refdims::R
name::String
function DimensionalArray(data::A, dims::D, refdims::R, name::String) where A <:AbstractArray{T,N} where D where R where T where N
if length.(dims) != size(data)
throw(DimensionMismatch(
"dims must have same size as data. This was not true for $dims and size $(size(data)) $(A)."
))
map(dims, size(data)) do d, s
if !(val(d) isa Colon) && length(d) != s
throw(DimensionMismatch(
"dims must have same size as data. This was not true for $dims and size $(size(data)) $(A)."
))
end
end
new{T, N, D, R, A}(data, dims, refdims, name)
new{T,N,D,R,A}(data, dims, refdims, name)
end
end
"""
Expand Down
14 changes: 8 additions & 6 deletions src/dimension.jl
Original file line number Diff line number Diff line change
Expand Up @@ -150,15 +150,17 @@ shortname(::Type{<:Dim{X}}) where X = "$X"
basetypeof(::Type{<:Dim{X}}) where {X} = Dim{X}

"""
Undefined dimension. Used when extra dimensions are created,
Anonymous dimension. Used when extra dimensions are created,
such as during transpose of a vector.
"""
struct PlaceholderDim <: Dimension{Int,NoIndex,Nothing} end
struct AnonDim{T} <: Dimension{T,NoIndex,Nothing}
val::T
end

val(::PlaceholderDim) = 1:1
mode(::PlaceholderDim) = NoIndex()
metadata(::PlaceholderDim) = nothing
name(::PlaceholderDim) = "Placeholder"
val(dim::AnonDim) = dim.val
mode(::AnonDim) = NoIndex()
metadata(::AnonDim) = nothing
name(::AnonDim) = "Anon"

"""
@dim typ [supertype=Dimension] [name=string(typ)] [shortname=string(typ)]
Expand Down
4 changes: 2 additions & 2 deletions src/methods.jl
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ Base.:*(A::ADA{<:Any,2}, B::AA{<:Any,1}) = rebuild(A, data(A) * B, dims(A, (1,))
Base.:*(A::ADA{<:Any,1}, B::AA{<:Any,2}) = rebuild(A, data(A) * B, dims(A, (1, 1)))
Base.:*(A::ADA{<:Any,2}, B::AA{<:Any,2}) = rebuild(A, data(A) * B, dims(A, (1, 1)))
Base.:*(A::AA{<:Any,1}, B::ADA{<:Any,2}) = rebuild(B, A * data(B), dims(B, (2, 2)))
Base.:*(A::AA{<:Any,2}, B::ADA{<:Any,1}) = rebuild(B, A * data(B), (PlaceholderDim(),))
Base.:*(A::AA{<:Any,2}, B::ADA{<:Any,1}) = rebuild(B, A * data(B), (AnonDim(Base.OneTo(1)),))
Base.:*(A::AA{<:Any,2}, B::ADA{<:Any,2}) = rebuild(B, A * data(B), dims(B, (2, 2)))

Base.:*(A::ADA{<:Any,1}, B::ADA{<:Any,2}) = begin
Expand Down Expand Up @@ -160,7 +160,7 @@ for (pkg, fname) in [(:Base, :permutedims), (:Base, :adjoint),
@inline $pkg.$fname(A::AbDimArray{T,2}) where T =
rebuild(A, $pkg.$fname(data(A)), reverse(dims(A)))
@inline $pkg.$fname(A::AbDimArray{T,1}) where T =
rebuild(A, $pkg.$fname(data(A)), (PlaceholderDim(), dims(A)...))
rebuild(A, $pkg.$fname(data(A)), (AnonDim(Base.OneTo(1)), dims(A)...))
end
end

Expand Down
4 changes: 2 additions & 2 deletions src/primitives.jl
Original file line number Diff line number Diff line change
Expand Up @@ -447,8 +447,8 @@ Empty tuples are allowed
@inline comparedims(a::DimTuple, b::Tuple{}) = a
@inline comparedims(a::Tuple{}, b::DimTuple) = b
@inline comparedims(a::Tuple{}, b::Tuple{}) = ()
@inline comparedims(a::Dimension, b::PlaceholderDim) = a
@inline comparedims(a::PlaceholderDim, b::Dimension) = b
@inline comparedims(a::Dimension, b::AnonDim) = a
@inline comparedims(a::AnonDim, b::Dimension) = b
@inline comparedims(a::Dimension, b::Dimension) = begin
basetypeof(a) == basetypeof(b) ||
throw(DimensionMismatch("$(basetypeof(a)) and $(basetypeof(b)) dims on the same axis"))
Expand Down
4 changes: 2 additions & 2 deletions test/methods.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ using Combinatorics: combinations
@test length.(dims(A1)) == size(A1)
@test dims(data(A1) * permutedims(A1)) isa Tuple{<:Ti,<:Ti}
@test data(A1) * permutedims(A1) == data(A1) * permutedims(data(A1))
@test dims(permutedims(A1) * data(A1)) isa Tuple{<:PlaceholderDim}
@test dims(permutedims(A1) * data(A1)) isa Tuple{<:AnonDim}
@test permutedims(A1) * data(A1) == permutedims(data(A1)) * data(A1)

@test length.(dims(permutedims(A1) * data(A1))) == size(permutedims(data(A1)) * data(A1))
Expand Down Expand Up @@ -51,7 +51,7 @@ using Combinatorics: combinations
for flip in (adjoint, transpose, permutedims)
result = flip(b1) * B1
@test result true_result # Permute dims is not exactly transpose
@test dims(result) isa Tuple{<:PlaceholderDim, <:X}
@test dims(result) isa Tuple{<:AnonDim, <:X}
@test length.(dims(result)) == (1, 6)
end

Expand Down

2 comments on commit fb7a9bd

@rafaqz
Copy link
Owner Author

@rafaqz rafaqz commented on fb7a9bd Apr 2, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/12043

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.9.0 -m "<description of version>" fb7a9bdfc1ca8045b76b2770bc366649a126fb97
git push origin v0.9.0

Please sign in to comment.