44 #ifndef PANZER_SUBCELL_CONNECTIVITY_HPP 45 #define PANZER_SUBCELL_CONNECTIVITY_HPP 47 #include "PanzerCore_config.hpp" 48 #include "Kokkos_View.hpp" 49 #include "Phalanx_KokkosDeviceTypes.hpp" 50 #include "Teuchos_Assert.hpp" 54 struct LocalMeshPartition;
71 KOKKOS_INLINE_FUNCTION
79 KOKKOS_INLINE_FUNCTION
91 KOKKOS_INLINE_FUNCTION
107 KOKKOS_INLINE_FUNCTION
126 KOKKOS_INLINE_FUNCTION
127 int subcellForCell(
const int cell,
const int local_subcell_index)
const;
145 KOKKOS_INLINE_FUNCTION
146 int cellForSubcell(
const int subcell,
const int local_cell_index)
const;
160 KOKKOS_INLINE_FUNCTION
223 KOKKOS_ASSERT(cell >= 0 and cell <
numCells());
233 KOKKOS_ASSERT(cell >= 0 and cell <
numCells());
243 KOKKOS_ASSERT(subcell >= 0 and subcell <
numSubcells());
253 KOKKOS_ASSERT(subcell >= 0 and subcell <
numSubcells());
263 KOKKOS_ASSERT(cell >= 0 and cell <
numCells());
275 KOKKOS_ASSERT(cell >= 0 and cell < numCell());
287 KOKKOS_ASSERT(subcell >= 0 and subcell <
numSubcells());
299 KOKKOS_ASSERT(subcell >= 0 and subcell <
numSubcells());
311 KOKKOS_ASSERT(subcell >= 0 and subcell <
numSubcells());
323 KOKKOS_ASSERT(subcell >= 0 and subcell <
numSubcells());
KOKKOS_INLINE_FUNCTION int cellForSubcell(const int subcell, const int local_cell_index) const
Get the cell for a given subcell and a local_cell_index.
int numCellsOnSubcellHost(const int subcell) const
KOKKOS_INLINE_FUNCTION int numSubcellsOnCell(const int cell) const
gives number of subcells (e.g. faces) found on a given cell
KOKKOS_INLINE_FUNCTION int numSubcells() const
Gives number of subcells (e.g. faces) in connectivity.
PHX::View< int * >::HostMirror _subcell_to_cells_adj_host
~SubcellConnectivity()=default
Default destructor.
FaceConnectivity()=default
Default constructor.
PHX::View< int * >::HostMirror _subcell_to_local_subcells_host
Generates a SubcellConnectivity associated with faces and cells given a partition of the local mesh...
PHX::View< int * >::HostMirror _cell_to_subcells_adj_host
PHX::View< int * > _subcell_to_local_subcells
Mapping from subcell indexes to local subcell indexes.
KOKKOS_INLINE_FUNCTION int numCellsOnSubcell(const int subcell) const
Returns the number of cells attached to a given subcell.
int cellForSubcellHost(const int subcell, const int local_cell_index) const
PHX::View< int * >::HostMirror _subcell_to_cells_host
PHX::View< int * > _cell_to_subcells
Mapping from cells to subcells.
KOKKOS_INLINE_FUNCTION int subcellForCell(const int cell, const int local_subcell_index) const
Get the subcell index for a given cell and local subcell index.
int localSubcellForSubcellHost(const int subcell, const int local_cell_index) const
KOKKOS_INLINE_FUNCTION int numCells() const
Gives number of cells in connectivity.
PHX::View< int * > _subcell_to_cells_adj
Adjacency array for indexing into subcell_to_cells array.
PHX::View< int * > _cell_to_subcells_adj
Adjacency array for indexing into cell_to_subcells array.
void setup(const panzer::LocalMeshPartition &partition)
Setup the face connectivity from a partition of the local mesh.
PHX::View< int * >::HostMirror _cell_to_subcells_host
~FaceConnectivity()=default
Default destructor.
PHX::View< int * > _subcell_to_cells
Mapping from subcells to cells.
SubcellConnectivity()=default
Default constructor.
int numSubcellsOnCellHost(const int cell) const
int subcellForCellHost(const int cell, const int local_subcell_index) const
KOKKOS_INLINE_FUNCTION int localSubcellForSubcell(const int subcell, const int local_cell_index) const
Get the local subcell index given a subcell and a local cell index.