forked from JuliaLinearAlgebra/BandedMatrices.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.jl
30 lines (21 loc) · 1.1 KB
/
utils.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# check dimensions of inputs
checkdimensions(sizedest::Tuple{Int, Vararg{Int}}, sizesrc::Tuple{Int, Vararg{Int}}) =
(sizedest == sizesrc ||
throw(DimensionMismatch("tried to assign $(sizesrc) sized " *
"array to $(sizedest) destination")) )
checkdimensions(dest::AbstractVector, src::AbstractVector) =
checkdimensions(size(dest), size(src))
checkdimensions(ldest::Int, src::AbstractVector) =
checkdimensions((ldest, ), size(src))
checkdimensions(kr::AbstractRange, jr::AbstractRange, src::AbstractMatrix) =
checkdimensions((length(kr), length(jr)), size(src))
# return the bandwidths of A*B
prodbandwidths(A) = bandwidths(A)
prodbandwidths() = (0,0)
prodbandwidths(A...) = broadcast(+, bandwidths.(A)...)
# helper functions in matrix addition routines
function sumbandwidths(A::AbstractMatrix, B::AbstractMatrix)
max(bandwidth(A, 1), bandwidth(B, 1)), max(bandwidth(A, 2), bandwidth(B, 2))
end
_fill_lmul!(β, A::AbstractArray{T}) where T = iszero(β) ? zero!(A) : lmul!(β, A)
_fill_rmul!(A::AbstractArray{T}, β) where T = iszero(β) ? zero!(A) : rmul!(A, β)