Skip to content

Commit 3de51ef

Browse files
committed
Added similar and other code review improvements
1 parent 25be2f3 commit 3de51ef

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed

NEWS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ Library improvements
214214

215215
* Introduced a wrapper type for lazy complex conjugation of arrays, `ConjArray`.
216216
Currently, it is used by default for the new `RowVector` type only, and
217-
enforces that both `transpose(vec)` and `ctranspose(vec)` are views not copies.
217+
enforces that both `transpose(vec)` and `ctranspose(vec)` are views not copies ([#20047]).
218218

219219
Compiler/Runtime improvements
220220
-----------------------------

base/linalg/conjarray.jl

+2-6
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,12 @@ linearindexing{CA <: ConjArray}(::Type{CA}) = linearindexing(parent_type(CA))
3737
@propagate_inbounds setindex!{T,N}(a::ConjArray{T,N}, v, i::Int) = setindex!(a.parent, conj(v), i)
3838
@propagate_inbounds setindex!{T,N}(a::ConjArray{T,N}, v, i::Vararg{Int,N}) = setindex!(a.parent, conj(v), i...)
3939

40-
# TODO similar
40+
@inline similar{T,N}(a::ConjArray, ::Type{T}, dims::Dims{N}) = similar(parent(a), T, dims)
4141

4242
# Currently, this is default behavior for RowVector only
43-
"""
44-
conj(rowvector)
45-
46-
Returns a `ConjArray` lazy view of the input, where each element is conjugated.
47-
"""
4843
@inline conj(a::ConjArray) = parent(a)
4944

45+
# Helper functions, currently used by RowVector
5046
@inline _conj(a::AbstractArray) = ConjArray(a)
5147
@inline _conj{T<:Real}(a::AbstractArray{T}) = a
5248
@inline _conj(a::ConjArray) = parent(a)

base/linalg/rowvector.jl

+11-6
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,12 @@ typealias ConjRowVector{T, CV <: ConjVector} RowVector{T, CV}
4848
convert{T,V<:AbstractVector}(::Type{RowVector{T,V}}, rowvec::RowVector) =
4949
RowVector{T,V}(convert(V,rowvec.vec))
5050

51-
# similar()
52-
@inline similar(rowvec::RowVector) = RowVector(similar(rowvec.vec))
53-
@inline similar{T}(rowvec::RowVector, ::Type{T}) = RowVector(similar(rowvec.vec, transpose_type(T)))
54-
# There is no resizing similar() because it would be ambiguous if the result were a Matrix or a RowVector
51+
# similar tries to maintain the RowVector wrapper and the parent type
52+
@inline similar(rowvec::RowVector) = RowVector(similar(parent(rowvec)))
53+
@inline similar{T}(rowvec::RowVector, ::Type{T}) = RowVector(similar(parent(rowvec), transpose_type(T)))
54+
55+
# Resizing similar currently looses its RowVector property.
56+
@inline similar{T,N}(rowvec::RowVector, ::Type{T}, dims::Dims{N}) = similar(parent(rowvec), T, dims)
5557

5658
# Basic methods
5759
"""
@@ -84,8 +86,11 @@ julia> transpose(v)
8486

8587
parent(rowvec::RowVector) = rowvec.vec
8688

87-
# Strictly, these are unnecessary but will make things stabler if we introduce
88-
# a "view" for conj(::AbstractArray)
89+
"""
90+
conj(rowvector)
91+
92+
Returns a `ConjArray` lazy view of the input, where each element is conjugated.
93+
"""
8994
@inline conj(rowvec::RowVector) = RowVector(_conj(rowvec.vec))
9095
@inline conj{T<:Real}(rowvec::RowVector{T}) = rowvec
9196

0 commit comments

Comments
 (0)