Skip to content
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

Move cell size out of the type domain #88

Merged
merged 1 commit into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/advection/semdg_advection_2d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ function run(
comm = MPI.COMM_WORLD,
)
rank = MPI.Comm_rank(comm)
cell = LobattoCell{Tuple{(N .+ 1)...},FT,AT}()
cell = LobattoCell{FT,AT}((N .+ 1)...)
coordinates = ntuple(_ -> range(FT(0), stop = FT(2π), length = K + 1), 2)
periodicity = (true, true)
gm = GridManager(cell, brick(coordinates, periodicity); comm = comm, min_level = L)
Expand Down
2 changes: 1 addition & 1 deletion examples/grids/grid.jl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ K = (2, 3, 4)
coordinates = ntuple(d -> range(start = -1.0, stop = 1.0, length = K[d] + 1), length(K))

gm = GridManager(
LobattoCell{Tuple{N...},Float64,AT}(),
LobattoCell{Float64,AT}(N...),
Raven.brick(coordinates);
comm = comm,
min_level = 2,
Expand Down
2 changes: 1 addition & 1 deletion examples/grids/hohqmeshimport.jl
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ coarse_grid = coarsegrid("out/IceCreamCone.inp")
# coarse_grid = coarsegrid("examples/grids/Pond/Pond.inp")

N = (4, 4)
gm = GridManager(LobattoCell{Tuple{N...},Float64,AT}(), coarse_grid, min_level = 1)
gm = GridManager(LobattoCell{Float64,AT}(N...), coarse_grid, min_level = 1)

grid = generate(gm)

Expand Down
2 changes: 1 addition & 1 deletion examples/grids/sphereshellgrid.jl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ R = 1

coarse_grid = Raven.cubeshell2dgrid(R)

gm = GridManager(LobattoCell{Tuple{N...},Float64,Array}(), coarse_grid, min_level = 2)
gm = GridManager(LobattoCell{Float64,Array}(N...), coarse_grid, min_level = 2)

indicator = rand((Raven.AdaptNone, Raven.AdaptRefine), length(gm))
adapt!(gm, indicator)
Expand Down
21 changes: 8 additions & 13 deletions src/cells.jl
Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
abstract type AbstractCell{S<:Tuple,T,A<:AbstractArray,N} end
abstract type AbstractCell{T,A<:AbstractArray,N} end

floattype(::Type{<:AbstractCell{S,T}}) where {S,T} = T
arraytype(::Type{<:AbstractCell{S,T,A}}) where {S,T,A} = A
Base.ndims(::Type{<:AbstractCell{S,T,A,N}}) where {S,T,A,N} = N
Base.size(::Type{<:AbstractCell{S,T,A}}) where {S,T,A} = size_to_tuple(S)
Base.size(::Type{<:AbstractCell{S,T,A}}, i::Integer) where {S,T,A} = size_to_tuple(S)[i]
Base.length(::Type{<:AbstractCell{S,T,A}}) where {S,T,A} = tuple_prod(S)
Base.strides(::Type{<:AbstractCell{S,T,A}}) where {S,T,A} =
Base.size_to_strides(1, size_to_tuple(S)...)
floattype(::Type{<:AbstractCell{T}}) where {T} = T
arraytype(::Type{<:AbstractCell{T,A}}) where {T,A} = A
Base.ndims(::Type{<:AbstractCell{T,A,N}}) where {T,A,N} = N

floattype(cell::AbstractCell) = floattype(typeof(cell))
arraytype(cell::AbstractCell) = arraytype(typeof(cell))
Base.ndims(cell::AbstractCell) = Base.ndims(typeof(cell))
Base.size(cell::AbstractCell) = Base.size(typeof(cell))
Base.size(cell::AbstractCell, i::Integer) = Base.size(typeof(cell), i)
Base.length(cell::AbstractCell) = Base.length(typeof(cell))
Base.strides(cell::AbstractCell) = Base.strides(typeof(cell))

Base.size(cell::AbstractCell, i::Integer) = size(cell)[i]
Base.length(cell::AbstractCell) = prod(size(cell))
Base.strides(cell::AbstractCell) = Base.size_to_strides(1, size(cell)...)
11 changes: 7 additions & 4 deletions src/eye.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
struct Eye{T,N} <: AbstractArray{T,2} end
struct Eye{T} <: AbstractArray{T,2}
N::Int
end

Base.size(::Eye{T,N}) where {T,N} = (N, N)
Base.IndexStyle(::Eye{T,N}) where {T,N} = IndexCartesian()
function Base.getindex(::Eye{T,N}, I::Vararg{Int,2}) where {T,N}
Base.size(eye::Eye{T}) where {T} = (eye.N, eye.N)
Base.IndexStyle(::Eye) = IndexCartesian()
@inline function Base.getindex(eye::Eye{T}, I::Vararg{Int,2}) where {T}
@boundscheck checkbounds(eye, I...)
return (I[1] == I[2]) ? one(T) : zero(T)
end
84 changes: 44 additions & 40 deletions src/gausscells.jl
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ function gaussoperators_1d(::Type{T}, M) where {T}
)
end

struct GaussCell{S,T,A,N,O,P,D,WD,SWD,M,FM,E,H,TG,TL,TB} <: AbstractCell{S,T,A,N}
struct GaussCell{T,A,N,S,O,P,D,WD,SWD,M,FM,E,H,TG,TL,TB} <: AbstractCell{T,A,N}
size::S
points_1d::O
weights_1d::O
points::P
Expand All @@ -62,18 +63,18 @@ struct GaussCell{S,T,A,N,O,P,D,WD,SWD,M,FM,E,H,TG,TL,TB} <: AbstractCell{S,T,A,N
toboundary::TB
end

function Base.show(io::IO, ::GaussCell{S,T,A}) where {S,T,A}
function Base.show(io::IO, ::GaussCell{T,A,N}) where {T,A,N}
print(io, "GaussCell{")
Base.show(io, S)
print(io, ", ")
Base.show(io, T)
print(io, ", ")
Base.show(io, A)
print(io, ", ")
Base.show(io, N)
print(io, "}")
end

function GaussCell{Tuple{S1},T,A}() where {S1,T,A}
o = adapt(A, gaussoperators_1d(T, S1))
function GaussCell{T,A}(m) where {T,A}
o = adapt(A, gaussoperators_1d(T, m))
points_1d = (o.points,)
weights_1d = (o.weights,)

Expand All @@ -90,6 +91,7 @@ function GaussCell{Tuple{S1},T,A}() where {S1,T,A}
toboundary = Kron((o.toboundary,))

args = (
(m,),
points_1d,
weights_1d,
points,
Expand All @@ -104,24 +106,23 @@ function GaussCell{Tuple{S1},T,A}() where {S1,T,A}
tolobatto,
toboundary,
)
GaussCell{Tuple{S1},T,A,1,typeof.(args[2:end])...}(args...)
GaussCell{T,A,1,typeof(args[1]),typeof.(args[3:end])...}(args...)
end

function GaussCell{Tuple{S1,S2},T,A}() where {S1,S2,T,A}
o = adapt(A, (gaussoperators_1d(T, S1), gaussoperators_1d(T, S2)))
function GaussCell{T,A}(m1, m2) where {T,A}
o = adapt(A, (gaussoperators_1d(T, m1), gaussoperators_1d(T, m2)))

points_1d = (reshape(o[1].points, (S1, 1)), reshape(o[2].points, (1, S2)))
weights_1d = (reshape(o[1].weights, (S1, 1)), reshape(o[2].weights, (1, S2)))
points_1d = (reshape(o[1].points, (m1, 1)), reshape(o[2].points, (1, m2)))
weights_1d = (reshape(o[1].weights, (m1, 1)), reshape(o[2].weights, (1, m2)))
points = vec(SVector.(points_1d...))
derivatives =
(Kron((Eye{T,S2}(), o[1].derivative)), Kron((o[2].derivative, Eye{T,S1}())))
derivatives = (Kron((Eye{T}(m2), o[1].derivative)), Kron((o[2].derivative, Eye{T}(m1))))
weightedderivatives = (
Kron((Eye{T,S2}(), o[1].weightedderivative)),
Kron((o[2].weightedderivative, Eye{T,S1}())),
Kron((Eye{T}(m2), o[1].weightedderivative)),
Kron((o[2].weightedderivative, Eye{T}(m1))),
)
skewweightedderivatives = (
Kron((Eye{T,S2}(), o[1].skewweightedderivative)),
Kron((o[2].skewweightedderivative, Eye{T,S1}())),
Kron((Eye{T}(m2), o[1].skewweightedderivative)),
Kron((o[2].skewweightedderivative, Eye{T}(m1))),
)
mass = Diagonal(vec(.*(weights_1d...)))
ω1, ω2 = weights_1d
Expand All @@ -134,6 +135,7 @@ function GaussCell{Tuple{S1,S2},T,A}() where {S1,S2,T,A}
toboundary = Kron((o[2].toboundary, o[1].toboundary))

args = (
(m1, m2),
points_1d,
weights_1d,
points,
Expand All @@ -148,40 +150,40 @@ function GaussCell{Tuple{S1,S2},T,A}() where {S1,S2,T,A}
tolobatto,
toboundary,
)
GaussCell{Tuple{S1,S2},T,A,2,typeof.(args[2:end])...}(args...)
GaussCell{T,A,2,typeof(args[1]),typeof.(args[3:end])...}(args...)
end

function GaussCell{Tuple{S1,S2,S3},T,A}() where {S1,S2,S3,T,A}
function GaussCell{T,A}(m1, m2, m3) where {T,A}
o = adapt(
A,
(gaussoperators_1d(T, S1), gaussoperators_1d(T, S2), gaussoperators_1d(T, S3)),
(gaussoperators_1d(T, m1), gaussoperators_1d(T, m2), gaussoperators_1d(T, m3)),
)

points_1d = (
reshape(o[1].points, (S1, 1, 1)),
reshape(o[2].points, (1, S2, 1)),
reshape(o[3].points, (1, 1, S3)),
reshape(o[1].points, (m1, 1, 1)),
reshape(o[2].points, (1, m2, 1)),
reshape(o[3].points, (1, 1, m3)),
)
weights_1d = (
reshape(o[1].weights, (S1, 1, 1)),
reshape(o[2].weights, (1, S2, 1)),
reshape(o[3].weights, (1, 1, S3)),
reshape(o[1].weights, (m1, 1, 1)),
reshape(o[2].weights, (1, m2, 1)),
reshape(o[3].weights, (1, 1, m3)),
)
points = vec(SVector.(points_1d...))
derivatives = (
Kron((Eye{T,S3}(), Eye{T,S2}(), o[1].derivative)),
Kron((Eye{T,S3}(), o[2].derivative, Eye{T,S1}())),
Kron((o[3].derivative, Eye{T,S2}(), Eye{T,S1}())),
Kron((Eye{T}(m3), Eye{T}(m2), o[1].derivative)),
Kron((Eye{T}(m3), o[2].derivative, Eye{T}(m1))),
Kron((o[3].derivative, Eye{T}(m2), Eye{T}(m1))),
)
weightedderivatives = (
Kron((Eye{T,S3}(), Eye{T,S2}(), o[1].weightedderivative)),
Kron((Eye{T,S3}(), o[2].weightedderivative, Eye{T,S1}())),
Kron((o[3].weightedderivative, Eye{T,S2}(), Eye{T,S1}())),
Kron((Eye{T}(m3), Eye{T}(m2), o[1].weightedderivative)),
Kron((Eye{T}(m3), o[2].weightedderivative, Eye{T}(m1))),
Kron((o[3].weightedderivative, Eye{T}(m2), Eye{T}(m1))),
)
skewweightedderivatives = (
Kron((Eye{T,S3}(), Eye{T,S2}(), o[1].skewweightedderivative)),
Kron((Eye{T,S3}(), o[2].skewweightedderivative, Eye{T,S1}())),
Kron((o[3].skewweightedderivative, Eye{T,S2}(), Eye{T,S1}())),
Kron((Eye{T}(m3), Eye{T}(m2), o[1].skewweightedderivative)),
Kron((Eye{T}(m3), o[2].skewweightedderivative, Eye{T}(m1))),
Kron((o[3].skewweightedderivative, Eye{T}(m2), Eye{T}(m1))),
)
mass = Diagonal(vec(.*(weights_1d...)))
ω1, ω2, ω3 = weights_1d
Expand All @@ -200,6 +202,7 @@ function GaussCell{Tuple{S1,S2,S3},T,A}() where {S1,S2,S3,T,A}
toboundary = Kron((o[3].toboundary, o[2].toboundary, o[1].toboundary))

args = (
(m1, m2, m3),
points_1d,
weights_1d,
points,
Expand All @@ -214,24 +217,25 @@ function GaussCell{Tuple{S1,S2,S3},T,A}() where {S1,S2,S3,T,A}
tolobatto,
toboundary,
)
GaussCell{Tuple{S1,S2,S3},T,A,3,typeof.(args[2:end])...}(args...)
GaussCell{T,A,3,typeof(args[1]),typeof.(args[3:end])...}(args...)
end

GaussCell{S,T}() where {S,T} = GaussCell{S,T,Array}()
GaussCell{S}() where {S} = GaussCell{S,Float64}()
GaussCell{T}(args...) where {T} = GaussCell{T,Array}(args...)
GaussCell(args...) = GaussCell{Float64}(args...)

function Adapt.adapt_structure(to, cell::GaussCell{S,T,A,N}) where {S,T,A,N}
function Adapt.adapt_structure(to, cell::GaussCell{T,A,N}) where {T,A,N}
names = fieldnames(GaussCell)
args = ntuple(j -> adapt(to, getfield(cell, names[j])), length(names))
B = arraytype(to)

GaussCell{S,T,B,N,typeof.(args[2:end])...}(args...)
GaussCell{T,B,N,typeof(args[1]),typeof.(args[3:end])...}(args...)
end

const GaussLine{T,A} = GaussCell{Tuple{B},T,A} where {B}
const GaussQuad{T,A} = GaussCell{Tuple{B,C},T,A} where {B,C}
const GaussHex{T,A} = GaussCell{Tuple{B,C,D},T,A} where {B,C,D}

Base.size(cell::GaussCell) = cell.size
points_1d(cell::GaussCell) = cell.points_1d
weights_1d(cell::GaussCell) = cell.weights_1d
points(cell::GaussCell) = cell.points
Expand Down
8 changes: 4 additions & 4 deletions src/gridarrays.jl
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ end

Create an array containing elements of type `T` for each point in the grid
(including the ghost cells). The dimensions of the array is
`(size(celltype(grid))..., length(grid))` as the ghost cells are hidden by
`(size(referencecell(grid))..., length(grid))` as the ghost cells are hidden by
default.

The type `T` is assumed to be able to be interpreted into an `NTuple{M,L}`.
Expand Down Expand Up @@ -141,9 +141,9 @@ cells. The one after is associated with the number of cells.
"""
function GridArray{T}(::UndefInitializer, grid::Grid) where {T}
A = arraytype(grid)
dims = (size(celltype(grid))..., Int(numcells(grid, Val(false))))
dimswithghosts = (size(celltype(grid))..., Int(numcells(grid, Val(true))))
F = ndims(celltype(grid)) + 1
dims = (size(referencecell(grid))..., Int(numcells(grid, Val(false))))
dimswithghosts = (size(referencecell(grid))..., Int(numcells(grid, Val(true))))
F = ndims(referencecell(grid)) + 1

return GridArray{T}(undef, A, dims, dimswithghosts, comm(grid), false, F)
end
Expand Down
Loading
Loading