Skip to content

Commit 171465a

Browse files
authored
Promote types of transforms (#186)
* promote types of transforms * Create downstream.yml * move downstream * Update bases.jl * add test
1 parent c89c0cb commit 171465a

File tree

7 files changed

+113
-4
lines changed

7 files changed

+113
-4
lines changed

.github/workflows/downstream.yml

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
name: IntegrationTest
2+
on:
3+
push:
4+
branches: [master]
5+
tags: [v*]
6+
paths-ignore:
7+
- 'LICENSE'
8+
- 'README.md'
9+
- '.github/workflows/TagBot.yml'
10+
pull_request:
11+
paths-ignore:
12+
- 'LICENSE'
13+
- 'README.md'
14+
- '.github/workflows/TagBot.yml'
15+
16+
concurrency:
17+
group: build-${{ github.event.pull_request.number || github.ref }}-${{ github.workflow }}
18+
cancel-in-progress: true
19+
20+
jobs:
21+
pre_job:
22+
# continue-on-error: true # Uncomment once integration is finished
23+
runs-on: ubuntu-latest
24+
# Map a step output to a job output
25+
outputs:
26+
should_skip: ${{ steps.skip_check.outputs.should_skip }}
27+
steps:
28+
- id: skip_check
29+
uses: fkirc/skip-duplicate-actions@v5
30+
test:
31+
needs: pre_job
32+
if: needs.pre_job.outputs.should_skip != 'true'
33+
name: ${{ matrix.package.group }}/${{ matrix.package.repo }}/${{ matrix.julia-version }}
34+
runs-on: ${{ matrix.os }}
35+
strategy:
36+
fail-fast: false
37+
matrix:
38+
julia-version: ['1']
39+
os: [ubuntu-latest]
40+
package:
41+
- {repo: ClassicalOrthogonalPolynomials.jl, group: JuliaApproximation}
42+
- {repo: HarmonicOrthogonalPolynomials.jl, group: JuliaApproximation}
43+
- {repo: MultivariateOrthogonalPolynomials.jl, group: JuliaApproximation}
44+
- {repo: PiecewiseOrthogonalPolynomials.jl, group: JuliaApproximation}
45+
- {repo: SemiclassicalOrthogonalPolynomials.jl, group: JuliaApproximation}
46+
47+
steps:
48+
- uses: actions/checkout@v4
49+
- uses: julia-actions/setup-julia@v2
50+
with:
51+
version: ${{ matrix.julia-version }}
52+
arch: x64
53+
- uses: julia-actions/julia-buildpkg@latest
54+
- name: Clone Downstream
55+
uses: actions/checkout@v4
56+
with:
57+
repository: ${{ matrix.package.group }}/${{ matrix.package.repo }}
58+
path: downstream
59+
- name: Load this and run the downstream tests
60+
shell: julia --color=yes --project=downstream {0}
61+
run: |
62+
using Pkg
63+
try
64+
# force it to use this PR's version of the package
65+
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
66+
Pkg.update()
67+
Pkg.test(; coverage = true) # resolver may fail with test time deps
68+
catch err
69+
err isa Pkg.Resolve.ResolverError || rethrow()
70+
# If we can't resolve that means this is incompatible by SemVer and this is fine
71+
# It means we marked this as a breaking change, so we don't need to worry about
72+
# Mistakenly introducing a breaking change, as we have intentionally made one
73+
@info "Not compatible with this release. No problem." exception=err
74+
exit(0) # Exit immediately, as a success
75+
end
76+
- uses: julia-actions/julia-processcoverage@v1
77+
- uses: codecov/codecov-action@v4
78+
with:
79+
token: ${{ secrets.CODECOV_TOKEN }}
80+
files: lcov.info

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "ContinuumArrays"
22
uuid = "7ae1f121-cc2c-504b-ac30-9b923412ae5c"
3-
version = "0.18.2"
3+
version = "0.18.3"
44

55
[deps]
66
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"

src/ContinuumArrays.jl

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ include("maps.jl")
5555

5656
const QInfAxes = Union{Inclusion,AbstractAffineQuasiVector}
5757

58+
# TODO: the following break some tests in QuasiArrays.jl when loaded, when `QInfAxes` are finite dimensional
5859

5960
sub_materialize(_, V::AbstractQuasiArray, ::Tuple{QInfAxes}) = V
6061
sub_materialize(_, V::AbstractQuasiArray, ::Tuple{QInfAxes,QInfAxes}) = V

src/bases/bases.jl

+6-2
Original file line numberDiff line numberDiff line change
@@ -272,8 +272,12 @@ function _factorize(::MappedBasisLayout, L, dims...; kws...)
272272
MappedFactorization(factorize(view(P,:,jr), dims...; kws...), invmap(parentindices(L)[1]))
273273
end
274274

275-
plan_ldiv(A, B::AbstractQuasiVector) = factorize(A)
276-
plan_ldiv(A, B::AbstractQuasiMatrix) = factorize(A, size(B,2))
275+
276+
_any_eltype(B::AbstractQuasiArray{Any}) = typeof(first(B)) # assume types are same
277+
_any_eltype(B) = eltype(B)
278+
279+
plan_ldiv(A, B::AbstractQuasiVector) = factorize(convert(AbstractQuasiMatrix{promote_type(eltype(A), _any_eltype(B))}, A))
280+
plan_ldiv(A, B::AbstractQuasiMatrix) = factorize(convert(AbstractQuasiMatrix{promote_type(eltype(A), _any_eltype(B))}, A), size(B,2))
277281

278282
transform_ldiv_size(_, A::AbstractQuasiArray{T}, B::AbstractQuasiArray{V}) where {T,V} = plan_ldiv(A, B) \ B
279283
transform_ldiv(A, B) = transform_ldiv_size(size(A), A, B)

src/bases/basisconcat.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,4 +112,4 @@ function QuasiArrays._getindex(::Type{IND}, A::HvcatBasis{T}, (x,j)::IND) where
112112
end
113113

114114

115-
diff(H::ApplyQuasiMatrix{<:Any,typeof(hcat)}; dims::Integer) = hcat((diff.(H.args; dims=dims))...)
115+
diff(H::ApplyQuasiMatrix{<:Any,typeof(hcat)}; dims::Integer=1) = hcat((diff.(H.args; dims=dims))...)

src/bases/splines.jl

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ const HeavisideSpline = Spline{0}
99
Spline{o}(pts::AbstractVector{T}) where {o,T} = Spline{o,float(T)}(pts)
1010
Spline{o}(S::Spline) where {o} = Spline{o}(S.points)
1111

12+
convert(::Type{AbstractQuasiArray{T}}, S::Spline{λ,T}) where {λ,T} = S
13+
convert(::Type{AbstractQuasiMatrix{T}}, S::Spline{λ,T}) where {λ,T} = S
14+
convert(::Type{AbstractQuasiArray{T}}, S::Spline{λ}) where {λ,T} = Spline{λ,T}(S.points)
15+
convert(::Type{AbstractQuasiMatrix{T}}, S::Spline{λ}) where {λ,T} = convert(AbstractQuasiArray{T}, S)
16+
1217
for Typ in (:LinearSpline, :HeavisideSpline)
1318
STyp = string(Typ)
1419
@eval function show(io::IO, L::$Typ)

test/test_splines.jl

+19
Original file line numberDiff line numberDiff line change
@@ -609,4 +609,23 @@ import ContinuumArrays: basis, AdjointBasisLayout, ExpansionLayout, BasisLayout,
609609
@test sum(u) == 10
610610
@test cumsum(u)[5-4eps()] == 10
611611
end
612+
613+
@testset "complex" begin
614+
L = LinearSpline([1,2,3])
615+
x = axes(L,1)
616+
@test L \ exp.(im*x) == LinearSpline{ComplexF64}([1,2,3]) \ exp.(im*x) == transform(L, x -> exp(im*x))
617+
@test expand(L, x -> exp(im*x))[2.0] exp(im*2.0)
618+
end
619+
620+
@testset "convert" begin
621+
L = LinearSpline([1,2,3])
622+
@test L convert(AbstractQuasiArray{Float64}, L) convert(AbstractQuasiMatrix{Float64}, L)
623+
@test convert(AbstractQuasiArray{ComplexF64}, L) == convert(AbstractQuasiMatrix{ComplexF64}, L) == LinearSpline{ComplexF64}([1,2,3])
624+
end
625+
626+
@testset "any eltype" begin
627+
L = LinearSpline([-1,0,1])
628+
f = x -> abs(x) 1 ? 1 : "hi"
629+
@test expand(L,f)[0.1] 1
630+
end
612631
end

0 commit comments

Comments
 (0)