-
Notifications
You must be signed in to change notification settings - Fork 53
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
Further allocation reduction in power computations #361
Changes from 12 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]) | ||
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 understand that this change helps avoiding the allocation of |
||
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]) | ||
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. Same comment as above |
||
end | ||
return nothing | ||
end | ||
|
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) | ||
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 | ||
|
lbenet marked this conversation as resolved.
Show resolved
Hide resolved
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -58,37 +58,98 @@ end | |||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
^(a::Taylor1{TaylorN{T}}, r::Rational) where {T<:NumberNotSeries} = a^(r.num/r.den) | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
# power_by_squaring; slightly modified from base/intfuncs.jl | ||||||||||||||||||||||||||||||||||||||||||||||||||
# Licensed under MIT "Expat" | ||||||||||||||||||||||||||||||||||||||||||||||||||
for T in (:Taylor1, :HomogeneousPolynomial, :TaylorN) | ||||||||||||||||||||||||||||||||||||||||||||||||||
@eval function power_by_squaring(x::$T, p::Integer) | ||||||||||||||||||||||||||||||||||||||||||||||||||
if p == 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||
return copy(x) | ||||||||||||||||||||||||||||||||||||||||||||||||||
elseif p == 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||
return one(x) | ||||||||||||||||||||||||||||||||||||||||||||||||||
elseif p == 2 | ||||||||||||||||||||||||||||||||||||||||||||||||||
return square(x) | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
# in-place form of power_by_squaring | ||||||||||||||||||||||||||||||||||||||||||||||||||
# this method assumes `y`, `x` and `aux` are of same order | ||||||||||||||||||||||||||||||||||||||||||||||||||
for T in (:Taylor1, :TaylorN) | ||||||||||||||||||||||||||||||||||||||||||||||||||
@eval function power_by_squaring!(y::$T{T}, x::$T{T}, aux::$T{T}, | ||||||||||||||||||||||||||||||||||||||||||||||||||
p::Integer) where {T<:NumberNotSeries} | ||||||||||||||||||||||||||||||||||||||||||||||||||
t = trailing_zeros(p) + 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||
p >>= t | ||||||||||||||||||||||||||||||||||||||||||||||||||
# aux = x | ||||||||||||||||||||||||||||||||||||||||||||||||||
for k in eachindex(aux) | ||||||||||||||||||||||||||||||||||||||||||||||||||
identity!(aux, x, k) | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
while (t -= 1) > 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||
x = square(x) | ||||||||||||||||||||||||||||||||||||||||||||||||||
# aux = square(aux) | ||||||||||||||||||||||||||||||||||||||||||||||||||
for k in reverse(eachindex(aux)) | ||||||||||||||||||||||||||||||||||||||||||||||||||
sqr!(aux, k) | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
# y = aux | ||||||||||||||||||||||||||||||||||||||||||||||||||
for k in eachindex(y) | ||||||||||||||||||||||||||||||||||||||||||||||||||
identity!(y, aux, k) | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
y = x | ||||||||||||||||||||||||||||||||||||||||||||||||||
while p > 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||
t = trailing_zeros(p) + 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||
p >>= t | ||||||||||||||||||||||||||||||||||||||||||||||||||
while (t -= 1) ≥ 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||
# aux = square(aux) | ||||||||||||||||||||||||||||||||||||||||||||||||||
for k in reverse(eachindex(aux)) | ||||||||||||||||||||||||||||||||||||||||||||||||||
sqr!(aux, k) | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
# y = y * aux | ||||||||||||||||||||||||||||||||||||||||||||||||||
mul!(y, aux) | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
return nothing | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
# power_by_squaring; slightly modified from base/intfuncs.jl | ||||||||||||||||||||||||||||||||||||||||||||||||||
# Licensed under MIT "Expat" | ||||||||||||||||||||||||||||||||||||||||||||||||||
for T in (:Taylor1, :HomogeneousPolynomial, :TaylorN) | ||||||||||||||||||||||||||||||||||||||||||||||||||
@eval power_by_squaring(x::$T, p::Integer) = power_by_squaring(x, Val(p)) | ||||||||||||||||||||||||||||||||||||||||||||||||||
@eval power_by_squaring(x::$T, ::Val{0}) = one(x) | ||||||||||||||||||||||||||||||||||||||||||||||||||
@eval power_by_squaring(x::$T, ::Val{1}) = copy(x) | ||||||||||||||||||||||||||||||||||||||||||||||||||
@eval power_by_squaring(x::$T, ::Val{2}) = square(x) | ||||||||||||||||||||||||||||||||||||||||||||||||||
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. Perhaps adding 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. You mean adding something along the lines of 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. Good point... I guess this is the kind of question that we should define in terms of performance. My naive guess is that 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 just checked this, and it turns out doing 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. Have you also teste with intervals? I would choose the case that behaves better wrt allocations. 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. With intervals |
||||||||||||||||||||||||||||||||||||||||||||||||||
@eval function power_by_squaring(x::$T, ::Val{P}) where P | ||||||||||||||||||||||||||||||||||||||||||||||||||
p = P # copy static parameter `P` into local variable `p` | ||||||||||||||||||||||||||||||||||||||||||||||||||
if $T != HomogeneousPolynomial | ||||||||||||||||||||||||||||||||||||||||||||||||||
y = zero(x) | ||||||||||||||||||||||||||||||||||||||||||||||||||
aux = zero(x) | ||||||||||||||||||||||||||||||||||||||||||||||||||
power_by_squaring!(y, x, aux, p) | ||||||||||||||||||||||||||||||||||||||||||||||||||
else | ||||||||||||||||||||||||||||||||||||||||||||||||||
t = trailing_zeros(p) + 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||
p >>= t | ||||||||||||||||||||||||||||||||||||||||||||||||||
while (t -= 1) > 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||
x = square(x) | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
y *= x | ||||||||||||||||||||||||||||||||||||||||||||||||||
y = x | ||||||||||||||||||||||||||||||||||||||||||||||||||
while p > 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||
t = trailing_zeros(p) + 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||
p >>= t | ||||||||||||||||||||||||||||||||||||||||||||||||||
while (t -= 1) ≥ 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||
x = square(x) | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
y *= x | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
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 think this
Suggested change
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. Thank you for noticing this @lbenet! I agree there's better ways to deal with this 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 agree it is worth keeping both methods for 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. Okay, I added a comment with a TODO for another PR |
||||||||||||||||||||||||||||||||||||||||||||||||||
return y | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
power_by_squaring(x::TaylorN{Taylor1{T}}, ::Val{0}) where {T<:NumberNotSeries} = one(x) | ||||||||||||||||||||||||||||||||||||||||||||||||||
power_by_squaring(x::TaylorN{Taylor1{T}}, ::Val{1}) where {T<:NumberNotSeries} = copy(x) | ||||||||||||||||||||||||||||||||||||||||||||||||||
power_by_squaring(x::TaylorN{Taylor1{T}}, ::Val{2}) where {T<:NumberNotSeries} = square(x) | ||||||||||||||||||||||||||||||||||||||||||||||||||
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 think these methods are defined above in lines 104-106... |
||||||||||||||||||||||||||||||||||||||||||||||||||
function power_by_squaring(x::TaylorN{Taylor1{T}}, ::Val{P}) where {P, T<:NumberNotSeries} | ||||||||||||||||||||||||||||||||||||||||||||||||||
lbenet marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||||||||||||||||||||
p = P # copy static parameter `P` into local variable `p` | ||||||||||||||||||||||||||||||||||||||||||||||||||
t = trailing_zeros(p) + 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||
p >>= t | ||||||||||||||||||||||||||||||||||||||||||||||||||
while (t -= 1) > 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||
x = square(x) | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
y = x | ||||||||||||||||||||||||||||||||||||||||||||||||||
while p > 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||
t = trailing_zeros(p) + 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||
p >>= t | ||||||||||||||||||||||||||||||||||||||||||||||||||
while (t -= 1) ≥ 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||
x = square(x) | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
y *= x | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
return y | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
## Real power ## | ||||||||||||||||||||||||||||||||||||||||||||||||||
function ^(a::Taylor1{T}, r::S) where {T<:Number, S<:Real} | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -107,8 +168,9 @@ function ^(a::Taylor1{T}, r::S) where {T<:Number, S<:Real} | |||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
c_order = l0 == 0 ? a.order : min(a.order, trunc(Int,r*a.order)) | ||||||||||||||||||||||||||||||||||||||||||||||||||
c = Taylor1(zero(aux), c_order) | ||||||||||||||||||||||||||||||||||||||||||||||||||
aux0 = deepcopy(c[0]) | ||||||||||||||||||||||||||||||||||||||||||||||||||
for k in eachindex(c) | ||||||||||||||||||||||||||||||||||||||||||||||||||
pow!(c, aa, r, k) | ||||||||||||||||||||||||||||||||||||||||||||||||||
pow!(c, aa, aux0, r, k) | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
return c | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -132,8 +194,9 @@ function ^(a::TaylorN, r::S) where {S<:Real} | |||||||||||||||||||||||||||||||||||||||||||||||||
in order to expand `^` around 0.""")) | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
c = TaylorN( zero(aux), a.order) | ||||||||||||||||||||||||||||||||||||||||||||||||||
aux = deepcopy(c) | ||||||||||||||||||||||||||||||||||||||||||||||||||
for ord in eachindex(a) | ||||||||||||||||||||||||||||||||||||||||||||||||||
pow!(c, aa, r, ord) | ||||||||||||||||||||||||||||||||||||||||||||||||||
pow!(c, aa, aux, r, ord) | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
return c | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -158,8 +221,9 @@ function ^(a::Taylor1{TaylorN{T}}, r::S) where {T<:NumberNotSeries, S<:Real} | |||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
c_order = l0 == 0 ? a.order : min(a.order, trunc(Int,r*a.order)) | ||||||||||||||||||||||||||||||||||||||||||||||||||
c = Taylor1(zero(aux), c_order) | ||||||||||||||||||||||||||||||||||||||||||||||||||
aux0 = deepcopy(c[0]) | ||||||||||||||||||||||||||||||||||||||||||||||||||
for k in eachindex(c) | ||||||||||||||||||||||||||||||||||||||||||||||||||
pow!(c, aa, r, k) | ||||||||||||||||||||||||||||||||||||||||||||||||||
pow!(c, aa, aux0, r, k) | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
return c | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -184,7 +248,7 @@ exploits `k_0`, the order of the first non-zero coefficient of `a`. | |||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
""" pow! | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
@inline function pow!(c::Taylor1{T}, a::Taylor1{T}, r::S, k::Int) where | ||||||||||||||||||||||||||||||||||||||||||||||||||
@inline function pow!(c::Taylor1{T}, a::Taylor1{T}, ::T, r::S, k::Int) where | ||||||||||||||||||||||||||||||||||||||||||||||||||
{T<:Number, S<:Real} | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
if r == 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -233,7 +297,7 @@ exploits `k_0`, the order of the first non-zero coefficient of `a`. | |||||||||||||||||||||||||||||||||||||||||||||||||
return nothing | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
@inline function pow!(c::TaylorN{T}, a::TaylorN{T}, r::S, k::Int) where | ||||||||||||||||||||||||||||||||||||||||||||||||||
@inline function pow!(c::TaylorN{T}, a::TaylorN{T}, ::TaylorN{T}, r::S, k::Int) where | ||||||||||||||||||||||||||||||||||||||||||||||||||
{T<:NumberNotSeriesN, S<:Real} | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
if r == 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -266,7 +330,7 @@ end | |||||||||||||||||||||||||||||||||||||||||||||||||
return nothing | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
@inline function pow!(res::Taylor1{TaylorN{T}}, a::Taylor1{TaylorN{T}}, r::S, | ||||||||||||||||||||||||||||||||||||||||||||||||||
@inline function pow!(res::Taylor1{TaylorN{T}}, a::Taylor1{TaylorN{T}}, aux::TaylorN{T}, r::S, | ||||||||||||||||||||||||||||||||||||||||||||||||||
ordT::Int) where {T<:NumberNotSeries, S<:Real} | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
if r == 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -300,7 +364,7 @@ end | |||||||||||||||||||||||||||||||||||||||||||||||||
if ordT == lnull | ||||||||||||||||||||||||||||||||||||||||||||||||||
if isinteger(r) | ||||||||||||||||||||||||||||||||||||||||||||||||||
# TODO: get rid of allocations here | ||||||||||||||||||||||||||||||||||||||||||||||||||
res[ordT] = a[l0]^round(Int,r) # uses power_by_squaring | ||||||||||||||||||||||||||||||||||||||||||||||||||
power_by_squaring!(res[ordT], a[l0], aux, round(Int,r)) | ||||||||||||||||||||||||||||||||||||||||||||||||||
return nothing | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -310,7 +374,7 @@ end | |||||||||||||||||||||||||||||||||||||||||||||||||
in order to expand `^` around 0.""")) | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
for ordQ in eachindex(a[l0]) | ||||||||||||||||||||||||||||||||||||||||||||||||||
pow!(res[ordT], a[l0], r, ordQ) | ||||||||||||||||||||||||||||||||||||||||||||||||||
pow!(res[ordT], a[l0], aux, r, ordQ) | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
return nothing | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -339,7 +403,7 @@ Return `a^2`; see [`TaylorSeries.sqr!`](@ref). | |||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
for T in (:Taylor1, :TaylorN) | ||||||||||||||||||||||||||||||||||||||||||||||||||
@eval function square(a::$T) | ||||||||||||||||||||||||||||||||||||||||||||||||||
c = $T( zero(constant_term(a)), a.order) | ||||||||||||||||||||||||||||||||||||||||||||||||||
c = zero(a) | ||||||||||||||||||||||||||||||||||||||||||||||||||
for k in eachindex(a) | ||||||||||||||||||||||||||||||||||||||||||||||||||
sqr!(c, a, k) | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -447,6 +511,37 @@ for T = (:Taylor1, :TaylorN) | |||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
return nothing | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
# in-place squaring: given `c`, compute expansion of `c^2` and save back into `c` | ||||||||||||||||||||||||||||||||||||||||||||||||||
@inline function sqr!(c::$T{T}, k::Int) where {T<:NumberNotSeries} | ||||||||||||||||||||||||||||||||||||||||||||||||||
lbenet marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||||||||||||||||||||
if k == 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||
sqr_orderzero!(c, c) | ||||||||||||||||||||||||||||||||||||||||||||||||||
return nothing | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
# Recursion formula | ||||||||||||||||||||||||||||||||||||||||||||||||||
kodd = k%2 | ||||||||||||||||||||||||||||||||||||||||||||||||||
kend = (k - 2 + kodd) >> 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||
if $T == Taylor1 | ||||||||||||||||||||||||||||||||||||||||||||||||||
(kend ≥ 0) && ( @inbounds c[k] = c[0] * c[k] ) | ||||||||||||||||||||||||||||||||||||||||||||||||||
@inbounds for i = 1:kend | ||||||||||||||||||||||||||||||||||||||||||||||||||
c[k] += c[i] * c[k-i] | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
@inbounds c[k] = 2 * c[k] | ||||||||||||||||||||||||||||||||||||||||||||||||||
(kodd == 0) && ( @inbounds c[k] = c[k >> 1]^2 ) | ||||||||||||||||||||||||||||||||||||||||||||||||||
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 think the following solves the problem...
Suggested change
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. Great catch! It does the trick, many thanks! |
||||||||||||||||||||||||||||||||||||||||||||||||||
else | ||||||||||||||||||||||||||||||||||||||||||||||||||
(kend ≥ 0) && ( @inbounds mul!(c, c[0][1], c, k) ) | ||||||||||||||||||||||||||||||||||||||||||||||||||
@inbounds for i = 1:kend | ||||||||||||||||||||||||||||||||||||||||||||||||||
mul!(c[k], c[i], c[k-i]) | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
@inbounds mul!(c, 2, c, k) | ||||||||||||||||||||||||||||||||||||||||||||||||||
if (kodd == 0) | ||||||||||||||||||||||||||||||||||||||||||||||||||
accsqr!(c[k], c[k >> 1]) | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
return nothing | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
|
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!