The Kokkos object that holds thread-private data in the parallel operations of Kokkos residual objects. More...
#include <KokkosDatum.h>
Public Member Functions | |
KOKKOS_FUNCTION | ResidualDatum (const ContiguousElementID elem, const unsigned int side, const Assembly &assembly, const Array< System > &systems, const Variable &ivar, const unsigned int jvar, const unsigned int comp=0) |
Constructor for element and side data. More... | |
KOKKOS_FUNCTION | ResidualDatum (const ContiguousNodeID node, const Assembly &assembly, const Array< System > &systems, const Variable &ivar, const unsigned int jvar, const unsigned int comp=0) |
Constructor for node data. More... | |
KOKKOS_FUNCTION unsigned int | n_dofs () const |
Get the number of local DOFs. More... | |
KOKKOS_FUNCTION unsigned int | n_idofs () const |
Get the number of local DOFs. More... | |
KOKKOS_FUNCTION unsigned int | n_jdofs () const |
Get the number of local DOFs for the coupled variable. More... | |
KOKKOS_FUNCTION unsigned int | var () const |
Get the variable number. More... | |
KOKKOS_FUNCTION unsigned int | ivar () const |
Get the variable number. More... | |
KOKKOS_FUNCTION unsigned int | jvar () const |
Get the coupled variable number. More... | |
KOKKOS_FUNCTION unsigned int | fe () const |
Get the variable FE type ID. More... | |
KOKKOS_FUNCTION unsigned int | ife () const |
Get the variable FE type ID. More... | |
KOKKOS_FUNCTION unsigned int | jfe () const |
Get the coupled variable FE type ID. More... | |
KOKKOS_FUNCTION const Assembly & | assembly () const |
Get the Kokkos assembly. More... | |
KOKKOS_FUNCTION const System & | system (unsigned int sys) const |
Get the Kokkos system. More... | |
KOKKOS_FUNCTION const ElementInfo & | elem () const |
Get the element information object. More... | |
KOKKOS_FUNCTION ContiguousSubdomainID | subdomain () const |
Get the contiguous subdomain ID. More... | |
KOKKOS_FUNCTION unsigned int | side () const |
Get the side index. 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 bool | hasNeighbor () const |
Get whether the current side has a neighbor. More... | |
KOKKOS_FUNCTION bool | isNodal () const |
Get whether the current datum is on a 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 void | reinit () |
Reset the reinit flag. More... | |
Protected Attributes | |
const TagID | _tag |
Solution tag ID. More... | |
const unsigned int | _ivar |
Variable numbers. More... | |
const unsigned int | _jvar |
const unsigned int | _ife |
FE type IDs of variables. More... | |
const unsigned int | _jfe |
const unsigned int | _n_idofs = 1 |
Number of local DOFs. More... | |
const unsigned int | _n_jdofs = 1 |
const Assembly & | _assembly |
Reference of the Kokkos assembly. More... | |
const Array< System > & | _systems |
Reference of the Kokkos systems. More... | |
const ElementInfo | _elem |
Current element information object. More... | |
const unsigned int | _side = libMesh::invalid_uint |
Current side index. More... | |
const ContiguousNodeID | _node = libMesh::DofObject::invalid_id |
Current contiguous node ID. More... | |
const ContiguousElementID | _neighbor = libMesh::DofObject::invalid_id |
Current contiguous element ID of neighbor. 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... | |
The Kokkos object that holds thread-private data in the parallel operations of Kokkos residual objects.
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 |
ivar | The Kokkos variable |
jvar | The coupled variable number |
comp | The variable component |
Definition at line 259 of file KokkosDatum.h.
|
inline |
Constructor for node data.
elem | The contiguous element ID of the current thread |
assembly | The Kokkos assembly |
systems | The Kokkos systems |
ivar | The Kokkos variable |
jvar | The coupled variable number |
comp | The variable component |
Definition at line 286 of file KokkosDatum.h.
|
inlineinherited |
Get the Kokkos assembly.
Definition at line 68 of file KokkosDatum.h.
Referenced by Moose::Kokkos::VariablePhiValue::operator()(), Moose::Kokkos::VariablePhiGradient::operator()(), Moose::Kokkos::VariableTestValue::operator()(), and Moose::Kokkos::VariableTestGradient::operator()().
|
inlineinherited |
Get the element information object.
Definition at line 80 of file KokkosDatum.h.
Referenced by KokkosTimeDerivative::computeJacobianInternal(), Moose::Kokkos::ResidualObject::computeJacobianInternal(), Moose::Kokkos::ResidualObject::computeResidualInternal(), Moose::Kokkos::VariablePhiValue::operator()(), Moose::Kokkos::VariablePhiGradient::operator()(), Moose::Kokkos::VariableTestValue::operator()(), Moose::Kokkos::VariableTestGradient::operator()(), Moose::Kokkos::VariableValue::operator()(), and Moose::Kokkos::VariableGradient::operator()().
|
inline |
Get the variable FE type ID.
Definition at line 335 of file KokkosDatum.h.
|
inlineinherited |
Get whether the current side has a neighbor.
Definition at line 110 of file KokkosDatum.h.
|
inline |
Get the variable FE type ID.
Definition at line 340 of file KokkosDatum.h.
Referenced by Moose::Kokkos::VariableTestValue::operator()(), and Moose::Kokkos::VariableTestGradient::operator()().
|
inlineinherited |
Get whether the current datum is on a node.
Definition at line 115 of file KokkosDatum.h.
Referenced by Moose::Kokkos::Datum::J(), Moose::Kokkos::Datum::JxW(), Moose::Kokkos::VariableValue::operator()(), and Moose::Kokkos::Datum::q_point().
|
inline |
Get the variable number.
Definition at line 325 of file KokkosDatum.h.
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 125 of file KokkosDatum.h.
Referenced by Moose::Kokkos::VariablePhiGradient::operator()(), Moose::Kokkos::VariableTestGradient::operator()(), and Moose::Kokkos::VariableGradient::operator()().
|
inline |
Get the coupled variable FE type ID.
Definition at line 345 of file KokkosDatum.h.
Referenced by Moose::Kokkos::VariablePhiValue::operator()(), and Moose::Kokkos::VariablePhiGradient::operator()().
|
inline |
Get the coupled variable number.
Definition at line 330 of file KokkosDatum.h.
Referenced by KokkosTimeDerivative::computeJacobianInternal(), Moose::Kokkos::ResidualObject::computeJacobianInternal(), Moose::Kokkos::IntegratedBC::computeOffDiagJacobianInternal(), and Moose::Kokkos::Kernel::computeOffDiagJacobianInternal().
Get the transformed Jacobian weight.
qp | The local quadrature point index |
Definition at line 139 of file KokkosDatum.h.
Referenced by KokkosTimeDerivative::computeJacobianInternal(), Moose::Kokkos::KernelValue::computeJacobianInternal(), Moose::Kokkos::KernelGrad::computeJacobianInternal(), Moose::Kokkos::IntegratedBC::computeJacobianInternal(), Moose::Kokkos::Kernel::computeJacobianInternal(), Moose::Kokkos::IntegratedBC::computeOffDiagJacobianInternal(), Moose::Kokkos::Kernel::computeOffDiagJacobianInternal(), Moose::Kokkos::TimeKernel::computeResidualInternal(), Moose::Kokkos::KernelValue::computeResidualInternal(), Moose::Kokkos::KernelGrad::computeResidualInternal(), Moose::Kokkos::IntegratedBC::computeResidualInternal(), and Moose::Kokkos::Kernel::computeResidualInternal().
|
inline |
Get the number of local DOFs.
Definition at line 305 of file KokkosDatum.h.
Referenced by Moose::Kokkos::ResidualObject::computeResidualInternal().
|
inline |
Get the number of local DOFs.
Definition at line 310 of file KokkosDatum.h.
Referenced by KokkosTimeDerivative::computeJacobianInternal(), and Moose::Kokkos::ResidualObject::computeJacobianInternal().
|
inline |
Get the number of local DOFs for the coupled variable.
Definition at line 315 of file KokkosDatum.h.
Referenced by KokkosTimeDerivative::computeJacobianInternal(), Moose::Kokkos::KernelValue::computeJacobianInternal(), Moose::Kokkos::KernelGrad::computeJacobianInternal(), Moose::Kokkos::IntegratedBC::computeJacobianInternal(), Moose::Kokkos::Kernel::computeJacobianInternal(), Moose::Kokkos::ResidualObject::computeJacobianInternal(), Moose::Kokkos::IntegratedBC::computeOffDiagJacobianInternal(), and Moose::Kokkos::Kernel::computeOffDiagJacobianInternal().
|
inlineinherited |
Get the number of local quadrature points.
Definition at line 100 of file KokkosDatum.h.
Referenced by KokkosTimeDerivative::computeJacobianInternal(), Moose::Kokkos::KernelValue::computeJacobianInternal(), Moose::Kokkos::KernelGrad::computeJacobianInternal(), Moose::Kokkos::IntegratedBC::computeJacobianInternal(), Moose::Kokkos::Kernel::computeJacobianInternal(), Moose::Kokkos::IntegratedBC::computeOffDiagJacobianInternal(), Moose::Kokkos::Kernel::computeOffDiagJacobianInternal(), Moose::Kokkos::TimeKernel::computeResidualInternal(), Moose::Kokkos::KernelValue::computeResidualInternal(), Moose::Kokkos::KernelGrad::computeResidualInternal(), Moose::Kokkos::IntegratedBC::computeResidualInternal(), Moose::Kokkos::Kernel::computeResidualInternal(), and Moose::Kokkos::Material::operator()().
|
inlineinherited |
Get the contiguous node ID.
Definition at line 95 of file KokkosDatum.h.
Referenced by KokkosBoundNodalKernel< KokkosUpperBoundNodalKernel >::computeQpJacobian(), KokkosBoundNodalKernel< KokkosUpperBoundNodalKernel >::computeQpOffDiagJacobian(), KokkosBoundNodalKernel< KokkosUpperBoundNodalKernel >::computeQpResidual(), and Moose::Kokkos::VariableValue::operator()().
Get the physical quadrature point coordinate.
qp | The local quadrature point index |
Definition at line 153 of file KokkosDatum.h.
|
inlineinherited |
Get the starting offset into the global quadrature point index.
Definition at line 105 of file KokkosDatum.h.
Referenced by Moose::Kokkos::VariableValue::operator()(), and Moose::Kokkos::VariableGradient::operator()().
|
inlineinherited |
Reset the reinit flag.
Definition at line 166 of file KokkosDatum.h.
Referenced by KokkosTimeDerivative::computeJacobianInternal(), Moose::Kokkos::KernelValue::computeJacobianInternal(), Moose::Kokkos::KernelGrad::computeJacobianInternal(), Moose::Kokkos::IntegratedBC::computeJacobianInternal(), Moose::Kokkos::Kernel::computeJacobianInternal(), Moose::Kokkos::IntegratedBC::computeOffDiagJacobianInternal(), Moose::Kokkos::Kernel::computeOffDiagJacobianInternal(), Moose::Kokkos::TimeKernel::computeResidualInternal(), Moose::Kokkos::KernelValue::computeResidualInternal(), Moose::Kokkos::KernelGrad::computeResidualInternal(), Moose::Kokkos::IntegratedBC::computeResidualInternal(), Moose::Kokkos::Kernel::computeResidualInternal(), and Moose::Kokkos::Material::operator()().
|
inlineinherited |
Get the side index.
Definition at line 90 of file KokkosDatum.h.
Referenced by Moose::Kokkos::VariablePhiValue::operator()(), Moose::Kokkos::VariablePhiGradient::operator()(), Moose::Kokkos::VariableTestValue::operator()(), Moose::Kokkos::VariableTestGradient::operator()(), Moose::Kokkos::VariableValue::operator()(), and Moose::Kokkos::VariableGradient::operator()().
|
inlineinherited |
Get the contiguous subdomain ID.
Definition at line 85 of file KokkosDatum.h.
|
inlineinherited |
Get the Kokkos system.
sys | The system number |
Definition at line 74 of file KokkosDatum.h.
Referenced by Moose::Kokkos::VariableValue::operator()(), and Moose::Kokkos::VariableGradient::operator()().
|
inline |
Get the variable number.
Definition at line 320 of file KokkosDatum.h.
|
protectedinherited |
Reference of the Kokkos assembly.
Definition at line 172 of file KokkosDatum.h.
Referenced by Moose::Kokkos::Datum::assembly(), Moose::Kokkos::Datum::J(), Moose::Kokkos::Datum::q_point(), and Moose::Kokkos::Datum::reinitTransform().
|
protectedinherited |
Current element information object.
Definition at line 180 of file KokkosDatum.h.
Referenced by Moose::Kokkos::Datum::elem(), Moose::Kokkos::Datum::reinitTransform(), and Moose::Kokkos::Datum::subdomain().
|
protected |
FE type IDs of variables.
Definition at line 359 of file KokkosDatum.h.
|
protected |
|
protected |
Definition at line 359 of file KokkosDatum.h.
Referenced by jfe().
|
protected |
Definition at line 355 of file KokkosDatum.h.
Referenced by jvar().
|
protected |
Number of local DOFs.
Definition at line 363 of file KokkosDatum.h.
|
protected |
Definition at line 363 of file KokkosDatum.h.
Referenced by n_jdofs().
|
protectedinherited |
Number of local quadrature points.
Definition at line 196 of file KokkosDatum.h.
Referenced by Moose::Kokkos::Datum::n_qps().
|
protectedinherited |
Current contiguous element ID of neighbor.
Definition at line 192 of file KokkosDatum.h.
Referenced by Moose::Kokkos::Datum::hasNeighbor().
|
protectedinherited |
Current contiguous node ID.
Definition at line 188 of file KokkosDatum.h.
Referenced by Moose::Kokkos::Datum::isNodal(), Moose::Kokkos::Datum::node(), and Moose::Kokkos::Datum::q_point().
|
protectedinherited |
Starting offset into the global quadrature point index.
Definition at line 200 of file KokkosDatum.h.
Referenced by Moose::Kokkos::Datum::qpOffset().
|
protectedinherited |
Current side index.
Definition at line 184 of file KokkosDatum.h.
Referenced by Moose::Kokkos::Datum::reinitTransform(), and Moose::Kokkos::Datum::side().
Reference of the Kokkos systems.
Definition at line 176 of file KokkosDatum.h.
Referenced by Moose::Kokkos::Datum::system().
|
protected |
Solution tag ID.
Definition at line 351 of file KokkosDatum.h.