The Kokkos object that holds thread-private data in the parallel operations of any Kokkos object. More...
#include <KokkosDatum.h>
Public Member Functions | |
| KOKKOS_FUNCTION | Datum (const ContiguousElementID elem, const unsigned int side, const Assembly &assembly, const Array< FESystem > &systems) |
| Constructor for element and side data. More... | |
| KOKKOS_FUNCTION | Datum (const ContiguousNodeID node, const Assembly &assembly, const Array< FESystem > &systems) |
| Constructor for node data. More... | |
| KOKKOS_FUNCTION const Assembly & | assembly () const |
| Get the Kokkos assembly. More... | |
| KOKKOS_FUNCTION const FESystem & | system (unsigned int sys) const |
| Get the Kokkos system. More... | |
| KOKKOS_FUNCTION dof_id_type | extraElemID (unsigned int index) const |
| Get the extra element ID. More... | |
| KOKKOS_FUNCTION ContiguousNodeID | node () const |
| Get the contiguous node ID. More... | |
| KOKKOS_FUNCTION unsigned int | n_qps () const |
| Get the number of local quadrature points. More... | |
| KOKKOS_FUNCTION dof_id_type | qpOffset () const |
| Get the starting offset into the global quadrature point index. More... | |
| KOKKOS_FUNCTION dof_id_type | propertyIdx (const PropertyConstantOption constant_option, const unsigned int qp) const |
| Get the index into the property data storage. More... | |
| KOKKOS_FUNCTION bool | isNodal () const |
| Get whether the current datum is on a node. More... | |
| KOKKOS_FUNCTION bool | isNodalDefined (const Variable &var) const |
| Get whether the a variable is defined on the current node. More... | |
| KOKKOS_FUNCTION const Real33 & | J (const unsigned int qp) |
| Get the inverse of Jacobian matrix | dxi/dx deta/dx dzeta/dx | | dxi/dy deta/dy dzeta/dy | | dxi/dz deta/dz dzeta/dz |. More... | |
| KOKKOS_FUNCTION Real | JxW (const unsigned int qp) |
| Get the transformed Jacobian weight. More... | |
| KOKKOS_FUNCTION Real3 | q_point (const unsigned int qp) |
| Get the physical quadrature point coordinate. More... | |
| KOKKOS_FUNCTION Real3 | normals (const unsigned int qp) |
| Get the normal vector on surface. More... | |
| KOKKOS_FUNCTION void | set_local_parallel (const unsigned int local_thread_id, const unsigned int num_local_threads) |
| Set local parallelization option. More... | |
| KOKKOS_FUNCTION unsigned int | local_thread_id () const |
| Get the current local thread ID. More... | |
| KOKKOS_FUNCTION unsigned int | num_local_threads () const |
| Get the number of local threads. More... | |
| KOKKOS_FUNCTION const Mesh & | mesh () const |
| Get the Kokkos mesh. More... | |
| KOKKOS_FUNCTION const ElementInfo & | elem () const |
| Get the element information object. More... | |
| KOKKOS_FUNCTION ContiguousElementID | elemID () const |
| Get the contiguous element ID. More... | |
| KOKKOS_FUNCTION bool | hasNeighbor () const |
| Get whether the current side has a neighbor. More... | |
| KOKKOS_FUNCTION const ElementInfo & | neighbor () const |
| Get the neighbor element information object. More... | |
| KOKKOS_FUNCTION ContiguousElementID | neighborID () const |
| Get the contiguous neighbor element ID. More... | |
| KOKKOS_FUNCTION unsigned int | side () const |
| Get the side index. More... | |
| KOKKOS_FUNCTION bool | isSide () const |
| Get whether the current datum is on a side. More... | |
| KOKKOS_FUNCTION ContiguousSubdomainID | subdomain () const |
| Get the contiguous subdomain ID. More... | |
| KOKKOS_FUNCTION ContiguousSubdomainID | neighborSubdomain () const |
| Get the contiguous neighbor subdomain ID. More... | |
Static Protected Member Functions | |
| static KOKKOS_FUNCTION ElementInfo | neighborInfo (ContiguousElementID elem, const unsigned int side, const Mesh &mesh) |
| Get the neighbor element information object for an element side. More... | |
Protected Attributes | |
| const Assembly & | _assembly |
| Reference of the Kokkos assembly. More... | |
| const Array< FESystem > & | _systems |
| Reference of the Kokkos systems. More... | |
| const ContiguousNodeID | _node = libMesh::DofObject::invalid_id |
| Current contiguous node ID. More... | |
| const unsigned int | _n_qps = 1 |
| Number of local quadrature points. More... | |
| const dof_id_type | _qp_offset = libMesh::DofObject::invalid_id |
| Starting offset into the global quadrature point index. More... | |
| const dof_id_type | _elem_property_idx = libMesh::DofObject::invalid_id |
| Index for element-constant material properties. More... | |
| const Mesh & | _mesh |
| Reference to the Kokkos mesh. More... | |
| const ElementInfo | _elem |
| Current element information object. More... | |
| const unsigned int | _side = libMesh::invalid_uint |
| Current side index. More... | |
| const ElementInfo | _neighbor |
| Current neighbor element information object. More... | |
Private Member Functions | |
| KOKKOS_FUNCTION void | reinitTransform (const unsigned int qp) |
| Compute and cache the physical transformation data. More... | |
Private Attributes | |
| unsigned int | _cached_qp = libMesh::invalid_uint |
| Cached quadrature point index for checking whether the physical transformation data should be recomputed. More... | |
| unsigned int | _local_thread_id = 0 |
| Thread ID for local parallelization. More... | |
| unsigned int | _num_local_threads = 1 |
| Number of threads for local parallelization. More... | |
| Real33 | _J |
| Cached physical transformation data. More... | |
| Real | _JxW |
| Real3 | _xyz |
| Real3 | _normal |
The Kokkos object that holds thread-private data in the parallel operations of any Kokkos object.
Definition at line 245 of file KokkosDatum.h.
|
inline |
Constructor for element and side data.
| elem | The contiguous element ID of the current thread |
| side | The side index of the current thread |
| assembly | The Kokkos assembly |
| systems | The Kokkos systems |
Definition at line 448 of file KokkosDatum.h.
|
inline |
Constructor for node data.
| node | The contiguous node ID of the current thread |
| assembly | The Kokkos assembly |
| systems | The Kokkos systems |
Definition at line 462 of file KokkosDatum.h.
|
inline |
Get the Kokkos assembly.
Definition at line 274 of file KokkosDatum.h.
Referenced by Moose::Kokkos::VariableShapeValue< is_test >::operator()(), Moose::Kokkos::VectorVariableShapeValue< is_test >::operator()(), Moose::Kokkos::VectorVariableShapeCurl< is_test >::operator()(), Moose::Kokkos::VectorVariableValue::operator()(), Moose::Kokkos::VectorVariableCurl::operator()(), Moose::Kokkos::VariableShapeGradient< is_test >::reference(), and Moose::Kokkos::VectorVariableShapeGradient< is_test >::reference().
|
inlineinherited |
Get the element information object.
Definition at line 46 of file KokkosDatum.h.
Referenced by Moose::Kokkos::ResidualObject::accumulateTaggedElementalMatrix(), KokkosCopyValueAux::computeElementInternal(), KokkosVectorTimeDerivative::computeJacobianInternal(), KokkosTimeDerivative::computeJacobianInternal(), Moose::Kokkos::ResidualObject::computeJacobianInternal(), Moose::Kokkos::ADKernel::computeResidualInternal(), Moose::Kokkos::ADIntegratedBC::computeResidualInternal(), Moose::Kokkos::ResidualObject::computeResidualInternal(), Moose::Kokkos::VariableValueTempl< is_ad >::get(), Moose::Kokkos::VariableGradientTempl< is_ad >::get(), Moose::Kokkos::MeshDatum::neighborInfo(), Moose::Kokkos::VariableShapeValue< is_test >::operator()(), Moose::Kokkos::VectorVariableShapeValue< is_test >::operator()(), Moose::Kokkos::VectorVariableShapeCurl< is_test >::operator()(), Moose::Kokkos::VectorVariableValue::operator()(), Moose::Kokkos::VectorVariableGradient::operator()(), Moose::Kokkos::VectorVariableCurl::operator()(), Moose::Kokkos::VariableShapeGradient< is_test >::reference(), Moose::Kokkos::VectorVariableShapeGradient< is_test >::reference(), and Moose::Kokkos::AuxKernel::setElementSolution().
|
inlineinherited |
Get the contiguous element ID.
Definition at line 52 of file KokkosDatum.h.
Referenced by KokkosExtraIDIntegralVectorPostprocessor::execute(), Moose::Kokkos::LinearFVFluxKernel::hasBoundaryData(), and KokkosExtraIDIntegralVectorPostprocessor::reduce().
|
inline |
Get the extra element ID.
| index | The extra element ID index |
Definition at line 288 of file KokkosDatum.h.
Referenced by KokkosExtraElementIDAux::computeValue().
|
inlineinherited |
Get whether the current side has a neighbor.
Definition at line 149 of file KokkosDatum.h.
Referenced by Moose::Kokkos::LinearFVFluxKernel::hasFaceNeighbor().
|
inline |
Get whether the current datum is on a node.
Definition at line 324 of file KokkosDatum.h.
Referenced by extraElemID(), Moose::Kokkos::VariableValueTempl< is_ad >::get(), Moose::Kokkos::VariableGradientTempl< is_ad >::get(), isNodalDefined(), J(), JxW(), Moose::Kokkos::VectorVariableValue::operator()(), Moose::Kokkos::VectorVariableGradient::operator()(), Moose::Kokkos::VectorVariableCurl::operator()(), and q_point().
|
inline |
Get whether the a variable is defined on the current node.
| var | The variable |
Definition at line 486 of file KokkosDatum.h.
Referenced by KokkosNodalExtremeValue::reduce(), KokkosNodalMaxValueId::reduce(), and KokkosNodalSum::reduce().
|
inlineinherited |
Get whether the current datum is on a side.
Definition at line 85 of file KokkosDatum.h.
Referenced by normals(), and reinitTransform().
Get the inverse of Jacobian matrix | dxi/dx deta/dx dzeta/dx | | dxi/dy deta/dy dzeta/dy | | dxi/dz deta/dz dzeta/dz |.
| qp | The local quadrature point index |
Definition at line 495 of file KokkosDatum.h.
Referenced by Moose::Kokkos::VectorKernelGrad::computeJacobianInternal(), Moose::Kokkos::KernelGrad::computeJacobianInternal(), Moose::Kokkos::VectorKernelGrad::computeOffDiagJacobianInternal(), Moose::Kokkos::KernelGrad::computeOffDiagJacobianInternal(), Moose::Kokkos::VectorKernelGrad::computeResidualInternal(), Moose::Kokkos::KernelGrad::computeResidualInternal(), Moose::Kokkos::VariableGradientTempl< is_ad >::get(), Moose::Kokkos::VariableShapeGradient< is_test >::operator()(), Moose::Kokkos::VectorVariableShapeGradient< is_test >::operator()(), Moose::Kokkos::VectorVariableShapeCurl< is_test >::operator()(), Moose::Kokkos::VectorVariableGradient::operator()(), and Moose::Kokkos::VectorVariableCurl::operator()().
Get the transformed Jacobian weight.
| qp | The local quadrature point index |
Definition at line 506 of file KokkosDatum.h.
Referenced by Moose::Kokkos::AuxKernel::computeElementInternal(), KokkosVectorTimeDerivative::computeJacobianInternal(), KokkosTimeDerivative::computeJacobianInternal(), Moose::Kokkos::VectorIntegratedBCValue::computeJacobianInternal(), Moose::Kokkos::VectorKernelValue::computeJacobianInternal(), Moose::Kokkos::VectorKernelGrad::computeJacobianInternal(), Moose::Kokkos::VectorIntegratedBC::computeJacobianInternal(), Moose::Kokkos::KernelValue::computeJacobianInternal(), Moose::Kokkos::KernelGrad::computeJacobianInternal(), Moose::Kokkos::IntegratedBCValue::computeJacobianInternal(), Moose::Kokkos::VectorKernel::computeJacobianInternal(), Moose::Kokkos::Kernel::computeJacobianInternal(), Moose::Kokkos::IntegratedBC::computeJacobianInternal(), Moose::Kokkos::VectorIntegratedBCValue::computeOffDiagJacobianInternal(), Moose::Kokkos::VectorKernelValue::computeOffDiagJacobianInternal(), Moose::Kokkos::VectorKernelGrad::computeOffDiagJacobianInternal(), Moose::Kokkos::VectorIntegratedBC::computeOffDiagJacobianInternal(), Moose::Kokkos::KernelValue::computeOffDiagJacobianInternal(), Moose::Kokkos::IntegratedBCValue::computeOffDiagJacobianInternal(), Moose::Kokkos::KernelGrad::computeOffDiagJacobianInternal(), Moose::Kokkos::VectorKernel::computeOffDiagJacobianInternal(), Moose::Kokkos::IntegratedBC::computeOffDiagJacobianInternal(), Moose::Kokkos::Kernel::computeOffDiagJacobianInternal(), Moose::Kokkos::TimeKernel::computeResidualInternal(), Moose::Kokkos::ADKernel::computeResidualInternal(), Moose::Kokkos::ADIntegratedBC::computeResidualInternal(), Moose::Kokkos::VectorIntegratedBCValue::computeResidualInternal(), Moose::Kokkos::VectorKernelValue::computeResidualInternal(), Moose::Kokkos::VectorKernelGrad::computeResidualInternal(), Moose::Kokkos::VectorIntegratedBC::computeResidualInternal(), Moose::Kokkos::KernelValue::computeResidualInternal(), Moose::Kokkos::KernelGrad::computeResidualInternal(), Moose::Kokkos::IntegratedBCValue::computeResidualInternal(), Moose::Kokkos::VectorKernel::computeResidualInternal(), Moose::Kokkos::Kernel::computeResidualInternal(), Moose::Kokkos::IntegratedBC::computeResidualInternal(), KokkosElementVariableStatistics::computeValue(), KokkosExtraIDIntegralVectorPostprocessor::execute(), KokkosIntegralPostprocessor< Base >::reduce(), and KokkosExtraIDIntegralVectorPostprocessor::reduce().
|
inline |
Get the current local thread ID.
Definition at line 379 of file KokkosDatum.h.
Referenced by KokkosTimeDerivative::computeJacobianInternal(), KokkosVectorTimeDerivative::computeJacobianInternal(), Moose::Kokkos::ResidualObject::computeJacobianInternal(), Moose::Kokkos::ADKernel::computeResidualInternal(), Moose::Kokkos::ADIntegratedBC::computeResidualInternal(), Moose::Kokkos::ResidualObject::computeResidualInternal(), and set_local_parallel().
|
inlineinherited |
Get the Kokkos mesh.
Definition at line 40 of file KokkosDatum.h.
Referenced by Moose::Kokkos::MeshDatum::neighborInfo().
|
inline |
Get the number of local quadrature points.
Definition at line 303 of file KokkosDatum.h.
Referenced by Moose::Kokkos::AuxKernel::computeElementInternal(), KokkosVectorTimeDerivative::computeJacobianInternal(), KokkosTimeDerivative::computeJacobianInternal(), Moose::Kokkos::VectorIntegratedBCValue::computeJacobianInternal(), Moose::Kokkos::VectorKernelValue::computeJacobianInternal(), Moose::Kokkos::VectorKernelGrad::computeJacobianInternal(), Moose::Kokkos::VectorIntegratedBC::computeJacobianInternal(), Moose::Kokkos::KernelValue::computeJacobianInternal(), Moose::Kokkos::KernelGrad::computeJacobianInternal(), Moose::Kokkos::IntegratedBCValue::computeJacobianInternal(), Moose::Kokkos::VectorKernel::computeJacobianInternal(), Moose::Kokkos::Kernel::computeJacobianInternal(), Moose::Kokkos::IntegratedBC::computeJacobianInternal(), Moose::Kokkos::VectorIntegratedBCValue::computeOffDiagJacobianInternal(), Moose::Kokkos::VectorKernelValue::computeOffDiagJacobianInternal(), Moose::Kokkos::VectorKernelGrad::computeOffDiagJacobianInternal(), Moose::Kokkos::VectorIntegratedBC::computeOffDiagJacobianInternal(), Moose::Kokkos::KernelValue::computeOffDiagJacobianInternal(), Moose::Kokkos::IntegratedBCValue::computeOffDiagJacobianInternal(), Moose::Kokkos::KernelGrad::computeOffDiagJacobianInternal(), Moose::Kokkos::VectorKernel::computeOffDiagJacobianInternal(), Moose::Kokkos::Kernel::computeOffDiagJacobianInternal(), Moose::Kokkos::IntegratedBC::computeOffDiagJacobianInternal(), Moose::Kokkos::TimeKernel::computeResidualInternal(), Moose::Kokkos::ADKernel::computeResidualInternal(), Moose::Kokkos::ADIntegratedBC::computeResidualInternal(), Moose::Kokkos::VectorIntegratedBCValue::computeResidualInternal(), Moose::Kokkos::VectorKernelValue::computeResidualInternal(), Moose::Kokkos::VectorKernelGrad::computeResidualInternal(), Moose::Kokkos::VectorIntegratedBC::computeResidualInternal(), Moose::Kokkos::KernelValue::computeResidualInternal(), Moose::Kokkos::KernelGrad::computeResidualInternal(), Moose::Kokkos::IntegratedBCValue::computeResidualInternal(), Moose::Kokkos::VectorKernel::computeResidualInternal(), Moose::Kokkos::IntegratedBC::computeResidualInternal(), Moose::Kokkos::Kernel::computeResidualInternal(), KokkosElementVariableStatistics::computeValue(), KokkosExtraIDIntegralVectorPostprocessor::execute(), Moose::Kokkos::Material::operator()(), KokkosSideExtremeValue::reduce(), KokkosElementExtremeValue::reduce(), KokkosIntegralPostprocessor< Base >::reduce(), and KokkosExtraIDIntegralVectorPostprocessor::reduce().
|
inlineinherited |
Get the neighbor element information object.
ElementInfo whose data members represent invalid state (e.g. hold invalid_uint, invalid_id like values) Definition at line 67 of file KokkosDatum.h.
Referenced by Moose::Kokkos::MeshDatum::neighborInfo().
|
inlineinherited |
Get the contiguous neighbor element ID.
libMesh::DofObject::invalid_id Definition at line 73 of file KokkosDatum.h.
Referenced by Moose::Kokkos::LinearFVFluxKernel::operator()().
|
inlinestaticprotectedinherited |
Get the neighbor element information object for an element side.
| elem | The contiguous element ID |
| side | The side index |
| mesh | The Kokkos mesh |
ElementInfo (a default constructed ElementInfo's data members all represent invalid state) when elem is libMesh::DofObject::invalid_id, side is libMesh::invalid_uint, or the Kokkos mesh has no contiguous neighbor ID for the side. The latter includes exterior boundary sides with no libMesh neighbor and sides whose libMesh neighbor is libMesh::remote_elem. Off-process neighbors present as ghost elements have contiguous IDs and return their ElementInfo. Definition at line 155 of file KokkosDatum.h.
|
inlineinherited |
Get the contiguous neighbor subdomain ID.
Definition at line 97 of file KokkosDatum.h.
Referenced by Moose::Kokkos::LinearFVFluxKernel::hasFaceNeighbor().
|
inline |
Get the contiguous node ID.
Definition at line 297 of file KokkosDatum.h.
Referenced by KokkosCopyValueAux::computeNodeInternal(), KokkosBoundNodalKernel::computeQpJacobian(), KokkosBoundNodalKernel::computeQpOffDiagJacobian(), KokkosBoundNodalKernel::computeQpResidual(), Moose::Kokkos::VariableValueTempl< is_ad >::get(), Moose::Kokkos::VectorVariableValue::operator()(), KokkosNodalMaxValueId::reduce(), and Moose::Kokkos::AuxKernel::setNodeSolution().
Get the normal vector on surface.
| qp | The local quadrature point index |
Definition at line 528 of file KokkosDatum.h.
Referenced by KokkosDirectionalNeumannBC::precomputeQpResidual().
|
inline |
Get the number of local threads.
Definition at line 384 of file KokkosDatum.h.
Referenced by KokkosTimeDerivative::computeJacobianInternal(), KokkosVectorTimeDerivative::computeJacobianInternal(), Moose::Kokkos::ResidualObject::computeJacobianInternal(), Moose::Kokkos::ADKernel::computeResidualInternal(), Moose::Kokkos::ADIntegratedBC::computeResidualInternal(), Moose::Kokkos::ResidualObject::computeResidualInternal(), and set_local_parallel().
|
inline |
Get the index into the property data storage.
| constant_option | The property constant option |
| qp | The local quadrature point index |
Definition at line 473 of file KokkosDatum.h.
Get the physical quadrature point coordinate.
| qp | The local quadrature point index |
Definition at line 517 of file KokkosDatum.h.
Referenced by KokkosParsedMaterial::computeQpProperties(), KokkosFunctionAux::computeValue(), and KokkosParsedAux::computeValue().
|
inline |
Get the starting offset into the global quadrature point index.
Definition at line 309 of file KokkosDatum.h.
Referenced by Moose::Kokkos::VariableValueTempl< is_ad >::get(), Moose::Kokkos::VariableGradientTempl< is_ad >::get(), Moose::Kokkos::VectorVariableValue::operator()(), Moose::Kokkos::VectorVariableGradient::operator()(), and Moose::Kokkos::VectorVariableCurl::operator()().
Compute and cache the physical transformation data.
| qp | The local quadrature point index |
Definition at line 539 of file KokkosDatum.h.
Referenced by J(), JxW(), normals(), and q_point().
|
inline |
Set local parallelization option.
| local_thread_id | The current local thread ID |
| num_local_threads | The number of local threads |
Definition at line 369 of file KokkosDatum.h.
Referenced by Moose::Kokkos::ADKernel::operator()(), Moose::Kokkos::ADIntegratedBC::operator()(), Moose::Kokkos::VectorIntegratedBC::operator()(), Moose::Kokkos::VectorKernel::operator()(), Moose::Kokkos::Kernel::operator()(), and Moose::Kokkos::IntegratedBC::operator()().
|
inlineinherited |
Get the side index.
Definition at line 79 of file KokkosDatum.h.
Referenced by Moose::Kokkos::VariableValueTempl< is_ad >::get(), Moose::Kokkos::VariableGradientTempl< is_ad >::get(), Moose::Kokkos::LinearFVFluxKernel::hasBoundaryData(), Moose::Kokkos::MeshDatum::neighborInfo(), Moose::Kokkos::VariableShapeValue< is_test >::operator()(), Moose::Kokkos::VectorVariableShapeValue< is_test >::operator()(), Moose::Kokkos::VectorVariableShapeCurl< is_test >::operator()(), Moose::Kokkos::VectorVariableValue::operator()(), Moose::Kokkos::VectorVariableGradient::operator()(), Moose::Kokkos::VectorVariableCurl::operator()(), Moose::Kokkos::VariableShapeGradient< is_test >::reference(), and Moose::Kokkos::VectorVariableShapeGradient< is_test >::reference().
|
inlineinherited |
Get the contiguous subdomain ID.
Definition at line 91 of file KokkosDatum.h.
Referenced by KokkosExtraIDIntegralVectorPostprocessor::execute(), and KokkosExtraIDIntegralVectorPostprocessor::reduce().
Get the Kokkos system.
| sys | The system number |
Definition at line 281 of file KokkosDatum.h.
Referenced by Moose::Kokkos::VariableValueTempl< is_ad >::get(), Moose::Kokkos::VariableGradientTempl< is_ad >::get(), Moose::Kokkos::VectorVariableValue::operator()(), Moose::Kokkos::VectorVariableGradient::operator()(), and Moose::Kokkos::VectorVariableCurl::operator()().
|
protected |
Reference of the Kokkos assembly.
Definition at line 390 of file KokkosDatum.h.
Referenced by assembly(), J(), q_point(), and reinitTransform().
|
private |
Cached quadrature point index for checking whether the physical transformation data should be recomputed.
Definition at line 428 of file KokkosDatum.h.
Referenced by reinitTransform().
|
protectedinherited |
Current element information object.
Definition at line 125 of file KokkosDatum.h.
Referenced by Moose::Kokkos::MeshDatum::elem(), Moose::Kokkos::FVDatum::elementCentroid(), Moose::Kokkos::FVDatum::elementVolume(), Moose::Kokkos::MeshDatum::elemID(), extraElemID(), Moose::Kokkos::FVDatum::faceArea(), Moose::Kokkos::FVDatum::faceCentroid(), Moose::Kokkos::FVDatum::faceDCFMag(), Moose::Kokkos::FVDatum::faceDCNMag(), Moose::Kokkos::FVDatum::faceNormal(), reinitTransform(), and Moose::Kokkos::MeshDatum::subdomain().
|
protected |
Index for element-constant material properties.
Definition at line 415 of file KokkosDatum.h.
Referenced by propertyIdx().
|
private |
Cached physical transformation data.
Definition at line 433 of file KokkosDatum.h.
Referenced by J(), and reinitTransform().
|
private |
Definition at line 434 of file KokkosDatum.h.
Referenced by JxW(), and reinitTransform().
|
private |
Thread ID for local parallelization.
Definition at line 441 of file KokkosDatum.h.
Referenced by local_thread_id(), and set_local_parallel().
|
protectedinherited |
Reference to the Kokkos mesh.
Definition at line 120 of file KokkosDatum.h.
Referenced by Moose::Kokkos::FVDatum::elementCentroid(), Moose::Kokkos::FVDatum::elementVolume(), extraElemID(), Moose::Kokkos::FVDatum::faceArea(), Moose::Kokkos::FVDatum::faceCentroid(), Moose::Kokkos::FVDatum::faceDCFMag(), Moose::Kokkos::FVDatum::faceDCNMag(), Moose::Kokkos::FVDatum::faceNormal(), and Moose::Kokkos::MeshDatum::mesh().
|
protected |
Number of local quadrature points.
Definition at line 405 of file KokkosDatum.h.
Referenced by n_qps().
|
protectedinherited |
Current neighbor element information object.
Definition at line 135 of file KokkosDatum.h.
Referenced by Moose::Kokkos::MeshDatum::hasNeighbor(), Moose::Kokkos::MeshDatum::neighbor(), Moose::Kokkos::MeshDatum::neighborID(), and Moose::Kokkos::MeshDatum::neighborSubdomain().
|
protected |
Current contiguous node ID.
Definition at line 400 of file KokkosDatum.h.
Referenced by isNodal(), isNodalDefined(), node(), and q_point().
|
private |
Definition at line 436 of file KokkosDatum.h.
Referenced by normals(), and reinitTransform().
|
private |
Number of threads for local parallelization.
Definition at line 445 of file KokkosDatum.h.
Referenced by num_local_threads(), and set_local_parallel().
|
protected |
Starting offset into the global quadrature point index.
Definition at line 410 of file KokkosDatum.h.
Referenced by propertyIdx(), and qpOffset().
|
protectedinherited |
Current side index.
Definition at line 130 of file KokkosDatum.h.
Referenced by Moose::Kokkos::FVDatum::faceArea(), Moose::Kokkos::FVDatum::faceCentroid(), Moose::Kokkos::FVDatum::faceDCFMag(), Moose::Kokkos::FVDatum::faceDCNMag(), Moose::Kokkos::FVDatum::faceNormal(), Moose::Kokkos::MeshDatum::isSide(), reinitTransform(), and Moose::Kokkos::MeshDatum::side().
Reference of the Kokkos systems.
Definition at line 395 of file KokkosDatum.h.
Referenced by isNodalDefined(), and system().
|
private |
Definition at line 435 of file KokkosDatum.h.
Referenced by q_point(), and reinitTransform().
1.8.14