-
Notifications
You must be signed in to change notification settings - Fork 53
Further allocation reduction in power computations #361
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 16 commits
dbdbcc1
a34ce7b
c04d9f8
5d3d57d
a9c770b
5bcccf4
6cce90a
a205dcd
e44811c
2e4e60a
f581b21
27c3d0e
dc6a68c
364faf7
99e3061
efa02a1
d9af8ca
68bf845
8610e21
ba30e7a
ea15252
21c876b
702fbac
6264eae
4f613d6
ad18057
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,9 +18,8 @@ function resize_coeffs1!(coeffs::Array{T,1}, order::Int) where {T<:Number} | |
| lencoef = length(coeffs) | ||
| resize!(coeffs, order+1) | ||
| if order > lencoef-1 | ||
| z = zero(coeffs[1]) | ||
| @simd for ord in lencoef+1:order+1 | ||
| @inbounds coeffs[ord] = z | ||
| @inbounds coeffs[ord] = zero(coeffs[1]) | ||
|
||
| end | ||
| end | ||
| return nothing | ||
|
|
@@ -39,9 +38,8 @@ function resize_coeffsHP!(coeffs::Array{T,1}, order::Int) where {T<:Number} | |
| @assert order ≤ get_order() && lencoef ≤ num_coeffs | ||
| num_coeffs == lencoef && return nothing | ||
| resize!(coeffs, num_coeffs) | ||
| z = zero(coeffs[1]) | ||
| @simd for ord in lencoef+1:num_coeffs | ||
| @inbounds coeffs[ord] = z | ||
| @inbounds coeffs[ord] = zero(coeffs[1]) | ||
|
||
| end | ||
| return nothing | ||
| end | ||
|
|
@@ -84,7 +82,7 @@ getindex(a::Taylor1{T}, u::StepRange{Int,Int}) where {T<:Number} = | |
| view(a.coeffs, u[:] .+ 1) | ||
|
|
||
| setindex!(a::Taylor1{T}, x::T, n::Int) where {T<:Number} = a.coeffs[n+1] = x | ||
| setindex!(a::Taylor1{T}, x::T, n::Int) where {T<:AbstractSeries} = setindex!(a.coeffs, deepcopy(x), n+1) | ||
| setindex!(a::Taylor1{T}, x::T, n::Int) where {T<:AbstractSeries} = setindex!(a.coeffs, x, n+1) | ||
|
||
| setindex!(a::Taylor1{T}, x::T, u::UnitRange{Int}) where {T<:Number} = | ||
| a.coeffs[u .+ 1] .= x | ||
| function setindex!(a::Taylor1{T}, x::Array{T,1}, u::UnitRange{Int}) where {T<:Number} | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -156,7 +156,7 @@ struct TaylorN{T<:Number} <: AbstractSeries{T} | |
| order :: Int | ||
|
|
||
| function TaylorN{T}(v::Array{HomogeneousPolynomial{T},1}, order::Int) where T<:Number | ||
| coeffs = zeros(HomogeneousPolynomial{T}, order) | ||
| coeffs = isempty(v) ? zeros(HomogeneousPolynomial{T}, order) : zeros(v[1], order) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I guess we would need similar fixes in |
||
| @inbounds for i in eachindex(v) | ||
| ord = v[i].order | ||
| if ord ≤ order | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
An equivalent method
mul!(a::Taylor1{T}, b::Taylor1{T}) where {T<:Number})could be useful for the extension ofpow!forTaylor1{TaylorN{T}}?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would indeed by useful, I've added the corresponding method, thanks!